Show / Hide Table of Contents

Class ServiceRoleDetails

Service Role details object.

Inheritance
object
ServiceRoleDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DbmulticloudService.Models
Assembly: OCI.DotNetSDK.Dbmulticloud.dll
Syntax
public class ServiceRoleDetails

Properties

AssumeRoleStatus

Declaration
[JsonProperty(PropertyName = "assumeRoleStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ServiceRoleDetails.AssumeRoleStatusEnum? AssumeRoleStatus { get; set; }
Property Value
Type Description
ServiceRoleDetails.AssumeRoleStatusEnum?

Assume role status.

AwsNodes

Declaration
[JsonProperty(PropertyName = "awsNodes")]
public List<AwsNodes> AwsNodes { get; set; }
Property Value
Type Description
List<AwsNodes>

List of all VMs where AWS Identity Connector is configured for Oracle DB Cloud VM Cluster.

RoleArn

Declaration
[Required(ErrorMessage = "RoleArn is required.")]
[JsonProperty(PropertyName = "roleArn")]
public string RoleArn { get; set; }
Property Value
Type Description
string

Amazon resource name AWSof the IAM role.

Remarks

Required

ServicePrivateEndpoint

Declaration
[Required(ErrorMessage = "ServicePrivateEndpoint is required.")]
[JsonProperty(PropertyName = "servicePrivateEndpoint")]
public string ServicePrivateEndpoint { get; set; }
Property Value
Type Description
string

Private endpoint of the AWS service.

Remarks

Required

ServiceType

Declaration
[Required(ErrorMessage = "ServiceType is required.")]
[JsonProperty(PropertyName = "serviceType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ServiceRoleDetails.ServiceTypeEnum? ServiceType { get; set; }
Property Value
Type Description
ServiceRoleDetails.ServiceTypeEnum?

Type of service.

Remarks

Required

In this article
Back to top