@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:05.236Z") @Stability(value=Stable) public interface CfnBudgetsActionProps 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.budgets.*;
CfnBudgetsActionProps cfnBudgetsActionProps = CfnBudgetsActionProps.builder()
.actionThreshold(ActionThresholdProperty.builder()
.type("type")
.value(123)
.build())
.actionType("actionType")
.budgetName("budgetName")
.definition(DefinitionProperty.builder()
.iamActionDefinition(IamActionDefinitionProperty.builder()
.policyArn("policyArn")
// the properties below are optional
.groups(List.of("groups"))
.roles(List.of("roles"))
.users(List.of("users"))
.build())
.scpActionDefinition(ScpActionDefinitionProperty.builder()
.policyId("policyId")
.targetIds(List.of("targetIds"))
.build())
.ssmActionDefinition(SsmActionDefinitionProperty.builder()
.instanceIds(List.of("instanceIds"))
.region("region")
.subtype("subtype")
.build())
.build())
.executionRoleArn("executionRoleArn")
.notificationType("notificationType")
.subscribers(List.of(SubscriberProperty.builder()
.address("address")
.type("type")
.build()))
// the properties below are optional
.approvalModel("approvalModel")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnBudgetsActionProps.Builder
A builder for
CfnBudgetsActionProps |
static class |
CfnBudgetsActionProps.Jsii$Proxy
An implementation for
CfnBudgetsActionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnBudgetsActionProps.Builder |
builder() |
Object |
getActionThreshold()
`AWS::Budgets::BudgetsAction.ActionThreshold`.
|
String |
getActionType()
`AWS::Budgets::BudgetsAction.ActionType`.
|
default String |
getApprovalModel()
`AWS::Budgets::BudgetsAction.ApprovalModel`.
|
String |
getBudgetName()
`AWS::Budgets::BudgetsAction.BudgetName`.
|
Object |
getDefinition()
`AWS::Budgets::BudgetsAction.Definition`.
|
String |
getExecutionRoleArn()
`AWS::Budgets::BudgetsAction.ExecutionRoleArn`.
|
String |
getNotificationType()
`AWS::Budgets::BudgetsAction.NotificationType`.
|
Object |
getSubscribers()
`AWS::Budgets::BudgetsAction.Subscribers`.
|
@Stability(value=Stable) @NotNull Object getActionThreshold()
@Stability(value=Stable) @NotNull String getActionType()
@Stability(value=Stable) @Nullable default String getApprovalModel()
@Stability(value=Stable) @NotNull String getBudgetName()
@Stability(value=Stable) @NotNull Object getDefinition()
@Stability(value=Stable) @NotNull String getExecutionRoleArn()
@Stability(value=Stable) @NotNull String getNotificationType()
@Stability(value=Stable) @NotNull Object getSubscribers()
@Stability(value=Stable) static CfnBudgetsActionProps.Builder builder()
CfnBudgetsActionProps.Builder of CfnBudgetsActionPropsCopyright © 2021. All rights reserved.