interface CrossAccountRoleConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ResilienceHubV2.CfnService.CrossAccountRoleConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresiliencehubv2#CfnService_CrossAccountRoleConfigurationProperty |
Java | software.amazon.awscdk.services.resiliencehubv2.CfnService.CrossAccountRoleConfigurationProperty |
Python | aws_cdk.aws_resiliencehubv2.CfnService.CrossAccountRoleConfigurationProperty |
TypeScript | aws-cdk-lib » aws_resiliencehubv2 » CfnService » CrossAccountRoleConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_resiliencehubv2 as resiliencehubv2 } from 'aws-cdk-lib';
const crossAccountRoleConfigurationProperty: resiliencehubv2.CfnService.CrossAccountRoleConfigurationProperty = {
crossAccountRoleArn: 'crossAccountRoleArn',
// the properties below are optional
externalId: 'externalId',
};
Properties
| Name | Type | Description |
|---|---|---|
| cross | string | ARN of the cross-account IAM role. |
| external | string | External ID for cross-account access. |
crossAccountRoleArn
Type:
string
ARN of the cross-account IAM role.
externalId?
Type:
string
(optional)
External ID for cross-account access.

.NET
Go
Java
Python
TypeScript