Class: Aws::AmplifyUIBuilder::Types::ThemeValues
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyUIBuilder::Types::ThemeValues
- Defined in:
- gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb
Overview
Note:
When making an API call, you may pass ThemeValues data as a hash:
{
key: "String",
value: {
children: [
{
key: "String",
value: {
# recursive ThemeValue
},
},
],
value: "String",
},
}
A key-value pair that defines a property of a theme.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The name of the property.
-
#value ⇒ Types::ThemeValue
The value of the property.
Instance Attribute Details
#key ⇒ String
The name of the property.
5556 5557 5558 5559 5560 5561 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 5556 class ThemeValues < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Types::ThemeValue
The value of the property.
5556 5557 5558 5559 5560 5561 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 5556 class ThemeValues < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |