interface SubscriberProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CE.CfnAnomalySubscriptionPropsMixin.SubscriberProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsce#CfnAnomalySubscriptionPropsMixin_SubscriberProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ce.CfnAnomalySubscriptionPropsMixin.SubscriberProperty |
Python | aws_cdk.cfn_property_mixins.aws_ce.CfnAnomalySubscriptionPropsMixin.SubscriberProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ce » 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 { aws_ce as ce } from '@aws-cdk/cfn-property-mixins';
const subscriberProperty: ce.CfnAnomalySubscriptionPropsMixin.SubscriberProperty = {
address: 'address',
status: 'status',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| address? | string | ITopic | 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 | ITopic
(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