interface CfnSubscriptionDefinitionVersionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Greengrass.CfnSubscriptionDefinitionVersionProps |
Java | software.amazon.awscdk.services.greengrass.CfnSubscriptionDefinitionVersionProps |
Python | aws_cdk.aws_greengrass.CfnSubscriptionDefinitionVersionProps |
TypeScript | @aws-cdk/aws-greengrass » CfnSubscriptionDefinitionVersionProps |
Properties for defining a CfnSubscriptionDefinitionVersion.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as greengrass from '@aws-cdk/aws-greengrass';
const cfnSubscriptionDefinitionVersionProps: greengrass.CfnSubscriptionDefinitionVersionProps = {
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
The ID of the subscription definition associated with this version.
This value is a GUID.
subscriptions
Type:
IResolvable | IResolvable | Subscription[]
The subscriptions in this version.

.NET
Java
Python
TypeScript