@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:16.198Z") @Stability(value=Stable) public interface CfnAnomalySubscriptionProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ce.*;
CfnAnomalySubscriptionProps cfnAnomalySubscriptionProps = CfnAnomalySubscriptionProps.builder()
.frequency("frequency")
.monitorArnList(List.of("monitorArnList"))
.subscribers(List.of(SubscriberProperty.builder()
.address("address")
.type("type")
// the properties below are optional
.status("status")
.build()))
.subscriptionName("subscriptionName")
.threshold(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAnomalySubscriptionProps.Builder
A builder for
CfnAnomalySubscriptionProps |
static class |
CfnAnomalySubscriptionProps.Jsii$Proxy
An implementation for
CfnAnomalySubscriptionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnAnomalySubscriptionProps.Builder |
builder() |
String |
getFrequency()
`AWS::CE::AnomalySubscription.Frequency`.
|
List<String> |
getMonitorArnList()
`AWS::CE::AnomalySubscription.MonitorArnList`.
|
Object |
getSubscribers()
`AWS::CE::AnomalySubscription.Subscribers`.
|
String |
getSubscriptionName()
`AWS::CE::AnomalySubscription.SubscriptionName`.
|
Number |
getThreshold()
`AWS::CE::AnomalySubscription.Threshold`.
|
@Stability(value=Stable) @NotNull String getFrequency()
@Stability(value=Stable) @NotNull List<String> getMonitorArnList()
@Stability(value=Stable) @NotNull Object getSubscribers()
@Stability(value=Stable) @NotNull String getSubscriptionName()
@Stability(value=Stable) @NotNull Number getThreshold()
@Stability(value=Stable) static CfnAnomalySubscriptionProps.Builder builder()
Copyright © 2021. All rights reserved.