interface HttpApiDomainConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SAM.CfnHttpApiPropsMixin.HttpApiDomainConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssam#CfnHttpApiPropsMixin_HttpApiDomainConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sam.CfnHttpApiPropsMixin.HttpApiDomainConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sam.CfnHttpApiPropsMixin.HttpApiDomainConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sam » CfnHttpApiPropsMixin » HttpApiDomainConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sam as sam } from '@aws-cdk/cfn-property-mixins';
const httpApiDomainConfigurationProperty: sam.CfnHttpApiPropsMixin.HttpApiDomainConfigurationProperty = {
basePath: 'basePath',
certificateArn: 'certificateArn',
domainName: 'domainName',
endpointConfiguration: 'endpointConfiguration',
mutualTlsAuthentication: {
truststoreUri: 'truststoreUri',
truststoreVersion: false,
},
route53: {
distributedDomainName: 'distributedDomainName',
evaluateTargetHealth: false,
hostedZoneId: 'hostedZoneId',
hostedZoneName: 'hostedZoneName',
ipV6: false,
},
securityPolicy: 'securityPolicy',
};
Properties
| Name | Type | Description |
|---|---|---|
| base | string | |
| certificate | string | |
| domain | string | |
| endpoint | string | |
| mutual | IResolvable | Mutual | |
| route53? | IResolvable | Route53 | |
| security | string |
basePath?
Type:
string
(optional)
certificateArn?
Type:
string
(optional)
domainName?
Type:
string
(optional)
endpointConfiguration?
Type:
string
(optional)
mutualTlsAuthentication?
Type:
IResolvable | Mutual
(optional)
route53?
Type:
IResolvable | Route53
(optional)
securityPolicy?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript