Class: Aws::ECS::Types::RegisterContainerInstanceRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecs/types.rb

Overview

Note:

When making an API call, you may pass RegisterContainerInstanceRequest data as a hash:

{
  cluster: "String",
  instance_identity_document: "String",
  instance_identity_document_signature: "String",
  total_resources: [
    {
      name: "String",
      type: "String",
      double_value: 1.0,
      long_value: 1,
      integer_value: 1,
      string_set_value: ["String"],
    },
  ],
  version_info: {
    agent_version: "String",
    agent_hash: "String",
    docker_version: "String",
  },
  container_instance_arn: "String",
  attributes: [
    {
      name: "String", # required
      value: "String",
      target_type: "container-instance", # accepts container-instance
      target_id: "String",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#attributesArray<Types::Attribute>

The container instance attributes that this container instance supports.

Returns:



3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
# File 'lib/aws-sdk-ecs/types.rb', line 3800

class RegisterContainerInstanceRequest < Struct.new(
  :cluster,
  :instance_identity_document,
  :instance_identity_document_signature,
  :total_resources,
  :version_info,
  :container_instance_arn,
  :attributes)
  include Aws::Structure
end

#clusterString

The short name or full Amazon Resource Name (ARN) of the cluster with which to register your container instance. If you do not specify a cluster, the default cluster is assumed.

Returns:

  • (String)


3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
# File 'lib/aws-sdk-ecs/types.rb', line 3800

class RegisterContainerInstanceRequest < Struct.new(
  :cluster,
  :instance_identity_document,
  :instance_identity_document_signature,
  :total_resources,
  :version_info,
  :container_instance_arn,
  :attributes)
  include Aws::Structure
end

#container_instance_arnString

The ARN of the container instance (if it was previously registered).

Returns:

  • (String)


3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
# File 'lib/aws-sdk-ecs/types.rb', line 3800

class RegisterContainerInstanceRequest < Struct.new(
  :cluster,
  :instance_identity_document,
  :instance_identity_document_signature,
  :total_resources,
  :version_info,
  :container_instance_arn,
  :attributes)
  include Aws::Structure
end

#instance_identity_documentString

The instance identity document for the EC2 instance to register. This document can be found by running the following command from the instance: ‘curl 169.254.169.254/latest/dynamic/instance-identity/document/`

Returns:

  • (String)


3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
# File 'lib/aws-sdk-ecs/types.rb', line 3800

class RegisterContainerInstanceRequest < Struct.new(
  :cluster,
  :instance_identity_document,
  :instance_identity_document_signature,
  :total_resources,
  :version_info,
  :container_instance_arn,
  :attributes)
  include Aws::Structure
end

#instance_identity_document_signatureString

The instance identity document signature for the EC2 instance to register. This signature can be found by running the following command from the instance: ‘curl 169.254.169.254/latest/dynamic/instance-identity/signature/`

Returns:

  • (String)


3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
# File 'lib/aws-sdk-ecs/types.rb', line 3800

class RegisterContainerInstanceRequest < Struct.new(
  :cluster,
  :instance_identity_document,
  :instance_identity_document_signature,
  :total_resources,
  :version_info,
  :container_instance_arn,
  :attributes)
  include Aws::Structure
end

#total_resourcesArray<Types::Resource>

The resources available on the instance.

Returns:



3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
# File 'lib/aws-sdk-ecs/types.rb', line 3800

class RegisterContainerInstanceRequest < Struct.new(
  :cluster,
  :instance_identity_document,
  :instance_identity_document_signature,
  :total_resources,
  :version_info,
  :container_instance_arn,
  :attributes)
  include Aws::Structure
end

#version_infoTypes::VersionInfo

The version information for the Amazon ECS container agent and Docker daemon running on the container instance.

Returns:



3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
# File 'lib/aws-sdk-ecs/types.rb', line 3800

class RegisterContainerInstanceRequest < Struct.new(
  :cluster,
  :instance_identity_document,
  :instance_identity_document_signature,
  :total_resources,
  :version_info,
  :container_instance_arn,
  :attributes)
  include Aws::Structure
end