Interface PackageSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PackageSummary.Builder,PackageSummary>,SdkBuilder<PackageSummary.Builder,PackageSummary>,SdkPojo
- Enclosing class:
- PackageSummary
public static interface PackageSummary.Builder extends SdkPojo, CopyableBuilder<PackageSummary.Builder,PackageSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PackageSummary.BuildercreationDate(Instant creationDate)The date that the package was created.PackageSummary.BuilderdefaultVersionName(String defaultVersionName)The name of the default package version.PackageSummary.BuilderlastModifiedDate(Instant lastModifiedDate)The date that the package was last updated.PackageSummary.BuilderpackageName(String packageName)The name for the target software package.-
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
-
packageName
PackageSummary.Builder packageName(String packageName)
The name for the target software package.
- Parameters:
packageName- The name for the target software package.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultVersionName
PackageSummary.Builder defaultVersionName(String defaultVersionName)
The name of the default package version.
- Parameters:
defaultVersionName- The name of the default package version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationDate
PackageSummary.Builder creationDate(Instant creationDate)
The date that the package was created.
- Parameters:
creationDate- The date that the package was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedDate
PackageSummary.Builder lastModifiedDate(Instant lastModifiedDate)
The date that the package was last updated.
- Parameters:
lastModifiedDate- The date that the package was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-