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.
7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 |
# File 'lib/aws-sdk-ecs/types.rb', line 7866 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.
7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 |
# File 'lib/aws-sdk-ecs/types.rb', line 7866 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.
7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 |
# File 'lib/aws-sdk-ecs/types.rb', line 7866 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.
7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 |
# File 'lib/aws-sdk-ecs/types.rb', line 7866 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.
7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 |
# File 'lib/aws-sdk-ecs/types.rb', line 7866 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`.
7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 |
# File 'lib/aws-sdk-ecs/types.rb', line 7866 class Resource < Struct.new( :name, :type, :double_value, :long_value, :integer_value, :string_set_value) SENSITIVE = [] include Aws::Structure end |