interface SubscriptionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SNS.SubscriptionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssns#SubscriptionReference |
Java | software.amazon.awscdk.services.sns.SubscriptionReference |
Python | aws_cdk.aws_sns.SubscriptionReference |
TypeScript | aws-cdk-lib » aws_sns » SubscriptionReference |
A reference to a Subscription resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sns as sns } from 'aws-cdk-lib';
const subscriptionReference: sns.SubscriptionReference = {
subscriptionArn: 'subscriptionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| subscription | string | The Arn of the Subscription resource. |
subscriptionArn
Type:
string
The Arn of the Subscription resource.

.NET
Go
Java
Python
TypeScript