interface SubscriptionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SNS.SubscriptionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssns#SubscriptionReference |
Java | software.amazon.awscdk.interfaces.sns.SubscriptionReference |
Python | aws_cdk.interfaces.aws_sns.SubscriptionReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_sns } from 'aws-cdk-lib/interfaces';
const subscriptionReference: interfaces_aws_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