interface SubscriptionTargetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DataZone.SubscriptionTargetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdatazone#SubscriptionTargetReference |
Java | software.amazon.awscdk.interfaces.datazone.SubscriptionTargetReference |
Python | aws_cdk.interfaces.aws_datazone.SubscriptionTargetReference |
TypeScript | aws-cdk-lib » interfaces » aws_datazone » SubscriptionTargetReference |
A reference to a SubscriptionTarget resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as interfaces_aws_datazone } from 'aws-cdk-lib/interfaces';
const subscriptionTargetReference: interfaces_aws_datazone.SubscriptionTargetReference = {
domainId: 'domainId',
environmentId: 'environmentId',
subscriptionTargetId: 'subscriptionTargetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainId of the SubscriptionTarget resource. |
| environment | string | The EnvironmentId of the SubscriptionTarget resource. |
| subscription | string | The Id of the SubscriptionTarget resource. |
domainId
Type:
string
The DomainId of the SubscriptionTarget resource.
environmentId
Type:
string
The EnvironmentId of the SubscriptionTarget resource.
subscriptionTargetId
Type:
string
The Id of the SubscriptionTarget resource.

.NET
Go
Java
Python
TypeScript