Class: Aws::AmplifyUIBuilder::Types::CreateThemeData
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyUIBuilder::Types::CreateThemeData
- Defined in:
- gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb
Overview
Note:
When making an API call, you may pass CreateThemeData data as a hash:
{
name: "ThemeName", # required
overrides: [
{
key: "String",
value: {
children: {
# recursive ThemeValuesList
},
value: "String",
},
},
],
tags: {
"TagKey" => "TagValue",
},
values: [ # required
{
key: "String",
value: {
children: {
# recursive ThemeValuesList
},
value: "String",
},
},
],
}
Represents all of the information that is required to create a theme.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the theme.
-
#overrides ⇒ Array<Types::ThemeValues>
Describes the properties that can be overriden to customize an instance of the theme.
-
#tags ⇒ Hash<String,String>
One or more key-value pairs to use when tagging the theme data.
-
#values ⇒ Array<Types::ThemeValues>
A list of key-value pairs that defines the properties of the theme.
Instance Attribute Details
#name ⇒ String
The name of the theme.
4539 4540 4541 4542 4543 4544 4545 4546 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 4539 class CreateThemeData < Struct.new( :name, :overrides, :tags, :values) SENSITIVE = [] include Aws::Structure end |
#overrides ⇒ Array<Types::ThemeValues>
Describes the properties that can be overriden to customize an instance of the theme.
4539 4540 4541 4542 4543 4544 4545 4546 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 4539 class CreateThemeData < Struct.new( :name, :overrides, :tags, :values) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
One or more key-value pairs to use when tagging the theme data.
4539 4540 4541 4542 4543 4544 4545 4546 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 4539 class CreateThemeData < Struct.new( :name, :overrides, :tags, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<Types::ThemeValues>
A list of key-value pairs that defines the properties of the theme.
4539 4540 4541 4542 4543 4544 4545 4546 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 4539 class CreateThemeData < Struct.new( :name, :overrides, :tags, :values) SENSITIVE = [] include Aws::Structure end |