Interface ActionSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ActionSummary.Builder,ActionSummary>,SdkBuilder<ActionSummary.Builder,ActionSummary>,SdkPojo
- Enclosing class:
- ActionSummary
public static interface ActionSummary.Builder extends SdkPojo, CopyableBuilder<ActionSummary.Builder,ActionSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActionSummary.Builderdescription(String description)The description for the action.ActionSummary.Builderid(String id)The ID of the action.ActionSummary.Buildertags(Map<String,String> tags)The tags for the action.ActionSummary.Buildertargets(Map<String,ActionTarget> targets)The targets for the action.-
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, sdkFields
-
-
-
-
Method Detail
-
id
ActionSummary.Builder id(String id)
The ID of the action.
- Parameters:
id- The ID of the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
ActionSummary.Builder description(String description)
The description for the action.
- Parameters:
description- The description for the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targets
ActionSummary.Builder targets(Map<String,ActionTarget> targets)
The targets for the action.
- Parameters:
targets- The targets for the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ActionSummary.Builder tags(Map<String,String> tags)
The tags for the action.
- Parameters:
tags- The tags for the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-