interface IamRoleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ODB.CfnCloudAutonomousVmCluster.IamRoleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsodb#CfnCloudAutonomousVmCluster_IamRoleProperty |
Java | software.amazon.awscdk.services.odb.CfnCloudAutonomousVmCluster.IamRoleProperty |
Python | aws_cdk.aws_odb.CfnCloudAutonomousVmCluster.IamRoleProperty |
TypeScript | aws-cdk-lib » aws_odb » CfnCloudAutonomousVmCluster » IamRoleProperty |
An AWS Identity and Access Management (IAM) service role associated with the Autonomous VM cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_odb as odb } from 'aws-cdk-lib';
const iamRoleProperty: odb.CfnCloudAutonomousVmCluster.IamRoleProperty = {
awsIntegration: 'awsIntegration',
iamRoleArn: 'iamRoleArn',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AWS integration configuration settings for the AWS Identity and Access Management (IAM) service role. |
| iam | string | The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) service role. |
| status? | string | The current status of the AWS Identity and Access Management (IAM) service role. |
awsIntegration?
Type:
string
(optional)
The AWS integration configuration settings for the AWS Identity and Access Management (IAM) service role.
iamRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) service role.
status?
Type:
string
(optional)
The current status of the AWS Identity and Access Management (IAM) service role.

.NET
Go
Java
Python
TypeScript