Interface CfnDomainNameAccessAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomainNameAccessAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:33.307Z")
@Stability(Stable)
public interface CfnDomainNameAccessAssociationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDomainNameAccessAssociation.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.apigateway.*;
CfnDomainNameAccessAssociationProps cfnDomainNameAccessAssociationProps = CfnDomainNameAccessAssociationProps.builder()
.accessAssociationSource("accessAssociationSource")
.accessAssociationSourceType("accessAssociationSourceType")
.domainNameArn("domainNameArn")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomainNameAccessAssociationPropsstatic final classAn implementation forCfnDomainNameAccessAssociationProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessAssociationSource
The identifier of the domain name access association source.For a
VPCE, the value is the VPC endpoint ID.- See Also:
-
getAccessAssociationSourceType
The type of the domain name access association source.Only
VPCEis currently supported.- See Also:
-
getDomainNameArn
The ARN of the domain name.- See Also:
-
getTags
The collection of tags.Each tag element is associated with a given resource.
- See Also:
-
builder
-