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
]) –AWS::VpcLattice::ServiceNetworkServiceAssociation.DnsEntry
.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.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.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
AWS::VpcLattice::ServiceNetworkServiceAssociation.DnsEntry
.
- service_identifier
The ID or Amazon Resource Name (ARN) of the service.
- 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.