Interface ICfnDomainNameProps
Properties for defining a CfnDomainName
.
Namespace: Amazon.CDK.AWS.Apigatewayv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDomainNameProps
Syntax (vb)
Public Interface ICfnDomainNameProps
Remarks
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.Apigatewayv2;
var cfnDomainNameProps = new CfnDomainNameProps {
DomainName = "domainName",
// the properties below are optional
DomainNameConfigurations = new [] { new DomainNameConfigurationProperty {
CertificateArn = "certificateArn",
CertificateName = "certificateName",
EndpointType = "endpointType",
OwnershipVerificationCertificateArn = "ownershipVerificationCertificateArn",
SecurityPolicy = "securityPolicy"
} },
MutualTlsAuthentication = new MutualTlsAuthenticationProperty {
TruststoreUri = "truststoreUri",
TruststoreVersion = "truststoreVersion"
},
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Synopsis
Properties
DomainName | The custom domain name for your API in Amazon API Gateway. |
DomainNameConfigurations | The domain name configurations. |
MutualTlsAuthentication | The mutual TLS authentication configuration for a custom domain name. |
Tags | The collection of tags associated with a domain name. |
Properties
DomainName
The custom domain name for your API in Amazon API Gateway.
string DomainName { get; }
Property Value
System.String
Remarks
Uppercase letters and the underscore ( _
) character are not supported.
DomainNameConfigurations
The domain name configurations.
virtual object DomainNameConfigurations { get; }
Property Value
System.Object
Remarks
MutualTlsAuthentication
The mutual TLS authentication configuration for a custom domain name.
virtual object MutualTlsAuthentication { get; }
Property Value
System.Object
Remarks
Tags
The collection of tags associated with a domain name.
virtual IDictionary<string, string> Tags { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.String>