interface ExecutionApprovalConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ARCRegionSwitch.Mixins.CfnPlanPropsMixin.ExecutionApprovalConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsarcregionswitch/mixins#CfnPlanPropsMixin_ExecutionApprovalConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.arcregionswitch.mixins.CfnPlanPropsMixin.ExecutionApprovalConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_arcregionswitch.mixins.CfnPlanPropsMixin.ExecutionApprovalConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_arcregionswitch » mixins » 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 { mixins as arcregionswitch_mixins } from '@aws-cdk/mixins-preview/aws-arcregionswitch';
const executionApprovalConfigurationProperty: arcregionswitch_mixins.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