Class: Aws::EC2::Types::AttributeValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::AttributeValue
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Note:
When making an API call, you may pass AttributeValue data as a hash:
{
value: "String",
}
Describes a value for a resource attribute that is a String.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#value ⇒ String
The attribute value.
Instance Attribute Details
#value ⇒ String
The attribute value. The value is case-sensitive.
2896 2897 2898 2899 2900 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 2896 class AttributeValue < Struct.new( :value) SENSITIVE = [] include Aws::Structure end |