CfnServiceNetworkResourceAssociationProps
- class aws_cdk.aws_vpclattice.CfnServiceNetworkResourceAssociationProps(*, resource_configuration_id=None, service_network_id=None, tags=None)
Bases:
objectProperties for defining a
CfnServiceNetworkResourceAssociation.- Parameters:
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:
# 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( resource_configuration_id="resourceConfigurationId", service_network_id="serviceNetworkId", tags=[CfnTag( key="key", value="value" )] )
Attributes
- 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.