interface AutoScalingArnsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnExpressGatewayService.AutoScalingArnsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnExpressGatewayService_AutoScalingArnsProperty |
Java | software.amazon.awscdk.services.ecs.CfnExpressGatewayService.AutoScalingArnsProperty |
Python | aws_cdk.aws_ecs.CfnExpressGatewayService.AutoScalingArnsProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnExpressGatewayService » AutoScalingArnsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const autoScalingArnsProperty: ecs.CfnExpressGatewayService.AutoScalingArnsProperty = {
applicationAutoScalingPolicies: ['applicationAutoScalingPolicies'],
scalableTarget: 'scalableTarget',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string[] | The list of Auto Scaling policy ARNs associated with the express service. |
| scalable | string | The Auto Scaling Scalable Target ARN associated with the express service. |
applicationAutoScalingPolicies?
Type:
string[]
(optional)
The list of Auto Scaling policy ARNs associated with the express service.
scalableTarget?
Type:
string
(optional)
The Auto Scaling Scalable Target ARN associated with the express service.

.NET
Go
Java
Python
TypeScript