Class: Aws::ConfigService::Types::StaticValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::StaticValue
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Note:
When making an API call, you may pass StaticValue data as a hash:
{
values: ["StringWithCharLimit256"], # required
}
The static value of the resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#values ⇒ Array<String>
A list of values.
Instance Attribute Details
#values ⇒ Array<String>
A list of values. For example, the ARN of the assumed role.
8756 8757 8758 8759 8760 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8756 class StaticValue < Struct.new( :values) SENSITIVE = [] include Aws::Structure end |