Interface CreateCustomActionTypeResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodePipelineResponse.Builder,CopyableBuilder<CreateCustomActionTypeResponse.Builder,CreateCustomActionTypeResponse>,SdkBuilder<CreateCustomActionTypeResponse.Builder,CreateCustomActionTypeResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateCustomActionTypeResponse
public static interface CreateCustomActionTypeResponse.Builder extends CodePipelineResponse.Builder, SdkPojo, CopyableBuilder<CreateCustomActionTypeResponse.Builder,CreateCustomActionTypeResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CreateCustomActionTypeResponse.BuilderactionType(Consumer<ActionType.Builder> actionType)Returns information about the details of an action type.CreateCustomActionTypeResponse.BuilderactionType(ActionType actionType)Returns information about the details of an action type.CreateCustomActionTypeResponse.Buildertags(Collection<Tag> tags)Specifies the tags applied to the custom action.CreateCustomActionTypeResponse.Buildertags(Consumer<Tag.Builder>... tags)Specifies the tags applied to the custom action.CreateCustomActionTypeResponse.Buildertags(Tag... tags)Specifies the tags applied to the custom action.-
Methods inherited from interface software.amazon.awssdk.services.codepipeline.model.CodePipelineResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
actionType
CreateCustomActionTypeResponse.Builder actionType(ActionType actionType)
Returns information about the details of an action type.
- Parameters:
actionType- Returns information about the details of an action type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionType
default CreateCustomActionTypeResponse.Builder actionType(Consumer<ActionType.Builder> actionType)
Returns information about the details of an action type.
This is a convenience method that creates an instance of theActionType.Builderavoiding the need to create one manually viaActionType.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toactionType(ActionType).- Parameters:
actionType- a consumer that will call methods onActionType.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
actionType(ActionType)
-
tags
CreateCustomActionTypeResponse.Builder tags(Collection<Tag> tags)
Specifies the tags applied to the custom action.
- Parameters:
tags- Specifies the tags applied to the custom action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateCustomActionTypeResponse.Builder tags(Tag... tags)
Specifies the tags applied to the custom action.
- Parameters:
tags- Specifies the tags applied to the custom action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateCustomActionTypeResponse.Builder tags(Consumer<Tag.Builder>... tags)
Specifies the tags applied to the custom action.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
-