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.
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
Remarks
LogoFile
Returns a logo file data string (in base64 encoding).
string? LogoFile { get; }
Property Value
Remarks
Title
Returns the page title that you defined for your web app.
string? Title { get; }