Class AutoScalingGroupReference
A reference to a AutoScalingGroup resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.AutoScaling
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AutoScalingGroupReference : IAutoScalingGroupReference
Syntax (vb)
Public Class AutoScalingGroupReference Implements IAutoScalingGroupReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.AutoScaling;
var autoScalingGroupReference = new AutoScalingGroupReference {
AutoScalingGroupArn = "autoScalingGroupArn",
AutoScalingGroupName = "autoScalingGroupName"
};
Synopsis
Constructors
| AutoScalingGroupReference() | A reference to a AutoScalingGroup resource. |
Properties
| AutoScalingGroupArn | The ARN of the AutoScalingGroup resource. |
| AutoScalingGroupName | The AutoScalingGroupName of the AutoScalingGroup resource. |
Constructors
AutoScalingGroupReference()
A reference to a AutoScalingGroup resource.
public AutoScalingGroupReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.AutoScaling;
var autoScalingGroupReference = new AutoScalingGroupReference {
AutoScalingGroupArn = "autoScalingGroupArn",
AutoScalingGroupName = "autoScalingGroupName"
};
Properties
AutoScalingGroupArn
The ARN of the AutoScalingGroup resource.
public string AutoScalingGroupArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
AutoScalingGroupName
The AutoScalingGroupName of the AutoScalingGroup resource.
public string AutoScalingGroupName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated