Class BuiltInAttributes
The built-in container instance attributes.
Inheritance
Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.AWS.ECS.dll
Syntax (csharp)
public class BuiltInAttributes : DeputyBase
Syntax (vb)
Public Class BuiltInAttributes
Inherits DeputyBase
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.AWS.ECS;
var builtInAttributes = new BuiltInAttributes();
Synopsis
Constructors
BuiltInAttributes() | |
BuiltInAttributes(ByRefValue) | Used by jsii to construct an instance of this class from a Javascript-owned object reference |
BuiltInAttributes(DeputyBase.DeputyProps) | Used by jsii to construct an instance of this class from DeputyProps |
Properties
AMI_ID | The AMI id the instance is using. |
AVAILABILITY_ZONE | The AvailabilityZone where the instance is running in. |
INSTANCE_ID | The id of the instance. |
INSTANCE_TYPE | The EC2 instance type. |
OS_TYPE | The operating system of the instance. |
Constructors
BuiltInAttributes()
public BuiltInAttributes()
BuiltInAttributes(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected BuiltInAttributes(ByRefValue reference)
Parameters
- reference Amazon.JSII.Runtime.Deputy.ByRefValue
The Javascript-owned object reference
BuiltInAttributes(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected BuiltInAttributes(DeputyBase.DeputyProps props)
Parameters
- props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps
The deputy props
Properties
AMI_ID
The AMI id the instance is using.
public static string AMI_ID { get; }
Property Value
System.String
AVAILABILITY_ZONE
The AvailabilityZone where the instance is running in.
public static string AVAILABILITY_ZONE { get; }
Property Value
System.String
INSTANCE_ID
The id of the instance.
public static string INSTANCE_ID { get; }
Property Value
System.String
INSTANCE_TYPE
The EC2 instance type.
public static string INSTANCE_TYPE { get; }
Property Value
System.String
OS_TYPE
The operating system of the instance.
public static string OS_TYPE { get; }
Property Value
System.String
Remarks
Either 'linux' or 'windows'.