CfnServiceNetworkServiceAssociationProps

class aws_cdk.aws_vpclattice.CfnServiceNetworkServiceAssociationProps(*, dns_entry=None, service_identifier=None, service_network_identifier=None, tags=None)

Bases: object

Properties for defining a CfnServiceNetworkServiceAssociation.

Parameters:
  • dns_entry (Union[IResolvable, DnsEntryProperty, Dict[str, Any], None]) – The DNS information of the service.

  • service_identifier (Optional[str]) – The ID or Amazon Resource Name (ARN) of the service.

  • service_network_identifier (Optional[str]) – 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.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags for the association.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.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 import aws_vpclattice as vpclattice

cfn_service_network_service_association_props = vpclattice.CfnServiceNetworkServiceAssociationProps(
    dns_entry=vpclattice.CfnServiceNetworkServiceAssociation.DnsEntryProperty(
        domain_name="domainName",
        hosted_zone_id="hostedZoneId"
    ),
    service_identifier="serviceIdentifier",
    service_network_identifier="serviceNetworkIdentifier",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

dns_entry

The DNS information of the service.

See:

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

service_identifier

The ID or Amazon Resource Name (ARN) of the service.

See:

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

service_network_identifier

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:

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

tags

The tags for the association.

See:

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