Interface NotificationConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NotificationConfiguration.Builder,NotificationConfiguration>,SdkBuilder<NotificationConfiguration.Builder,NotificationConfiguration>,SdkPojo
- Enclosing class:
- NotificationConfiguration
public static interface NotificationConfiguration.Builder extends SdkPojo, CopyableBuilder<NotificationConfiguration.Builder,NotificationConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NotificationConfiguration.BuilderautoScalingGroupName(String autoScalingGroupName)The name of the Auto Scaling group.NotificationConfiguration.BuildernotificationType(String notificationType)One of the following event notification types:NotificationConfiguration.BuildertopicARN(String topicARN)The Amazon Resource Name (ARN) of the Amazon SNS topic.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
autoScalingGroupName
NotificationConfiguration.Builder autoScalingGroupName(String autoScalingGroupName)
The name of the Auto Scaling group.
- Parameters:
autoScalingGroupName- The name of the Auto Scaling group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topicARN
NotificationConfiguration.Builder topicARN(String topicARN)
The Amazon Resource Name (ARN) of the Amazon SNS topic.
- Parameters:
topicARN- The Amazon Resource Name (ARN) of the Amazon SNS topic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
notificationType
NotificationConfiguration.Builder notificationType(String notificationType)
One of the following event notification types:
-
autoscaling:EC2_INSTANCE_LAUNCH -
autoscaling:EC2_INSTANCE_LAUNCH_ERROR -
autoscaling:EC2_INSTANCE_TERMINATE -
autoscaling:EC2_INSTANCE_TERMINATE_ERROR -
autoscaling:TEST_NOTIFICATION
- Parameters:
notificationType- One of the following event notification types:-
autoscaling:EC2_INSTANCE_LAUNCH -
autoscaling:EC2_INSTANCE_LAUNCH_ERROR -
autoscaling:EC2_INSTANCE_TERMINATE -
autoscaling:EC2_INSTANCE_TERMINATE_ERROR -
autoscaling:TEST_NOTIFICATION
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-