Interface CfnServiceNetworkResourceAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServiceNetworkResourceAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-12T17:54:24.270Z")
@Stability(Stable)
public interface CfnServiceNetworkResourceAssociationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnServiceNetworkResourceAssociation.
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.*;
CfnServiceNetworkResourceAssociationProps cfnServiceNetworkResourceAssociationProps = CfnServiceNetworkResourceAssociationProps.builder()
.privateDnsEnabled(false)
.resourceConfigurationId("resourceConfigurationId")
.serviceNetworkId("serviceNetworkId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServiceNetworkResourceAssociationPropsstatic final classAn implementation forCfnServiceNetworkResourceAssociationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectIndicates if private DNS is enabled for the service network resource association.default StringThe ID of the resource configuration associated with the service network.default StringThe ID of the service network associated with the resource configuration.getTags()A key-value pair to associate with a resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPrivateDnsEnabled
Indicates if private DNS is enabled for the service network resource association.Returns union: either
BooleanorIResolvable- See Also:
-
getResourceConfigurationId
The ID of the resource configuration associated with the service network.- See Also:
-
getServiceNetworkId
The ID of the service network associated with the resource configuration.- See Also:
-
getTags
A key-value pair to associate with a resource.- See Also:
-
builder
-