interface RegionSwitchPlanConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ARCRegionSwitch.Mixins.CfnPlanPropsMixin.RegionSwitchPlanConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsarcregionswitch/mixins#CfnPlanPropsMixin_RegionSwitchPlanConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.arcregionswitch.mixins.CfnPlanPropsMixin.RegionSwitchPlanConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_arcregionswitch.mixins.CfnPlanPropsMixin.RegionSwitchPlanConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_arcregionswitch » mixins » CfnPlanPropsMixin » RegionSwitchPlanConfigurationProperty |
Configuration for nested Region switch plans.
This allows one Region switch plan to trigger another plan as part of its execution.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as arcregionswitch_mixins } from '@aws-cdk/mixins-preview/aws-arcregionswitch';
const regionSwitchPlanConfigurationProperty: arcregionswitch_mixins.CfnPlanPropsMixin.RegionSwitchPlanConfigurationProperty = {
arn: 'arn',
crossAccountRole: 'crossAccountRole',
externalId: 'externalId',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The Amazon Resource Name (ARN) of the plan configuration. |
| cross | string | The cross account role for the configuration. |
| external | string | The external ID (secret key) for the configuration. |
arn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the plan configuration.
crossAccountRole?
Type:
string
(optional)
The cross account role for the configuration.
externalId?
Type:
string
(optional)
The external ID (secret key) for the configuration.

.NET
Go
Java
Python
TypeScript