interface CfnSubscriptionTargetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnSubscriptionTargetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnSubscriptionTargetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnSubscriptionTargetMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnSubscriptionTargetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnSubscriptionTargetMixinProps |
Properties for CfnSubscriptionTargetPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const cfnSubscriptionTargetMixinProps: datazone_mixins.CfnSubscriptionTargetMixinProps = {
applicableAssetTypes: ['applicableAssetTypes'],
authorizedPrincipals: ['authorizedPrincipals'],
domainIdentifier: 'domainIdentifier',
environmentIdentifier: 'environmentIdentifier',
manageAccessRole: 'manageAccessRole',
name: 'name',
provider: 'provider',
subscriptionTargetConfig: [{
content: 'content',
formName: 'formName',
}],
type: 'type',
};
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. |
| manage | string | The manage access role that is used to create the subscription target. |
| name? | string | The name of the subscription target. |
| provider? | string | The provider of the subscription target. |
| subscription | IResolvable | (IResolvable | Subscription)[] | The configuration of the subscription target. |
| type? | string | The type of the subscription target. |
applicableAssetTypes?
Type:
string[]
(optional)
The asset types included in the subscription target.
authorizedPrincipals?
Type:
string[]
(optional)
The authorized principals included in the subscription target.
domainIdentifier?
Type:
string
(optional)
The ID of the Amazon DataZone domain in which subscription target is created.
environmentIdentifier?
Type:
string
(optional)
The ID of the environment in which subscription target is created.
manageAccessRole?
Type:
string
(optional)
The manage access role that is used to create the subscription target.
name?
Type:
string
(optional)
The name of the subscription target.
provider?
Type:
string
(optional)
The provider of the subscription target.
subscriptionTargetConfig?
Type:
IResolvable | (IResolvable | Subscription)[]
(optional)
The configuration of the subscription target.
type?
Type:
string
(optional)
The type of the subscription target.

.NET
Go
Java
Python
TypeScript