Skip to content

RosScalingGroup

This class is a base encapsulation around the ROS resource type ALIYUN::ESS::ScalingGroup, which is used to create a scaling group.

A scaling group can be a group of Elastic Compute Service (ECS) instances that are dynamically scaled based on the configured scenario. A scaling group does not immediately take effect after it is created. You must use ALIYUN::ESS::ScalingGroupEnable to enable the scaling group to trigger scaling activities based on scaling rules.

Initializers

using AlibabaCloud.SDK.ROS.CDK.Ess;
new RosScalingGroup(Construct Scope, string Id, RosScalingGroupProps Props, bool EnableResourcePropertyConstraint);
Name Type Description
Scope AlibabaCloud.SDK.ROS.CDK.Core.Construct - scope in which this resource is defined.
Id string - scoped id of the resource.
Props RosScalingGroupProps - resource properties.
EnableResourcePropertyConstraint bool No description.

ScopeRequired

  • Type: AlibabaCloud.SDK.ROS.CDK.Core.Construct

scope in which this resource is defined.


IdRequired

  • Type: string

scoped id of the resource.


PropsRequired

resource properties.


EnableResourcePropertyConstraintRequired

  • Type: bool

Methods

Name Description
ToString Returns a string representation of this construct.
Synthesize Allows this construct to emit artifacts into the cloud assembly during synthesis.
OverrideLogicalId Overrides the auto-generated logical ID with a specific ID.
AddCondition No description.
AddCount No description.
AddDeletionOverride Syntactic sugar for addOverride(path, undefined).
AddDependsOn Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned.
AddDesc No description.
AddMetaData No description.
AddOverride Adds an override to the synthesized ROS resource.
AddPropertyDeletionOverride Adds an override that deletes the value of a property from the resource definition.
AddPropertyOverride Adds an override to a resource property.
AddRosDependency No description.
ApplyRemovalPolicy Sets the deletion policy of the resource based on the removal policy specified.
GetAtt Returns a token for an runtime attribute of this resource.

ToString

private string ToString()

Returns a string representation of this construct.

Synthesize

private void Synthesize(ISynthesisSession Session)

Allows this construct to emit artifacts into the cloud assembly during synthesis.

This method is usually implemented by framework-level constructs such as Stack and Asset as they participate in synthesizing the cloud assembly.

SessionRequired

  • Type: AlibabaCloud.SDK.ROS.CDK.Core.ISynthesisSession

The synthesis session.


OverrideLogicalId

private void OverrideLogicalId(string NewLogicalId)

Overrides the auto-generated logical ID with a specific ID.

NewLogicalIdRequired

  • Type: string

The new logical ID to use for this stack element.


AddCondition

private void AddCondition(RosCondition Con)

ConRequired

  • Type: AlibabaCloud.SDK.ROS.CDK.Core.RosCondition

AddCount

private void AddCount(object Count)

CountRequired

  • Type: object

AddDeletionOverride

private void AddDeletionOverride(string Path)

Syntactic sugar for addOverride(path, undefined).

PathRequired

  • Type: string

The path of the value to delete.


AddDependsOn

private void AddDependsOn(RosResource Target)

Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned.

This can be used for resources across stacks (or nested stack) boundaries and the dependency will automatically be transferred to the relevant scope.

TargetRequired

  • Type: AlibabaCloud.SDK.ROS.CDK.Core.RosResource

AddDesc

private void AddDesc(string Desc)

DescRequired

  • Type: string

AddMetaData

private void AddMetaData(string Key, object Value)

KeyRequired

  • Type: string

ValueRequired

  • Type: object

AddOverride

private void AddOverride(string Path, object Value)

Adds an override to the synthesized ROS resource.

To add a property override, either use addPropertyOverride or prefix path with "Properties." (i.e. Properties.TopicName).

If the override is nested, separate each nested level using a dot (.) in the path parameter. If there is an array as part of the nesting, specify the index in the path.

For example,

addOverride('Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes', ['myattribute'])
addOverride('Properties.GlobalSecondaryIndexes.1.ProjectionType', 'INCLUDE')

would add the overrides

"Properties": {
   "GlobalSecondaryIndexes": [
     {
       "Projection": {
         "NonKeyAttributes": [ "myattribute" ]
         ...
       }
       ...
     },
     {
       "ProjectionType": "INCLUDE"
       ...
     },
   ]
   ...
}

PathRequired

  • Type: string

The path of the property, you can use dot notation to override values in complex types.

Any intermdediate keys will be created as needed.


ValueRequired

  • Type: object

The value.

Could be primitive or complex.


AddPropertyDeletionOverride

private void AddPropertyDeletionOverride(string PropertyPath)

Adds an override that deletes the value of a property from the resource definition.

PropertyPathRequired

  • Type: string

The path to the property.


AddPropertyOverride

private void AddPropertyOverride(string PropertyPath, object Value)

Adds an override to a resource property.

Syntactic sugar for addOverride("Properties.<...>", value).

PropertyPathRequired

  • Type: string

The path of the property.


ValueRequired

  • Type: object

The value.


AddRosDependency

private void AddRosDependency(string Target)

TargetRequired

  • Type: string

ApplyRemovalPolicy

private void ApplyRemovalPolicy(RemovalPolicy Policy = null, RemovalPolicyOptions Options = null)

Sets the deletion policy of the resource based on the removal policy specified.

PolicyOptional

  • Type: AlibabaCloud.SDK.ROS.CDK.Core.RemovalPolicy

OptionsOptional

  • Type: AlibabaCloud.SDK.ROS.CDK.Core.RemovalPolicyOptions

GetAtt

private Reference GetAtt(string AttributeName)

Returns a token for an runtime attribute of this resource.

Ideally, use generated attribute accessors (e.g. resource.arn), but this can be used for future compatibility in case there is no generated attribute.

AttributeNameRequired

  • Type: string

The name of the attribute.


Static Functions

Name Description
IsConstruct Return whether the given object is a Construct.
IsRosElement Returns true if a construct is a stack element (i.e. part of the synthesized template).
IsRosResource Check whether the given construct is a RosResource.

IsConstruct

using AlibabaCloud.SDK.ROS.CDK.Ess;
RosScalingGroup.IsConstruct(object X);

Return whether the given object is a Construct.

XRequired

  • Type: object

IsRosElement

using AlibabaCloud.SDK.ROS.CDK.Ess;
RosScalingGroup.IsRosElement(object X);

Returns true if a construct is a stack element (i.e. part of the synthesized template).

Uses duck-typing instead of instanceof to allow stack elements from different versions of this library to be included in the same stack.

XRequired

  • Type: object

IsRosResource

using AlibabaCloud.SDK.ROS.CDK.Ess;
RosScalingGroup.IsRosResource(IConstruct Construct);

Check whether the given construct is a RosResource.

ConstructRequired

  • Type: AlibabaCloud.SDK.ROS.CDK.Core.IConstruct

Properties

Name Type Description
Node AlibabaCloud.SDK.ROS.CDK.Core.ConstructNode The construct tree node associated with this construct.
CreationStack string[] No description.
LogicalId string The logical ID for this stack element.
Stack AlibabaCloud.SDK.ROS.CDK.Core.Stack The stack in which this element is defined.
Ref string Return a string that will be resolved to a RosTemplate { Ref } for this element.
RosOptions AlibabaCloud.SDK.ROS.CDK.Core.IRosResourceOptions Options for this resource, such as condition, update policy etc.
RosResourceType string ROS resource type.
AttrScalingGroupId AlibabaCloud.SDK.ROS.CDK.Core.IResolvable No description.
AttrScalingGroupName AlibabaCloud.SDK.ROS.CDK.Core.IResolvable No description.
EnableResourcePropertyConstraint bool No description.
MaxSize object No description.
MinSize object No description.
AllocationStrategy object No description.
AzBalance object No description.
CompensateWithOnDemand object No description.
ContainerGroupId object No description.
CustomPolicyArn object No description.
DbInstanceIds object No description.
DefaultCooldown object No description.
DesiredCapacity object No description.
GroupDeletionProtection object No description.
GroupType object No description.
HealthCheckType object No description.
InstanceId object No description.
LaunchTemplateId object No description.
LaunchTemplateOverrides object No description.
LaunchTemplateVersion object No description.
LoadBalancerIds object No description.
MaxInstanceLifetime object No description.
MultiAzPolicy object No description.
NotificationConfigurations object No description.
OnDemandBaseCapacity object No description.
OnDemandPercentageAboveBaseCapacity object No description.
ProtectedInstances object No description.
RemovalPolicys object No description.
ResourceGroupId object No description.
ScalingGroupName object No description.
ScalingPolicy object No description.
ServerGroups object No description.
SpotAllocationStrategy object No description.
SpotInstancePools object No description.
SpotInstanceRemedy object No description.
StandbyInstances object No description.
Tags TagsProperty[] No description.
VSwitchId object No description.
VSwitchIds object No description.

NodeRequired

public ConstructNode Node { get; }
  • Type: AlibabaCloud.SDK.ROS.CDK.Core.ConstructNode

The construct tree node associated with this construct.


CreationStackRequired

public string[] CreationStack { get; }
  • Type: string[]

LogicalIdRequired

public string LogicalId { get; }
  • Type: string

The logical ID for this stack element.

The logical ID of the element is calculated from the path of the resource node in the construct tree.

To override this value, use overrideLogicalId(newLogicalId).


StackRequired

public Stack Stack { get; }
  • Type: AlibabaCloud.SDK.ROS.CDK.Core.Stack

The stack in which this element is defined.

RosElements must be defined within a stack scope (directly or indirectly).


RefRequired

public string Ref { get; }
  • Type: string

Return a string that will be resolved to a RosTemplate { Ref } for this element.

If, by any chance, the intrinsic reference of a resource is not a string, you could coerce it to an IResolvable through Lazy.any({ produce: resource.ref }).


RosOptionsRequired

public IRosResourceOptions RosOptions { get; }
  • Type: AlibabaCloud.SDK.ROS.CDK.Core.IRosResourceOptions

Options for this resource, such as condition, update policy etc.


RosResourceTypeRequired

public string RosResourceType { get; }
  • Type: string

ROS resource type.


AttrScalingGroupIdRequired

public IResolvable AttrScalingGroupId { get; }
  • Type: AlibabaCloud.SDK.ROS.CDK.Core.IResolvable

AttrScalingGroupNameRequired

public IResolvable AttrScalingGroupName { get; }
  • Type: AlibabaCloud.SDK.ROS.CDK.Core.IResolvable

EnableResourcePropertyConstraintRequired

public bool EnableResourcePropertyConstraint { get; }
  • Type: bool

MaxSizeRequired

public object MaxSize { get; }
  • Type: object

MinSizeRequired

public object MinSize { get; }
  • Type: object

AllocationStrategyOptional

public object AllocationStrategy { get; }
  • Type: object

AzBalanceOptional

public object AzBalance { get; }
  • Type: object

CompensateWithOnDemandOptional

public object CompensateWithOnDemand { get; }
  • Type: object

ContainerGroupIdOptional

public object ContainerGroupId { get; }
  • Type: object

CustomPolicyArnOptional

public object CustomPolicyArn { get; }
  • Type: object

DbInstanceIdsOptional

public object DbInstanceIds { get; }
  • Type: object

DefaultCooldownOptional

public object DefaultCooldown { get; }
  • Type: object

DesiredCapacityOptional

public object DesiredCapacity { get; }
  • Type: object

GroupDeletionProtectionOptional

public object GroupDeletionProtection { get; }
  • Type: object

GroupTypeOptional

public object GroupType { get; }
  • Type: object

HealthCheckTypeOptional

public object HealthCheckType { get; }
  • Type: object

InstanceIdOptional

public object InstanceId { get; }
  • Type: object

LaunchTemplateIdOptional

public object LaunchTemplateId { get; }
  • Type: object

LaunchTemplateOverridesOptional

public object LaunchTemplateOverrides { get; }
  • Type: object

LaunchTemplateVersionOptional

public object LaunchTemplateVersion { get; }
  • Type: object

LoadBalancerIdsOptional

public object LoadBalancerIds { get; }
  • Type: object

MaxInstanceLifetimeOptional

public object MaxInstanceLifetime { get; }
  • Type: object

MultiAzPolicyOptional

public object MultiAzPolicy { get; }
  • Type: object

NotificationConfigurationsOptional

public object NotificationConfigurations { get; }
  • Type: object

OnDemandBaseCapacityOptional

public object OnDemandBaseCapacity { get; }
  • Type: object

OnDemandPercentageAboveBaseCapacityOptional

public object OnDemandPercentageAboveBaseCapacity { get; }
  • Type: object

ProtectedInstancesOptional

public object ProtectedInstances { get; }
  • Type: object

RemovalPolicysOptional

public object RemovalPolicys { get; }
  • Type: object

ResourceGroupIdOptional

public object ResourceGroupId { get; }
  • Type: object

ScalingGroupNameOptional

public object ScalingGroupName { get; }
  • Type: object

ScalingPolicyOptional

public object ScalingPolicy { get; }
  • Type: object

ServerGroupsOptional

public object ServerGroups { get; }
  • Type: object

SpotAllocationStrategyOptional

public object SpotAllocationStrategy { get; }
  • Type: object

SpotInstancePoolsOptional

public object SpotInstancePools { get; }
  • Type: object

SpotInstanceRemedyOptional

public object SpotInstanceRemedy { get; }
  • Type: object

StandbyInstancesOptional

public object StandbyInstances { get; }
  • Type: object

TagsOptional

public TagsProperty[] Tags { get; }

VSwitchIdOptional

public object VSwitchId { get; }
  • Type: object

VSwitchIdsOptional

public object VSwitchIds { get; }
  • Type: object

Constants

Name Type Description
RosResourceTypeName string The resource type name for this resource class.

RosResourceTypeNameRequired

public string RosResourceTypeName { get; }
  • Type: string

The resource type name for this resource class.