interface ScalableTargetAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ApplicationAutoScaling.ScalableTargetAttributes |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapplicationautoscaling#ScalableTargetAttributes |
Java | software.amazon.awscdk.services.applicationautoscaling.ScalableTargetAttributes |
Python | aws_cdk.aws_applicationautoscaling.ScalableTargetAttributes |
TypeScript (source) | aws-cdk-lib » aws_applicationautoscaling » ScalableTargetAttributes |
Attributes for importing a scalable target.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_applicationautoscaling as appscaling } from 'aws-cdk-lib';
const scalableTargetAttributes: appscaling.ScalableTargetAttributes = {
scalableDimension: 'scalableDimension',
scalableTargetId: 'scalableTargetId',
serviceNamespace: 'serviceNamespace',
};
Properties
| Name | Type | Description |
|---|---|---|
| scalable | string | The scalable dimension that's associated with the scalable target. |
| scalable | string | The scalable target ID. |
| service | string | The namespace of the AWS service that provides the resource. |
scalableDimension
Type:
string
The scalable dimension that's associated with the scalable target.
scalableTargetId
Type:
string
The scalable target ID.
serviceNamespace
Type:
string
The namespace of the AWS service that provides the resource.

.NET
Go
Java
Python
TypeScript (