Interface GetAuthorizationTokenResponse.Builder
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<GetAuthorizationTokenResponse.Builder,
,GetAuthorizationTokenResponse> EcrResponse.Builder
,SdkBuilder<GetAuthorizationTokenResponse.Builder,
,GetAuthorizationTokenResponse> SdkPojo
,SdkResponse.Builder
- Enclosing class:
GetAuthorizationTokenResponse
-
Method Summary
Modifier and TypeMethodDescriptionauthorizationData
(Collection<AuthorizationData> authorizationData) A list of authorization token data objects that correspond to theregistryIds
values in the request.authorizationData
(Consumer<AuthorizationData.Builder>... authorizationData) A list of authorization token data objects that correspond to theregistryIds
values in the request.authorizationData
(AuthorizationData... authorizationData) A list of authorization token data objects that correspond to theregistryIds
values in the request.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.ecr.model.EcrResponse.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, sdkFieldNameToField, sdkFields
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Method Details
-
authorizationData
GetAuthorizationTokenResponse.Builder authorizationData(Collection<AuthorizationData> authorizationData) A list of authorization token data objects that correspond to the
registryIds
values in the request.The size of the authorization token returned by Amazon ECR is not fixed. We recommend that you don't make assumptions about the maximum size.
- Parameters:
authorizationData
- A list of authorization token data objects that correspond to theregistryIds
values in the request.The size of the authorization token returned by Amazon ECR is not fixed. We recommend that you don't make assumptions about the maximum size.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authorizationData
A list of authorization token data objects that correspond to the
registryIds
values in the request.The size of the authorization token returned by Amazon ECR is not fixed. We recommend that you don't make assumptions about the maximum size.
- Parameters:
authorizationData
- A list of authorization token data objects that correspond to theregistryIds
values in the request.The size of the authorization token returned by Amazon ECR is not fixed. We recommend that you don't make assumptions about the maximum size.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authorizationData
GetAuthorizationTokenResponse.Builder authorizationData(Consumer<AuthorizationData.Builder>... authorizationData) A list of authorization token data objects that correspond to the
registryIds
values in the request.The size of the authorization token returned by Amazon ECR is not fixed. We recommend that you don't make assumptions about the maximum size.
AuthorizationData.Builder
avoiding the need to create one manually viaAuthorizationData.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toauthorizationData(List<AuthorizationData>)
.- Parameters:
authorizationData
- a consumer that will call methods onAuthorizationData.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-