Class CfnWebAppProps
Properties for defining a CfnWebApp.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWebAppProps : ICfnWebAppProps
Syntax (vb)
Public Class CfnWebAppProps Implements ICfnWebAppProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-webapp.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 cfnWebAppProps = new CfnWebAppProps {
IdentityProviderDetails = new IdentityProviderDetailsProperty {
ApplicationArn = "applicationArn",
InstanceArn = "instanceArn",
Role = "role"
},
// the properties below are optional
AccessEndpoint = "accessEndpoint",
EndpointDetails = new EndpointDetailsProperty {
Vpc = new VpcProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
VpcId = "vpcId"
}
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
WebAppCustomization = new WebAppCustomizationProperty {
FaviconFile = "faviconFile",
LogoFile = "logoFile",
Title = "title"
},
WebAppEndpointPolicy = "webAppEndpointPolicy",
WebAppUnits = new WebAppUnitsProperty {
Provisioned = 123
}
};
Synopsis
Constructors
| CfnWebAppProps() | Properties for defining a |
Properties
| AccessEndpoint | The |
| EndpointDetails | Properties for defining a |
| IdentityProviderDetails | You can provide a structure that contains the details for the identity provider to use with your web app. |
| Tags | Key-value pairs that can be used to group and search for web apps. |
| WebAppCustomization | A structure that contains the customization fields for the web app. |
| WebAppEndpointPolicy | Setting for the type of endpoint policy for the web app. The default value is |
| WebAppUnits | A union that contains the value for number of concurrent connections or the user sessions on your web app. |
Constructors
CfnWebAppProps()
Properties for defining a CfnWebApp.
public CfnWebAppProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-webapp.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 cfnWebAppProps = new CfnWebAppProps {
IdentityProviderDetails = new IdentityProviderDetailsProperty {
ApplicationArn = "applicationArn",
InstanceArn = "instanceArn",
Role = "role"
},
// the properties below are optional
AccessEndpoint = "accessEndpoint",
EndpointDetails = new EndpointDetailsProperty {
Vpc = new VpcProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
VpcId = "vpcId"
}
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
WebAppCustomization = new WebAppCustomizationProperty {
FaviconFile = "faviconFile",
LogoFile = "logoFile",
Title = "title"
},
WebAppEndpointPolicy = "webAppEndpointPolicy",
WebAppUnits = new WebAppUnitsProperty {
Provisioned = 123
}
};
Properties
AccessEndpoint
The AccessEndpoint is the URL that you provide to your users for them to interact with the Transfer Family web app.
public string? AccessEndpoint { get; set; }
Property Value
Remarks
You can specify a custom URL or use the default value.
Before you enter a custom URL for this parameter, follow the steps described in Update your access endpoint with a custom URL .
EndpointDetails
Properties for defining a CfnWebApp.
public object? EndpointDetails { get; set; }
Property Value
Remarks
IdentityProviderDetails
You can provide a structure that contains the details for the identity provider to use with your web app.
public object IdentityProviderDetails { get; set; }
Property Value
Remarks
For more details about this parameter, see Configure your identity provider for Transfer Family web apps .
Type union: either IResolvable or CfnWebApp.IIdentityProviderDetailsProperty
Tags
Key-value pairs that can be used to group and search for web apps.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
Tags are metadata attached to web apps for any purpose.
WebAppCustomization
A structure that contains the customization fields for the web app.
public object? WebAppCustomization { get; set; }
Property Value
Remarks
You can provide a title, logo, and icon to customize the appearance of your web app.
Type union: either IResolvable or CfnWebApp.IWebAppCustomizationProperty
WebAppEndpointPolicy
Setting for the type of endpoint policy for the web app. The default value is STANDARD .
public string? WebAppEndpointPolicy { get; set; }
Property Value
Remarks
If your web app was created in an AWS GovCloud (US) Region , the value of this parameter can be FIPS , which indicates the web app endpoint is FIPS-compliant.
WebAppUnits
A union that contains the value for number of concurrent connections or the user sessions on your web app.
public object? WebAppUnits { get; set; }