interface IamRoleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ODB.CfnCloudVmClusterPropsMixin.IamRoleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsodb#CfnCloudVmClusterPropsMixin_IamRoleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.odb.CfnCloudVmClusterPropsMixin.IamRoleProperty |
Python | aws_cdk.cfn_property_mixins.aws_odb.CfnCloudVmClusterPropsMixin.IamRoleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_odb » CfnCloudVmClusterPropsMixin » IamRoleProperty |
An AWS Identity and Access Management (IAM) service role associated with the 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/cfn-property-mixins';
const iamRoleProperty: odb.CfnCloudVmClusterPropsMixin.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