interface CfnSubscriptionDefinitionVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Greengrass.CfnSubscriptionDefinitionVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgreengrass#CfnSubscriptionDefinitionVersionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.greengrass.CfnSubscriptionDefinitionVersionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_greengrass.CfnSubscriptionDefinitionVersionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_greengrass » CfnSubscriptionDefinitionVersionMixinProps |
Properties for CfnSubscriptionDefinitionVersionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_greengrass as greengrass } from '@aws-cdk/cfn-property-mixins';
const cfnSubscriptionDefinitionVersionMixinProps: greengrass.CfnSubscriptionDefinitionVersionMixinProps = {
subscriptionDefinitionId: 'subscriptionDefinitionId',
subscriptions: [{
id: 'id',
source: 'source',
subject: 'subject',
target: 'target',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| subscription | string | The ID of the subscription definition associated with this version. |
| subscriptions? | IResolvable | (IResolvable | Subscription)[] | The subscriptions in this version. |
subscriptionDefinitionId?
Type:
string
(optional)
The ID of the subscription definition associated with this version.
This value is a GUID.
subscriptions?
Type:
IResolvable | (IResolvable | Subscription)[]
(optional)
The subscriptions in this version.

.NET
Go
Java
Python
TypeScript