Class: Aws::Transfer::Types::DescribedWebAppCustomization
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::DescribedWebAppCustomization
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transfer/types.rb
Overview
A structure that contains the customization fields for the web app. You can provide a title, logo, and icon to customize the appearance of your web app.
Constant Summary collapse
- SENSITIVE =
[:logo_file, :favicon_file]
Instance Attribute Summary collapse
-
#arn ⇒ String
Returns the Amazon Resource Name (ARN) for the web app.
-
#favicon_file ⇒ String
Returns a icon file data string (in base64 encoding).
-
#logo_file ⇒ String
Returns a logo file data string (in base64 encoding).
-
#title ⇒ String
Returns the page title that you defined for your web app.
-
#web_app_id ⇒ String
Returns the unique identifier for your web app.
Instance Attribute Details
#arn ⇒ String
Returns the Amazon Resource Name (ARN) for the web app.
3218 3219 3220 3221 3222 3223 3224 3225 3226 |
# File 'lib/aws-sdk-transfer/types.rb', line 3218 class DescribedWebAppCustomization < Struct.new( :arn, :web_app_id, :title, :logo_file, :favicon_file) SENSITIVE = [:logo_file, :favicon_file] include Aws::Structure end |
#favicon_file ⇒ String
Returns a icon file data string (in base64 encoding).
3218 3219 3220 3221 3222 3223 3224 3225 3226 |
# File 'lib/aws-sdk-transfer/types.rb', line 3218 class DescribedWebAppCustomization < Struct.new( :arn, :web_app_id, :title, :logo_file, :favicon_file) SENSITIVE = [:logo_file, :favicon_file] include Aws::Structure end |
#logo_file ⇒ String
Returns a logo file data string (in base64 encoding).
3218 3219 3220 3221 3222 3223 3224 3225 3226 |
# File 'lib/aws-sdk-transfer/types.rb', line 3218 class DescribedWebAppCustomization < Struct.new( :arn, :web_app_id, :title, :logo_file, :favicon_file) SENSITIVE = [:logo_file, :favicon_file] include Aws::Structure end |
#title ⇒ String
Returns the page title that you defined for your web app.
3218 3219 3220 3221 3222 3223 3224 3225 3226 |
# File 'lib/aws-sdk-transfer/types.rb', line 3218 class DescribedWebAppCustomization < Struct.new( :arn, :web_app_id, :title, :logo_file, :favicon_file) SENSITIVE = [:logo_file, :favicon_file] include Aws::Structure end |
#web_app_id ⇒ String
Returns the unique identifier for your web app.
3218 3219 3220 3221 3222 3223 3224 3225 3226 |
# File 'lib/aws-sdk-transfer/types.rb', line 3218 class DescribedWebAppCustomization < Struct.new( :arn, :web_app_id, :title, :logo_file, :favicon_file) SENSITIVE = [:logo_file, :favicon_file] include Aws::Structure end |