interface ExecutionApprovalConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ARCRegionSwitch.CfnPlanPropsMixin.ExecutionApprovalConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsarcregionswitch#CfnPlanPropsMixin_ExecutionApprovalConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.arcregionswitch.CfnPlanPropsMixin.ExecutionApprovalConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_arcregionswitch.CfnPlanPropsMixin.ExecutionApprovalConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_arcregionswitch » CfnPlanPropsMixin » ExecutionApprovalConfigurationProperty |
Configuration for approval steps in a Region switch plan execution.
Approval steps require manual intervention before the execution can proceed.
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 executionApprovalConfigurationProperty: arcregionswitch.CfnPlanPropsMixin.ExecutionApprovalConfigurationProperty = {
approvalRole: 'approvalRole',
timeoutMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| approval | string | The IAM approval role for the configuration. |
| timeout | number | The timeout value specified for the configuration. |
approvalRole?
Type:
string
(optional)
The IAM approval role for the configuration.
timeoutMinutes?
Type:
number
(optional, default: 60)
The timeout value specified for the configuration.

.NET
Go
Java
Python
TypeScript