Interface ActionTypeIdentifier.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ActionTypeIdentifier.Builder,ActionTypeIdentifier>,SdkBuilder<ActionTypeIdentifier.Builder,ActionTypeIdentifier>,SdkPojo
- Enclosing class:
- ActionTypeIdentifier
public static interface ActionTypeIdentifier.Builder extends SdkPojo, CopyableBuilder<ActionTypeIdentifier.Builder,ActionTypeIdentifier>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActionTypeIdentifier.Buildercategory(String category)Defines what kind of action can be taken in the stage, one of the following:ActionTypeIdentifier.Buildercategory(ActionCategory category)Defines what kind of action can be taken in the stage, one of the following:ActionTypeIdentifier.Builderowner(String owner)The creator of the action type being called:AWSorThirdParty.ActionTypeIdentifier.Builderprovider(String provider)The provider of the action type being called.ActionTypeIdentifier.Builderversion(String version)A string that describes the action type version.-
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
-
category
ActionTypeIdentifier.Builder category(String category)
Defines what kind of action can be taken in the stage, one of the following:
-
Source -
Build -
Test -
Deploy -
Approval -
Invoke
- Parameters:
category- Defines what kind of action can be taken in the stage, one of the following:-
Source -
Build -
Test -
Deploy -
Approval -
Invoke
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionCategory,ActionCategory
-
-
category
ActionTypeIdentifier.Builder category(ActionCategory category)
Defines what kind of action can be taken in the stage, one of the following:
-
Source -
Build -
Test -
Deploy -
Approval -
Invoke
- Parameters:
category- Defines what kind of action can be taken in the stage, one of the following:-
Source -
Build -
Test -
Deploy -
Approval -
Invoke
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionCategory,ActionCategory
-
-
owner
ActionTypeIdentifier.Builder owner(String owner)
The creator of the action type being called:
AWSorThirdParty.- Parameters:
owner- The creator of the action type being called:AWSorThirdParty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
provider
ActionTypeIdentifier.Builder provider(String provider)
The provider of the action type being called. The provider name is supplied when the action type is created.
- Parameters:
provider- The provider of the action type being called. The provider name is supplied when the action type is created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
ActionTypeIdentifier.Builder version(String version)
A string that describes the action type version.
- Parameters:
version- A string that describes the action type version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-