Interface PackageGroupSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PackageGroupSummary.Builder,PackageGroupSummary>,SdkBuilder<PackageGroupSummary.Builder,PackageGroupSummary>,SdkPojo
- Enclosing class:
- PackageGroupSummary
public static interface PackageGroupSummary.Builder extends SdkPojo, CopyableBuilder<PackageGroupSummary.Builder,PackageGroupSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PackageGroupSummary.Builderarn(String arn)The ARN of the package group.PackageGroupSummary.BuildercontactInfo(String contactInfo)The contact information of the package group.PackageGroupSummary.BuildercreatedTime(Instant createdTime)A timestamp that represents the date and time the repository was created.PackageGroupSummary.Builderdescription(String description)The description of the package group.PackageGroupSummary.BuilderdomainName(String domainName)The domain that contains the package group.PackageGroupSummary.BuilderdomainOwner(String domainOwner)The 12-digit account number of the Amazon Web Services account that owns the domain.default PackageGroupSummary.BuilderoriginConfiguration(Consumer<PackageGroupOriginConfiguration.Builder> originConfiguration)Details about the package origin configuration of a package group.PackageGroupSummary.BuilderoriginConfiguration(PackageGroupOriginConfiguration originConfiguration)Details about the package origin configuration of a package group.default PackageGroupSummary.Builderparent(Consumer<PackageGroupReference.Builder> parent)The direct parent package group of the package group.PackageGroupSummary.Builderparent(PackageGroupReference parent)The direct parent package group of the package group.PackageGroupSummary.Builderpattern(String pattern)The pattern of the package group.-
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
-
arn
PackageGroupSummary.Builder arn(String arn)
The ARN of the package group.
- Parameters:
arn- The ARN of the package group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pattern
PackageGroupSummary.Builder pattern(String pattern)
The pattern of the package group. The pattern determines which packages are associated with the package group.
- Parameters:
pattern- The pattern of the package group. The pattern determines which packages are associated with the package group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainName
PackageGroupSummary.Builder domainName(String domainName)
The domain that contains the package group.
- Parameters:
domainName- The domain that contains the package group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainOwner
PackageGroupSummary.Builder domainOwner(String domainOwner)
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
- Parameters:
domainOwner- The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdTime
PackageGroupSummary.Builder createdTime(Instant createdTime)
A timestamp that represents the date and time the repository was created.
- Parameters:
createdTime- A timestamp that represents the date and time the repository was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contactInfo
PackageGroupSummary.Builder contactInfo(String contactInfo)
The contact information of the package group.
- Parameters:
contactInfo- The contact information of the package group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
PackageGroupSummary.Builder description(String description)
The description of the package group.
- Parameters:
description- The description of the package group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
originConfiguration
PackageGroupSummary.Builder originConfiguration(PackageGroupOriginConfiguration originConfiguration)
Details about the package origin configuration of a package group.
- Parameters:
originConfiguration- Details about the package origin configuration of a package group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
originConfiguration
default PackageGroupSummary.Builder originConfiguration(Consumer<PackageGroupOriginConfiguration.Builder> originConfiguration)
Details about the package origin configuration of a package group.
This is a convenience method that creates an instance of thePackageGroupOriginConfiguration.Builderavoiding the need to create one manually viaPackageGroupOriginConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooriginConfiguration(PackageGroupOriginConfiguration).- Parameters:
originConfiguration- a consumer that will call methods onPackageGroupOriginConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
originConfiguration(PackageGroupOriginConfiguration)
-
parent
PackageGroupSummary.Builder parent(PackageGroupReference parent)
The direct parent package group of the package group.
- Parameters:
parent- The direct parent package group of the package group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parent
default PackageGroupSummary.Builder parent(Consumer<PackageGroupReference.Builder> parent)
The direct parent package group of the package group.
This is a convenience method that creates an instance of thePackageGroupReference.Builderavoiding the need to create one manually viaPackageGroupReference.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toparent(PackageGroupReference).- Parameters:
parent- a consumer that will call methods onPackageGroupReference.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
parent(PackageGroupReference)
-
-