Interface EventType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EventType.Builder,EventType>,SdkBuilder<EventType.Builder,EventType>,SdkPojo
- Enclosing class:
- EventType
public static interface EventType.Builder extends SdkPojo, CopyableBuilder<EventType.Builder,EventType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventType.Buildercategory(String category)A list of event type category codes.EventType.Buildercategory(EventTypeCategory category)A list of event type category codes.EventType.Buildercode(String code)The unique identifier for the event type.EventType.Builderservice(String service)The Amazon Web Services service that is affected by the event.-
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
-
service
EventType.Builder service(String service)
The Amazon Web Services service that is affected by the event. For example,
EC2,RDS.- Parameters:
service- The Amazon Web Services service that is affected by the event. For example,EC2,RDS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
code
EventType.Builder code(String code)
The unique identifier for the event type. The format is
AWS_SERVICE_DESCRIPTION; for example,AWS_EC2_SYSTEM_MAINTENANCE_EVENT.- Parameters:
code- The unique identifier for the event type. The format isAWS_SERVICE_DESCRIPTION; for example,AWS_EC2_SYSTEM_MAINTENANCE_EVENT.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
category
EventType.Builder category(String category)
A list of event type category codes. Possible values are
issue,accountNotification, orscheduledChange. Currently, theinvestigationvalue isn't supported at this time.- Parameters:
category- A list of event type category codes. Possible values areissue,accountNotification, orscheduledChange. Currently, theinvestigationvalue isn't supported at this time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EventTypeCategory,EventTypeCategory
-
category
EventType.Builder category(EventTypeCategory category)
A list of event type category codes. Possible values are
issue,accountNotification, orscheduledChange. Currently, theinvestigationvalue isn't supported at this time.- Parameters:
category- A list of event type category codes. Possible values areissue,accountNotification, orscheduledChange. Currently, theinvestigationvalue isn't supported at this time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EventTypeCategory,EventTypeCategory
-
-