Interface WorkflowVersion.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WorkflowVersion.Builder,WorkflowVersion>,SdkBuilder<WorkflowVersion.Builder,WorkflowVersion>,SdkPojo
- Enclosing class:
- WorkflowVersion
public static interface WorkflowVersion.Builder extends SdkPojo, CopyableBuilder<WorkflowVersion.Builder,WorkflowVersion>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowVersion.Builderarn(String arn)The Amazon Resource Name (ARN) of the workflow resource.WorkflowVersion.BuilderdateCreated(String dateCreated)The timestamp when Image Builder created the workflow version.WorkflowVersion.Builderdescription(String description)Describes the workflow.WorkflowVersion.Buildername(String name)The name of the workflow.WorkflowVersion.Builderowner(String owner)The owner of the workflow resource.WorkflowVersion.Buildertype(String type)The image creation stage that this workflow applies to.WorkflowVersion.Buildertype(WorkflowType type)The image creation stage that this workflow applies to.WorkflowVersion.Builderversion(String version)The semantic version of the workflow resource.-
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
-
arn
WorkflowVersion.Builder arn(String arn)
The Amazon Resource Name (ARN) of the workflow resource.
- Parameters:
arn- The Amazon Resource Name (ARN) of the workflow resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
WorkflowVersion.Builder name(String name)
The name of the workflow.
- Parameters:
name- The name of the workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
WorkflowVersion.Builder version(String version)
The semantic version of the workflow resource. The format includes three nodes: <major>.<minor>.<patch>.
- Parameters:
version- The semantic version of the workflow resource. The format includes three nodes: <major>.<minor>.<patch>.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
WorkflowVersion.Builder description(String description)
Describes the workflow.
- Parameters:
description- Describes the workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
WorkflowVersion.Builder type(String type)
The image creation stage that this workflow applies to. Image Builder currently supports build and test stage workflows.
- Parameters:
type- The image creation stage that this workflow applies to. Image Builder currently supports build and test stage workflows.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorkflowType,WorkflowType
-
type
WorkflowVersion.Builder type(WorkflowType type)
The image creation stage that this workflow applies to. Image Builder currently supports build and test stage workflows.
- Parameters:
type- The image creation stage that this workflow applies to. Image Builder currently supports build and test stage workflows.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorkflowType,WorkflowType
-
owner
WorkflowVersion.Builder owner(String owner)
The owner of the workflow resource.
- Parameters:
owner- The owner of the workflow resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dateCreated
WorkflowVersion.Builder dateCreated(String dateCreated)
The timestamp when Image Builder created the workflow version.
- Parameters:
dateCreated- The timestamp when Image Builder created the workflow version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-