CfnServiceNetworkResourceAssociationMixinProps

class aws_cdk.mixins_preview.aws_vpclattice.mixins.CfnServiceNetworkResourceAssociationMixinProps(*, private_dns_enabled=None, resource_configuration_id=None, service_network_id=None, tags=None)

Bases: object

Properties for CfnServiceNetworkResourceAssociationPropsMixin.

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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_vpclattice import mixins as vpclattice_mixins

cfn_service_network_resource_association_mixin_props = vpclattice_mixins.CfnServiceNetworkResourceAssociationMixinProps(
    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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html#cfn-vpclattice-servicenetworkresourceassociation-privatednsenabled

resource_configuration_id

The ID of the resource configuration associated with the service network.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html#cfn-vpclattice-servicenetworkresourceassociation-resourceconfigurationid

service_network_id

The ID of the service network associated with the resource configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html#cfn-vpclattice-servicenetworkresourceassociation-servicenetworkid

tags

A key-value pair to associate with a resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html#cfn-vpclattice-servicenetworkresourceassociation-tags