interface SubscriberProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.CE.CfnAnomalySubscription.SubscriberProperty | 
|  Java | software.amazon.awscdk.services.ce.CfnAnomalySubscription.SubscriberProperty | 
|  Python | aws_cdk.aws_ce.CfnAnomalySubscription.SubscriberProperty | 
|  TypeScript | @aws-cdk/aws-ce»CfnAnomalySubscription»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 * as ce from '@aws-cdk/aws-ce';
const subscriberProperty: ce.CfnAnomalySubscription.SubscriberProperty = {
  address: 'address',
  type: 'type',
  // the properties below are optional
  status: 'status',
};
Properties
| Name | Type | Description | 
|---|---|---|
| address | string | The email address or SNS Topic Amazon Resource Name (ARN), depending on the Type. | 
| type | string | The notification delivery channel. | 
| status? | string | Indicates if the subscriber accepts the notifications. | 
address
Type:
string
The email address or SNS Topic Amazon Resource Name (ARN), depending on the Type .
type
Type:
string
The notification delivery channel.
status?
Type:
string
(optional)
Indicates if the subscriber accepts the notifications.
