Class: Aws::ECS::Types::DiscoverPollEndpointRequest

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 DiscoverPollEndpointRequest data as a hash:

{
  container_instance: "String",
  cluster: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#clusterString

The short name or full Amazon Resource Name (ARN) of the cluster that the container instance belongs to.

Returns:

  • (String)


2237
2238
2239
2240
2241
# File 'lib/aws-sdk-ecs/types.rb', line 2237

class DiscoverPollEndpointRequest < Struct.new(
  :container_instance,
  :cluster)
  include Aws::Structure
end

#container_instanceString

The container instance ID or full ARN of the container instance. The ARN contains the ‘arn:aws:ecs` namespace, followed by the region of the container instance, the AWS account ID of the container instance owner, the `container-instance` namespace, and then the container instance ID. For example, `arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID `.

Returns:

  • (String)


2237
2238
2239
2240
2241
# File 'lib/aws-sdk-ecs/types.rb', line 2237

class DiscoverPollEndpointRequest < Struct.new(
  :container_instance,
  :cluster)
  include Aws::Structure
end