Interface CfnServiceNetworkServiceAssociationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServiceNetworkServiceAssociationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.956Z")
@Stability(Stable)
public interface CfnServiceNetworkServiceAssociationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnServiceNetworkServiceAssociationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.vpclattice.*;
CfnServiceNetworkServiceAssociationMixinProps cfnServiceNetworkServiceAssociationMixinProps = CfnServiceNetworkServiceAssociationMixinProps.builder()
.dnsEntry(DnsEntryProperty.builder()
.domainName("domainName")
.hostedZoneId("hostedZoneId")
.build())
.serviceIdentifier("serviceIdentifier")
.serviceNetworkIdentifier("serviceNetworkIdentifier")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServiceNetworkServiceAssociationMixinPropsstatic final classAn implementation forCfnServiceNetworkServiceAssociationMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDnsEntry
The DNS information of the service.Returns union: either
IResolvableorCfnServiceNetworkServiceAssociationPropsMixin.DnsEntryProperty- See Also:
-
getServiceIdentifier
The ID or ARN of the service.- See Also:
-
getServiceNetworkIdentifier
The ID or ARN of the service network.You must use an ARN if the resources are in different accounts.
- See Also:
-
getTags
The tags for the association.- See Also:
-
builder
-