interface AsgProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ARCRegionSwitch.CfnPlan.AsgProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsarcregionswitch#CfnPlan_AsgProperty |
Java | software.amazon.awscdk.services.arcregionswitch.CfnPlan.AsgProperty |
Python | aws_cdk.aws_arcregionswitch.CfnPlan.AsgProperty |
TypeScript | aws-cdk-lib » aws_arcregionswitch » CfnPlan » AsgProperty |
Configuration for an Amazon EC2 Auto Scaling group used in a Region switch plan.
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-lib';
const asgProperty: arcregionswitch.CfnPlan.AsgProperty = {
arn: 'arn',
crossAccountRole: 'crossAccountRole',
externalId: 'externalId',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The Amazon Resource Name (ARN) of the EC2 Auto Scaling group. |
| 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 EC2 Auto Scaling group.
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