CfnServiceNetworkResourceAssociationProps
- class aws_cdk.aws_vpclattice.CfnServiceNetworkResourceAssociationProps(*, private_dns_enabled=None, resource_configuration_id=None, service_network_id=None, tags=None)
Bases:
objectProperties for defining a
CfnServiceNetworkResourceAssociation.- Parameters:
private_dns_enabled (
Union[bool,IResolvable,None]) – Indicates if private DNS is enabled for the service network resource association.resource_configuration_id (
Optional[str]) – The ID of the resource configuration associated with the service network.service_network_id (
Optional[str]) – The ID of the service network associated with the resource configuration.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A key-value pair to associate with a resource.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_vpclattice as vpclattice cfn_service_network_resource_association_props = vpclattice.CfnServiceNetworkResourceAssociationProps( private_dns_enabled=False, resource_configuration_id="resourceConfigurationId", service_network_id="serviceNetworkId", tags=[CfnTag( key="key", value="value" )] )
Attributes
- private_dns_enabled
Indicates if private DNS is enabled for the service network resource association.
- resource_configuration_id
The ID of the resource configuration associated with the service network.
- service_network_id
The ID of the service network associated with the resource configuration.
- tags
A key-value pair to associate with a resource.