Interface CfnServiceNetworkResourceAssociationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServiceNetworkResourceAssociationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.955Z")
@Stability(Stable)
public interface CfnServiceNetworkResourceAssociationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnServiceNetworkResourceAssociationPropsMixin.
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.*;
CfnServiceNetworkResourceAssociationMixinProps cfnServiceNetworkResourceAssociationMixinProps = CfnServiceNetworkResourceAssociationMixinProps.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 forCfnServiceNetworkResourceAssociationMixinPropsstatic final classAn implementation forCfnServiceNetworkResourceAssociationMixinProps -
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
-