interface SubscriberProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CE.Mixins.CfnAnomalySubscriptionPropsMixin.SubscriberProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsce/mixins#CfnAnomalySubscriptionPropsMixin_SubscriberProperty |
Java | software.amazon.awscdk.mixins.preview.services.ce.mixins.CfnAnomalySubscriptionPropsMixin.SubscriberProperty |
Python | aws_cdk.mixins_preview.aws_ce.mixins.CfnAnomalySubscriptionPropsMixin.SubscriberProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ce » mixins » CfnAnomalySubscriptionPropsMixin » SubscriberProperty |
The recipient of AnomalySubscription notifications.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ce_mixins } from '@aws-cdk/mixins-preview/aws-ce';
const subscriberProperty: ce_mixins.CfnAnomalySubscriptionPropsMixin.SubscriberProperty = {
address: 'address',
status: 'status',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| address? | string | The email address or SNS Topic Amazon Resource Name (ARN), depending on the Type . |
| status? | string | Indicates if the subscriber accepts the notifications. |
| type? | string | The notification delivery channel. |
address?
Type:
string
(optional)
The email address or SNS Topic Amazon Resource Name (ARN), depending on the Type .
status?
Type:
string
(optional)
Indicates if the subscriber accepts the notifications.
type?
Type:
string
(optional)
The notification delivery channel.

.NET
Go
Java
Python
TypeScript