interface CfnSubscriptionTargetProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnSubscriptionTargetProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnSubscriptionTargetProps |
Java | software.amazon.awscdk.services.datazone.CfnSubscriptionTargetProps |
Python | aws_cdk.aws_datazone.CfnSubscriptionTargetProps |
TypeScript | aws-cdk-lib » aws_datazone » CfnSubscriptionTargetProps |
Properties for defining a CfnSubscriptionTarget.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from 'aws-cdk-lib';
const cfnSubscriptionTargetProps: datazone.CfnSubscriptionTargetProps = {
applicableAssetTypes: ['applicableAssetTypes'],
authorizedPrincipals: ['authorizedPrincipals'],
domainIdentifier: 'domainIdentifier',
environmentIdentifier: 'environmentIdentifier',
name: 'name',
subscriptionTargetConfig: [{
content: 'content',
formName: 'formName',
}],
type: 'type',
// the properties below are optional
manageAccessRole: 'manageAccessRole',
provider: 'provider',
};
Properties
| Name | Type | Description |
|---|---|---|
| applicable | string[] | The asset types included in the subscription target. |
| authorized | string[] | The authorized principals included in the subscription target. |
| domain | string | The ID of the Amazon DataZone domain in which subscription target is created. |
| environment | string | The ID of the environment in which subscription target is created. |
| name | string | The name of the subscription target. |
| subscription | IResolvable | (IResolvable | Subscription)[] | The configuration of the subscription target. |
| type | string | The type of the subscription target. |
| manage | string | The manage access role that is used to create the subscription target. |
| provider? | string | The provider of the subscription target. |
applicableAssetTypes
Type:
string[]
The asset types included in the subscription target.
authorizedPrincipals
Type:
string[]
The authorized principals included in the subscription target.
domainIdentifier
Type:
string
The ID of the Amazon DataZone domain in which subscription target is created.
environmentIdentifier
Type:
string
The ID of the environment in which subscription target is created.
name
Type:
string
The name of the subscription target.
subscriptionTargetConfig
Type:
IResolvable | (IResolvable | Subscription)[]
The configuration of the subscription target.
type
Type:
string
The type of the subscription target.
manageAccessRole?
Type:
string
(optional)
The manage access role that is used to create the subscription target.
provider?
Type:
string
(optional)
The provider of the subscription target.

.NET
Go
Java
Python
TypeScript