Interface Artifact.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Artifact.Builder,Artifact>,SdkBuilder<Artifact.Builder,Artifact>,SdkPojo
- Enclosing class:
- Artifact
public static interface Artifact.Builder extends SdkPojo, CopyableBuilder<Artifact.Builder,Artifact>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Artifact.BuilderartifactFileName(String artifactFileName)The file name for the artifact.Artifact.BuilderartifactId(String artifactId)The unique ID for the artifact.-
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
-
artifactFileName
Artifact.Builder artifactFileName(String artifactFileName)
The file name for the artifact.
- Parameters:
artifactFileName- The file name for the artifact.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
artifactId
Artifact.Builder artifactId(String artifactId)
The unique ID for the artifact.
- Parameters:
artifactId- The unique ID for the artifact.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-