Interface ListImagesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListImagesResponse.Builder,ListImagesResponse>,ImagebuilderResponse.Builder,SdkBuilder<ListImagesResponse.Builder,ListImagesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListImagesResponse
public static interface ListImagesResponse.Builder extends ImagebuilderResponse.Builder, SdkPojo, CopyableBuilder<ListImagesResponse.Builder,ListImagesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListImagesResponse.BuilderimageVersionList(Collection<ImageVersion> imageVersionList)The list of image semantic versions.ListImagesResponse.BuilderimageVersionList(Consumer<ImageVersion.Builder>... imageVersionList)The list of image semantic versions.ListImagesResponse.BuilderimageVersionList(ImageVersion... imageVersionList)The list of image semantic versions.ListImagesResponse.BuildernextToken(String nextToken)The next token used for paginated responses.ListImagesResponse.BuilderrequestId(String requestIdValue)The request ID that uniquely identifies this request.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.imagebuilder.model.ImagebuilderResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
-
-
-
Method Detail
-
requestId
ListImagesResponse.Builder requestId(String requestIdValue)
The request ID that uniquely identifies this request.
- Parameters:
requestIdValue- The request ID that uniquely identifies this request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageVersionList
ListImagesResponse.Builder imageVersionList(Collection<ImageVersion> imageVersionList)
The list of image semantic versions.
The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them.
Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
- Parameters:
imageVersionList- The list of image semantic versions.The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them.
Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageVersionList
ListImagesResponse.Builder imageVersionList(ImageVersion... imageVersionList)
The list of image semantic versions.
The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them.
Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
- Parameters:
imageVersionList- The list of image semantic versions.The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them.
Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageVersionList
ListImagesResponse.Builder imageVersionList(Consumer<ImageVersion.Builder>... imageVersionList)
The list of image semantic versions.
This is a convenience method that creates an instance of theThe semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them.
Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
ImageVersion.Builderavoiding the need to create one manually viaImageVersion.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#imageVersionList(List.) - Parameters:
imageVersionList- a consumer that will call methods onImageVersion.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#imageVersionList(java.util.Collection)
-
nextToken
ListImagesResponse.Builder nextToken(String nextToken)
The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
- Parameters:
nextToken- The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-