Class: Aws::AmplifyUIBuilder::Types::ThemeValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyUIBuilder::Types::ThemeValue
- Defined in:
- gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb
Overview
Note:
When making an API call, you may pass ThemeValue data as a hash:
{
children: [
{
key: "String",
value: {
children: {
# recursive ThemeValuesList
},
value: "String",
},
},
],
value: "String",
}
Describes the configuration of a theme's properties.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#children ⇒ Array<Types::ThemeValues>
A list of key-value pairs that define the theme's properties.
-
#value ⇒ String
The value of a theme property.
Instance Attribute Details
#children ⇒ Array<Types::ThemeValues>
A list of key-value pairs that define the theme's properties.
5519 5520 5521 5522 5523 5524 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 5519 class ThemeValue < Struct.new( :children, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of a theme property.
5519 5520 5521 5522 5523 5524 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 5519 class ThemeValue < Struct.new( :children, :value) SENSITIVE = [] include Aws::Structure end |