Class GetAuthorizationTokenRequest
- java.lang.Object
-
- com.amazonaws.AmazonWebServiceRequest
-
- com.amazonaws.services.ecr.model.GetAuthorizationTokenRequest
-
- All Implemented Interfaces:
ReadLimitInfo
,Serializable
,Cloneable
public class GetAuthorizationTokenRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.amazonaws.AmazonWebServiceRequest
NOOP
-
-
Constructor Summary
Constructors Constructor Description GetAuthorizationTokenRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetAuthorizationTokenRequest
clone()
Creates a shallow clone of this request.boolean
equals(Object obj)
List<String>
getRegistryIds()
A list of AWS account IDs that are associated with the registries for which to get authorization tokens.int
hashCode()
void
setRegistryIds(Collection<String> registryIds)
A list of AWS account IDs that are associated with the registries for which to get authorization tokens.String
toString()
Returns a string representation of this object; useful for testing and debugging.GetAuthorizationTokenRequest
withRegistryIds(String... registryIds)
A list of AWS account IDs that are associated with the registries for which to get authorization tokens.GetAuthorizationTokenRequest
withRegistryIds(Collection<String> registryIds)
A list of AWS account IDs that are associated with the registries for which to get authorization tokens.-
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyBaseTo, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
-
-
-
-
Method Detail
-
getRegistryIds
public List<String> getRegistryIds()
A list of AWS account IDs that are associated with the registries for which to get authorization tokens. If you do not specify a registry, the default registry is assumed.
- Returns:
- A list of AWS account IDs that are associated with the registries for which to get authorization tokens. If you do not specify a registry, the default registry is assumed.
-
setRegistryIds
public void setRegistryIds(Collection<String> registryIds)
A list of AWS account IDs that are associated with the registries for which to get authorization tokens. If you do not specify a registry, the default registry is assumed.
- Parameters:
registryIds
- A list of AWS account IDs that are associated with the registries for which to get authorization tokens. If you do not specify a registry, the default registry is assumed.
-
withRegistryIds
public GetAuthorizationTokenRequest withRegistryIds(String... registryIds)
A list of AWS account IDs that are associated with the registries for which to get authorization tokens. If you do not specify a registry, the default registry is assumed.
NOTE: This method appends the values to the existing list (if any). Use
setRegistryIds(java.util.Collection)
orwithRegistryIds(java.util.Collection)
if you want to override the existing values.- Parameters:
registryIds
- A list of AWS account IDs that are associated with the registries for which to get authorization tokens. If you do not specify a registry, the default registry is assumed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withRegistryIds
public GetAuthorizationTokenRequest withRegistryIds(Collection<String> registryIds)
A list of AWS account IDs that are associated with the registries for which to get authorization tokens. If you do not specify a registry, the default registry is assumed.
- Parameters:
registryIds
- A list of AWS account IDs that are associated with the registries for which to get authorization tokens. If you do not specify a registry, the default registry is assumed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public GetAuthorizationTokenRequest clone()
Description copied from class:AmazonWebServiceRequest
Creates a shallow clone of this request. Explicitly does not clone the deep structure of the request object.- Overrides:
clone
in classAmazonWebServiceRequest
- See Also:
Object.clone()
-
-