Class: Aws::AmplifyUIBuilder::Types::CreateThemeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyUIBuilder::Types::CreateThemeRequest
- Defined in:
- gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb
Overview
Note:
When making an API call, you may pass CreateThemeRequest data as a hash:
{
app_id: "String", # required
client_token: "String",
environment_name: "String", # required
theme_to_create: { # required
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",
},
},
],
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id ⇒ String
The unique ID of the Amplify app associated with the theme.
-
#client_token ⇒ String
The unique client token.
-
#environment_name ⇒ String
The name of the backend environment that is a part of the Amplify app.
-
#theme_to_create ⇒ Types::CreateThemeData
Represents the configuration of the theme to create.
Instance Attribute Details
#app_id ⇒ String
The unique ID of the Amplify app associated with the theme.
4607 4608 4609 4610 4611 4612 4613 4614 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 4607 class CreateThemeRequest < Struct.new( :app_id, :client_token, :environment_name, :theme_to_create) SENSITIVE = [] include Aws::Structure end |
#client_token ⇒ String
The unique client token.
A suitable default value is auto-generated. You should normally not need to pass this option.
4607 4608 4609 4610 4611 4612 4613 4614 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 4607 class CreateThemeRequest < Struct.new( :app_id, :client_token, :environment_name, :theme_to_create) SENSITIVE = [] include Aws::Structure end |
#environment_name ⇒ String
The name of the backend environment that is a part of the Amplify app.
4607 4608 4609 4610 4611 4612 4613 4614 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 4607 class CreateThemeRequest < Struct.new( :app_id, :client_token, :environment_name, :theme_to_create) SENSITIVE = [] include Aws::Structure end |
#theme_to_create ⇒ Types::CreateThemeData
Represents the configuration of the theme to create.
4607 4608 4609 4610 4611 4612 4613 4614 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 4607 class CreateThemeRequest < Struct.new( :app_id, :client_token, :environment_name, :theme_to_create) SENSITIVE = [] include Aws::Structure end |