Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Instance

import type { Instance } from "https://aws-api.deno.dev/v0.3/services/opsworks.ts?docs=full";

Describes an instance.

interface Instance {
AgentVersion?: string | null;
AmiId?: string | null;
Architecture?: Architecture | null;
Arn?: string | null;
AutoScalingType?: AutoScalingType | null;
AvailabilityZone?: string | null;
BlockDeviceMappings?: BlockDeviceMapping[] | null;
CreatedAt?: string | null;
EbsOptimized?: boolean | null;
Ec2InstanceId?: string | null;
EcsClusterArn?: string | null;
EcsContainerInstanceArn?: string | null;
ElasticIp?: string | null;
Hostname?: string | null;
InfrastructureClass?: string | null;
InstallUpdatesOnBoot?: boolean | null;
InstanceId?: string | null;
InstanceProfileArn?: string | null;
InstanceType?: string | null;
LastServiceErrorId?: string | null;
LayerIds?: string[] | null;
Os?: string | null;
Platform?: string | null;
PrivateDns?: string | null;
PrivateIp?: string | null;
PublicDns?: string | null;
PublicIp?: string | null;
RegisteredBy?: string | null;
ReportedAgentVersion?: string | null;
ReportedOs?: ReportedOs | null;
RootDeviceType?: RootDeviceType | null;
RootDeviceVolumeId?: string | null;
SecurityGroupIds?: string[] | null;
SshHostDsaKeyFingerprint?: string | null;
SshHostRsaKeyFingerprint?: string | null;
SshKeyName?: string | null;
StackId?: string | null;
Status?: string | null;
SubnetId?: string | null;
Tenancy?: string | null;
VirtualizationType?: VirtualizationType | null;
}

§Properties

§
AgentVersion?: string | null
[src]

The agent version. This parameter is set to INHERIT if the instance inherits the default stack setting or to a a version number for a fixed agent version.

§
AmiId?: string | null
[src]

A custom AMI ID to be used to create the instance. For more information, see Instances

§
Architecture?: Architecture | null
[src]

The instance architecture: "i386" or "x86_64".

§
Arn?: string | null
[src]

The instance's Amazon Resource Number (ARN).

§
AutoScalingType?: AutoScalingType | null
[src]

For load-based or time-based instances, the type.

§
AvailabilityZone?: string | null
[src]

The instance Availability Zone. For more information, see Regions and Endpoints.

§
BlockDeviceMappings?: BlockDeviceMapping[] | null
[src]

An array of BlockDeviceMapping objects that specify the instance's block device mappings.

§
CreatedAt?: string | null
[src]

The time that the instance was created.

§
EbsOptimized?: boolean | null
[src]

Whether this is an Amazon EBS-optimized instance.

§
Ec2InstanceId?: string | null
[src]

The ID of the associated Amazon EC2 instance.

§
EcsClusterArn?: string | null
[src]

For container instances, the Amazon ECS cluster's ARN.

§
EcsContainerInstanceArn?: string | null
[src]

For container instances, the instance's ARN.

§
ElasticIp?: string | null
[src]

The instance Elastic IP address.

§
Hostname?: string | null
[src]

The instance host name.

§
InfrastructureClass?: string | null
[src]

For registered instances, the infrastructure class: ec2 or on-premises.

§
InstallUpdatesOnBoot?: boolean | null
[src]

Whether to install operating system and package updates when the instance boots. The default value is true. If this value is set to false, you must then update your instances manually by using "CreateDeployment" to run the update_dependencies stack command or by manually running yum (Amazon Linux) or apt-get (Ubuntu) on the instances.

Note: We strongly recommend using the default value of true, to ensure that your instances have the latest security updates.

§
InstanceId?: string | null
[src]

The instance ID.

§
InstanceProfileArn?: string | null
[src]

The ARN of the instance's IAM profile. For more information about IAM ARNs, see Using Identifiers.

§
InstanceType?: string | null
[src]

The instance type, such as t2.micro.

§
LastServiceErrorId?: string | null
[src]

The ID of the last service error. For more information, call "DescribeServiceErrors".

§
LayerIds?: string[] | null
[src]

An array containing the instance layer IDs.

§
Os?: string | null
[src]

The instance's operating system.

§
Platform?: string | null
[src]

The instance's platform.

§
PrivateDns?: string | null
[src]

The instance's private DNS name.

§
PrivateIp?: string | null
[src]

The instance's private IP address.

§
PublicDns?: string | null
[src]

The instance public DNS name.

§
PublicIp?: string | null
[src]

The instance public IP address.

§
RegisteredBy?: string | null
[src]

For registered instances, who performed the registration.

§
ReportedAgentVersion?: string | null
[src]

The instance's reported AWS OpsWorks Stacks agent version.

§
ReportedOs?: ReportedOs | null
[src]

For registered instances, the reported operating system.

§
RootDeviceType?: RootDeviceType | null
[src]

The instance's root device type. For more information, see Storage for the Root Device.

§
RootDeviceVolumeId?: string | null
[src]

The root device volume ID.

§
SecurityGroupIds?: string[] | null
[src]

An array containing the instance security group IDs.

§
SshHostDsaKeyFingerprint?: string | null
[src]

The SSH key's Deep Security Agent (DSA) fingerprint.

§
SshHostRsaKeyFingerprint?: string | null
[src]

The SSH key's RSA fingerprint.

§
SshKeyName?: string | null
[src]

The instance's Amazon EC2 key-pair name.

§
StackId?: string | null
[src]

The stack ID.

§
Status?: string | null
[src]

The instance status:

  • booting
    
  • connection_lost
    
  • online
    
  • pending
    
  • rebooting
    
  • requested
    
  • running_setup
    
  • setup_failed
    
  • shutting_down
    
  • start_failed
    
  • stop_failed
    
  • stopped
    
  • stopping
    
  • terminated
    
  • terminating
    
§
SubnetId?: string | null
[src]

The instance's subnet ID; applicable only if the stack is running in a VPC.

§
Tenancy?: string | null
[src]

The instance's tenancy option, such as dedicated or host.

§
VirtualizationType?: VirtualizationType | null
[src]

The instance's virtualization type: paravirtual or hvm.