Class: Aws::ECS::Types::Resource
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::Resource
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Describes the resources available for a container instance.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#double_value ⇒ Float
When the
doubleValue
type is set, the value of the resource must be a double precision floating-point type. -
#integer_value ⇒ Integer
When the
integerValue
type is set, the value of the resource must be an integer. -
#long_value ⇒ Integer
When the
longValue
type is set, the value of the resource must be an extended precision floating-point type. -
#name ⇒ String
The name of the resource, such as
CPU
,MEMORY
,PORTS
,PORTS_UDP
, or a user-defined resource. -
#string_set_value ⇒ Array<String>
When the
stringSetValue
type is set, the value of the resource must be a string type. -
#type ⇒ String
The type of the resource.
Instance Attribute Details
#double_value ⇒ Float
When the doubleValue
type is set, the value of the resource must
be a double precision floating-point type.
8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8742 class Resource < Struct.new( :name, :type, :double_value, :long_value, :integer_value, :string_set_value) SENSITIVE = [] include Aws::Structure end |
#integer_value ⇒ Integer
When the integerValue
type is set, the value of the resource must
be an integer.
8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8742 class Resource < Struct.new( :name, :type, :double_value, :long_value, :integer_value, :string_set_value) SENSITIVE = [] include Aws::Structure end |
#long_value ⇒ Integer
When the longValue
type is set, the value of the resource must be
an extended precision floating-point type.
8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8742 class Resource < Struct.new( :name, :type, :double_value, :long_value, :integer_value, :string_set_value) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the resource, such as CPU
, MEMORY
, PORTS
,
PORTS_UDP
, or a user-defined resource.
8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8742 class Resource < Struct.new( :name, :type, :double_value, :long_value, :integer_value, :string_set_value) SENSITIVE = [] include Aws::Structure end |
#string_set_value ⇒ Array<String>
When the stringSetValue
type is set, the value of the resource
must be a string type.
8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8742 class Resource < Struct.new( :name, :type, :double_value, :long_value, :integer_value, :string_set_value) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the resource. Valid values: INTEGER
, DOUBLE
, LONG
,
or STRINGSET
.
8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8742 class Resource < Struct.new( :name, :type, :double_value, :long_value, :integer_value, :string_set_value) SENSITIVE = [] include Aws::Structure end |