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 ARN of the service.
- service_network_identifier ( - Optional[- str]) – The ID or ARN of the service network. You must use an ARN if the resources are in different accounts.
- tags ( - Optional[- Sequence[- Union[- CfnTag,- Dict[- str,- Any]]]]) – The tags for the association.
 
- See:
- 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. 
 - service_identifier
- The ID or ARN of the service. 
 - service_network_identifier
- The ID or ARN of the service network. - You must use an ARN if the resources are in different accounts.