Interface ListSigningProfilesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListSigningProfilesResponse.Builder,ListSigningProfilesResponse>,SdkBuilder<ListSigningProfilesResponse.Builder,ListSigningProfilesResponse>,SdkPojo,SdkResponse.Builder,SignerResponse.Builder
- Enclosing class:
- ListSigningProfilesResponse
public static interface ListSigningProfilesResponse.Builder extends SignerResponse.Builder, SdkPojo, CopyableBuilder<ListSigningProfilesResponse.Builder,ListSigningProfilesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListSigningProfilesResponse.BuildernextToken(String nextToken)Value for specifying the next set of paginated results to return.ListSigningProfilesResponse.Builderprofiles(Collection<SigningProfile> profiles)A list of profiles that are available in the AWS account.ListSigningProfilesResponse.Builderprofiles(Consumer<SigningProfile.Builder>... profiles)A list of profiles that are available in the AWS account.ListSigningProfilesResponse.Builderprofiles(SigningProfile... profiles)A list of profiles that are available in the AWS account.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.signer.model.SignerResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
profiles
ListSigningProfilesResponse.Builder profiles(Collection<SigningProfile> profiles)
A list of profiles that are available in the AWS account. This includes profiles with the status of
CANCELEDif theincludeCanceledparameter is set totrue.- Parameters:
profiles- A list of profiles that are available in the AWS account. This includes profiles with the status ofCANCELEDif theincludeCanceledparameter is set totrue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profiles
ListSigningProfilesResponse.Builder profiles(SigningProfile... profiles)
A list of profiles that are available in the AWS account. This includes profiles with the status of
CANCELEDif theincludeCanceledparameter is set totrue.- Parameters:
profiles- A list of profiles that are available in the AWS account. This includes profiles with the status ofCANCELEDif theincludeCanceledparameter is set totrue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profiles
ListSigningProfilesResponse.Builder profiles(Consumer<SigningProfile.Builder>... profiles)
A list of profiles that are available in the AWS account. This includes profiles with the status of
This is a convenience method that creates an instance of theCANCELEDif theincludeCanceledparameter is set totrue.SigningProfile.Builderavoiding the need to create one manually viaSigningProfile.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#profiles(List.) - Parameters:
profiles- a consumer that will call methods onSigningProfile.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#profiles(java.util.Collection)
-
nextToken
ListSigningProfilesResponse.Builder nextToken(String nextToken)
Value for specifying the next set of paginated results to return.
- Parameters:
nextToken- Value for specifying the next set of paginated results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-