interface ScalableTargetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ApplicationAutoScaling.ScalableTargetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapplicationautoscaling#ScalableTargetReference |
Java | software.amazon.awscdk.interfaces.applicationautoscaling.ScalableTargetReference |
Python | aws_cdk.interfaces.aws_applicationautoscaling.ScalableTargetReference |
TypeScript | aws-cdk-lib » interfaces » aws_applicationautoscaling » ScalableTargetReference |
A reference to a ScalableTarget resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_applicationautoscaling as interfaces_applicationautoscaling } from 'aws-cdk-lib/interfaces';
const scalableTargetReference: interfaces_applicationautoscaling.ScalableTargetReference = {
resourceId: 'resourceId',
scalableDimension: 'scalableDimension',
serviceNamespace: 'serviceNamespace',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The ResourceId of the ScalableTarget resource. |
| scalable | string | The ScalableDimension of the ScalableTarget resource. |
| service | string | The ServiceNamespace of the ScalableTarget resource. |
resourceId
Type:
string
The ResourceId of the ScalableTarget resource.
scalableDimension
Type:
string
The ScalableDimension of the ScalableTarget resource.
serviceNamespace
Type:
string
The ServiceNamespace of the ScalableTarget resource.

.NET
Go
Java
Python
TypeScript