interface SubscriptionDefinitionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Greengrass.SubscriptionDefinitionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsgreengrass#SubscriptionDefinitionReference |
Java | software.amazon.awscdk.interfaces.greengrass.SubscriptionDefinitionReference |
Python | aws_cdk.interfaces.aws_greengrass.SubscriptionDefinitionReference |
TypeScript | aws-cdk-lib » interfaces » aws_greengrass » SubscriptionDefinitionReference |
A reference to a SubscriptionDefinition resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_greengrass as interfaces_greengrass } from 'aws-cdk-lib/interfaces';
const subscriptionDefinitionReference: interfaces_greengrass.SubscriptionDefinitionReference = {
subscriptionDefinitionArn: 'subscriptionDefinitionArn',
subscriptionDefinitionId: 'subscriptionDefinitionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| subscription | string | The ARN of the SubscriptionDefinition resource. |
| subscription | string | The Id of the SubscriptionDefinition resource. |
subscriptionDefinitionArn
Type:
string
The ARN of the SubscriptionDefinition resource.
subscriptionDefinitionId
Type:
string
The Id of the SubscriptionDefinition resource.

.NET
Go
Java
Python
TypeScript