SubscriptionTargetReference
- class aws_cdk.aws_datazone.SubscriptionTargetReference(*, domain_id, environment_id, subscription_target_id)
Bases:
object
A reference to a SubscriptionTarget resource.
- Parameters:
domain_id (
str
) – The DomainId of the SubscriptionTarget resource.environment_id (
str
) – The EnvironmentId of the SubscriptionTarget resource.subscription_target_id (
str
) – The Id of the SubscriptionTarget resource.
- 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_datazone as datazone subscription_target_reference = datazone.SubscriptionTargetReference( domain_id="domainId", environment_id="environmentId", subscription_target_id="subscriptionTargetId" )
Attributes
- domain_id
The DomainId of the SubscriptionTarget resource.
- environment_id
The EnvironmentId of the SubscriptionTarget resource.
- subscription_target_id
The Id of the SubscriptionTarget resource.