Class: Aws::ECS::Types::Resource
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::Resource
- Includes:
- Structure
- Defined in:
- 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.
8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 |
# File 'lib/aws-sdk-ecs/types.rb', line 8872 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.
8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 |
# File 'lib/aws-sdk-ecs/types.rb', line 8872 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.
8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 |
# File 'lib/aws-sdk-ecs/types.rb', line 8872 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.
8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 |
# File 'lib/aws-sdk-ecs/types.rb', line 8872 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.
8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 |
# File 'lib/aws-sdk-ecs/types.rb', line 8872 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`.
8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 |
# File 'lib/aws-sdk-ecs/types.rb', line 8872 class Resource < Struct.new( :name, :type, :double_value, :long_value, :integer_value, :string_set_value) SENSITIVE = [] include Aws::Structure end |