Interface CfnDBInstance.IDBInstanceRoleProperty
Information about an AWS Identity and Access Management (IAM) role that is associated with a DB instance.
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDBInstanceRoleProperty
Syntax (vb)
Public Interface IDBInstanceRoleProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;
var dBInstanceRoleProperty = new DBInstanceRoleProperty {
FeatureName = "featureName",
RoleArn = "roleArn"
};
Synopsis
Properties
FeatureName | The name of the feature associated with the AWS Identity and Access Management (IAM) role. |
RoleArn | The Amazon Resource Name (ARN) of the IAM role that is associated with the DB instance. |
Properties
FeatureName
The name of the feature associated with the AWS Identity and Access Management (IAM) role.
string FeatureName { get; }
Property Value
System.String
Remarks
IAM roles that are associated with a DB instance grant permission for the DB instance to access other AWS services on your behalf. For the list of supported feature names, see the SupportedFeatureNames
description in DBEngineVersion in the Amazon RDS API Reference .
RoleArn
The Amazon Resource Name (ARN) of the IAM role that is associated with the DB instance.
string RoleArn { get; }
Property Value
System.String