Show / Hide Table of Contents

Class ServiceRoleDetail

Service Role details object.

Inheritance
object
ServiceRoleDetail
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 ServiceRoleDetail

Properties

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(StringEnumConverter))]
public ServiceRoleDetail.ServiceTypeEnum? ServiceType { get; set; }
Property Value
Type Description
ServiceRoleDetail.ServiceTypeEnum?

Type of service.

Remarks

Required

In this article
Back to top