interface RegionSwitchPlanConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ARCRegionSwitch.CfnPlanPropsMixin.RegionSwitchPlanConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsarcregionswitch#CfnPlanPropsMixin_RegionSwitchPlanConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.arcregionswitch.CfnPlanPropsMixin.RegionSwitchPlanConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_arcregionswitch.CfnPlanPropsMixin.RegionSwitchPlanConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_arcregionswitch » 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 { aws_arcregionswitch as arcregionswitch } from '@aws-cdk/cfn-property-mixins';
const regionSwitchPlanConfigurationProperty: arcregionswitch.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