Class: Aws::AmplifyUIBuilder::Types::UpdateThemeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyUIBuilder::Types::UpdateThemeRequest
- Defined in:
- gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb
Overview
Note:
When making an API call, you may pass UpdateThemeRequest data as a hash:
{
app_id: "String", # required
client_token: "String",
environment_name: "String", # required
id: "Uuid", # required
updated_theme: { # required
id: "Uuid",
name: "ThemeName",
overrides: [
{
key: "String",
value: {
children: {
# recursive ThemeValuesList
},
value: "String",
},
},
],
values: [ # required
{
key: "String",
value: {
children: {
# recursive ThemeValuesList
},
value: "String",
},
},
],
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id ⇒ String
The unique ID for the Amplify app.
-
#client_token ⇒ String
The unique client token.
-
#environment_name ⇒ String
The name of the backend environment that is part of the Amplify app.
-
#id ⇒ String
The unique ID for the theme.
-
#updated_theme ⇒ Types::UpdateThemeData
The configuration of the updated theme.
Instance Attribute Details
#app_id ⇒ String
The unique ID for the Amplify app.
7649 7650 7651 7652 7653 7654 7655 7656 7657 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 7649 class UpdateThemeRequest < Struct.new( :app_id, :client_token, :environment_name, :id, :updated_theme) 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.
7649 7650 7651 7652 7653 7654 7655 7656 7657 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 7649 class UpdateThemeRequest < Struct.new( :app_id, :client_token, :environment_name, :id, :updated_theme) SENSITIVE = [] include Aws::Structure end |
#environment_name ⇒ String
The name of the backend environment that is part of the Amplify app.
7649 7650 7651 7652 7653 7654 7655 7656 7657 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 7649 class UpdateThemeRequest < Struct.new( :app_id, :client_token, :environment_name, :id, :updated_theme) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The unique ID for the theme.
7649 7650 7651 7652 7653 7654 7655 7656 7657 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 7649 class UpdateThemeRequest < Struct.new( :app_id, :client_token, :environment_name, :id, :updated_theme) SENSITIVE = [] include Aws::Structure end |
#updated_theme ⇒ Types::UpdateThemeData
The configuration of the updated theme.
7649 7650 7651 7652 7653 7654 7655 7656 7657 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 7649 class UpdateThemeRequest < Struct.new( :app_id, :client_token, :environment_name, :id, :updated_theme) SENSITIVE = [] include Aws::Structure end |