class CfnSubscriptionTargetPropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnSubscriptionTargetPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnSubscriptionTargetPropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnSubscriptionTargetPropsMixin |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnSubscriptionTargetPropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnSubscriptionTargetPropsMixin |
Implements
IMixin
Extends
Mixin
The AWS::DataZone::SubscriptionTarget resource specifies an Amazon DataZone subscription target.
Subscription targets enable you to access the data to which you have subscribed in your projects. A subscription target specifies the location (for example, a database or a schema) and the required permissions (for example, an IAM role) that Amazon DataZone can use to establish a connection with the source data and to create the necessary grants so that members of the Amazon DataZone project can start querying the data to which they have subscribed.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins } from '@aws-cdk/mixins-preview';
import { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const cfnSubscriptionTargetPropsMixin = new datazone_mixins.CfnSubscriptionTargetPropsMixin({
applicableAssetTypes: ['applicableAssetTypes'],
authorizedPrincipals: ['authorizedPrincipals'],
domainIdentifier: 'domainIdentifier',
environmentIdentifier: 'environmentIdentifier',
manageAccessRole: 'manageAccessRole',
name: 'name',
provider: 'provider',
subscriptionTargetConfig: [{
content: 'content',
formName: 'formName',
}],
type: 'type',
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnSubscriptionTargetPropsMixin(props: CfnSubscriptionTargetMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Subscription Target Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::DataZone::SubscriptionTarget.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): IConstruct
Parameters
- construct
IConstruct
Returns
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript