Interface CfnServiceNetworkServiceAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServiceNetworkServiceAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:28.214Z")
@Stability(Stable)
public interface CfnServiceNetworkServiceAssociationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnServiceNetworkServiceAssociation
.
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.vpclattice.*; CfnServiceNetworkServiceAssociationProps cfnServiceNetworkServiceAssociationProps = CfnServiceNetworkServiceAssociationProps.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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnServiceNetworkServiceAssociationProps
static final class
An implementation forCfnServiceNetworkServiceAssociationProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDnsEntry
The DNS information of the service.- See Also:
-
getServiceIdentifier
The ID or Amazon Resource Name (ARN) of the service.- See Also:
-
getServiceNetworkIdentifier
The ID or Amazon Resource Name (ARN) of the service network.You must use the ARN if the resources specified in the operation are in different accounts.
- See Also:
-
getTags
The tags for the association.- See Also:
-
builder
-