Show / Hide Table of Contents

Interface CfnWebApp.IWebAppCustomizationProperty

A structure that contains the customization fields for the web app.

Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnWebApp.IWebAppCustomizationProperty
Syntax (vb)
Public Interface CfnWebApp.IWebAppCustomizationProperty
Remarks

You can provide a title, logo, and icon to customize the appearance of your web app.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-webappcustomization.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Transfer;

             var webAppCustomizationProperty = new WebAppCustomizationProperty {
                 FaviconFile = "faviconFile",
                 LogoFile = "logoFile",
                 Title = "title"
             };

Synopsis

Properties

FaviconFile

Returns an icon file data string (in base64 encoding).

LogoFile

Returns a logo file data string (in base64 encoding).

Title

Returns the page title that you defined for your web app.

Properties

FaviconFile

Returns an icon file data string (in base64 encoding).

string? FaviconFile { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-webappcustomization.html#cfn-transfer-webapp-webappcustomization-faviconfile

LogoFile

Returns a logo file data string (in base64 encoding).

string? LogoFile { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-webappcustomization.html#cfn-transfer-webapp-webappcustomization-logofile

Title

Returns the page title that you defined for your web app.

string? Title { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-webappcustomization.html#cfn-transfer-webapp-webappcustomization-title

Back to top Generated by DocFX