public class AuthorizationData extends Object implements Serializable, Cloneable
An object representing authorization data for an Amazon ECR registry.
Constructor and Description |
---|
AuthorizationData() |
Modifier and Type | Method and Description |
---|---|
AuthorizationData |
clone() |
boolean |
equals(Object obj) |
String |
getAuthorizationToken()
A base64-encoded string that contains authorization data for the
specified Amazon ECR registry.
|
Date |
getExpiresAt()
The Unix time in seconds and milliseconds when the authorization token
expires.
|
String |
getProxyEndpoint()
The registry URL to use for this authorization token in a
docker login command. |
int |
hashCode() |
void |
setAuthorizationToken(String authorizationToken)
A base64-encoded string that contains authorization data for the
specified Amazon ECR registry.
|
void |
setExpiresAt(Date expiresAt)
The Unix time in seconds and milliseconds when the authorization token
expires.
|
void |
setProxyEndpoint(String proxyEndpoint)
The registry URL to use for this authorization token in a
docker login command. |
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
AuthorizationData |
withAuthorizationToken(String authorizationToken)
A base64-encoded string that contains authorization data for the
specified Amazon ECR registry.
|
AuthorizationData |
withExpiresAt(Date expiresAt)
The Unix time in seconds and milliseconds when the authorization token
expires.
|
AuthorizationData |
withProxyEndpoint(String proxyEndpoint)
The registry URL to use for this authorization token in a
docker login command. |
public void setAuthorizationToken(String authorizationToken)
A base64-encoded string that contains authorization data for the
specified Amazon ECR registry. When the string is decoded, it is
presented in the format user:password
for private registry
authentication using docker login
.
authorizationToken
- A base64-encoded string that contains authorization data for the
specified Amazon ECR registry. When the string is decoded, it is
presented in the format user:password
for private
registry authentication using docker login
.public String getAuthorizationToken()
A base64-encoded string that contains authorization data for the
specified Amazon ECR registry. When the string is decoded, it is
presented in the format user:password
for private registry
authentication using docker login
.
user:password
for private
registry authentication using docker login
.public AuthorizationData withAuthorizationToken(String authorizationToken)
A base64-encoded string that contains authorization data for the
specified Amazon ECR registry. When the string is decoded, it is
presented in the format user:password
for private registry
authentication using docker login
.
authorizationToken
- A base64-encoded string that contains authorization data for the
specified Amazon ECR registry. When the string is decoded, it is
presented in the format user:password
for private
registry authentication using docker login
.public void setExpiresAt(Date expiresAt)
The Unix time in seconds and milliseconds when the authorization token expires. Authorization tokens are valid for 12 hours.
expiresAt
- The Unix time in seconds and milliseconds when the authorization
token expires. Authorization tokens are valid for 12 hours.public Date getExpiresAt()
The Unix time in seconds and milliseconds when the authorization token expires. Authorization tokens are valid for 12 hours.
public AuthorizationData withExpiresAt(Date expiresAt)
The Unix time in seconds and milliseconds when the authorization token expires. Authorization tokens are valid for 12 hours.
expiresAt
- The Unix time in seconds and milliseconds when the authorization
token expires. Authorization tokens are valid for 12 hours.public void setProxyEndpoint(String proxyEndpoint)
The registry URL to use for this authorization token in a
docker login
command. The Amazon ECR registry URL format is
https://aws_account_id.dkr.ecr.region.amazonaws.com
. For
example,
https://012345678910.dkr.ecr.us-east-1.amazonaws.com
..
proxyEndpoint
- The registry URL to use for this authorization token in a
docker login
command. The Amazon ECR registry URL
format is
https://aws_account_id.dkr.ecr.region.amazonaws.com
.
For example,
https://012345678910.dkr.ecr.us-east-1.amazonaws.com
..public String getProxyEndpoint()
The registry URL to use for this authorization token in a
docker login
command. The Amazon ECR registry URL format is
https://aws_account_id.dkr.ecr.region.amazonaws.com
. For
example,
https://012345678910.dkr.ecr.us-east-1.amazonaws.com
..
docker login
command. The Amazon ECR registry URL
format is
https://aws_account_id.dkr.ecr.region.amazonaws.com
.
For example,
https://012345678910.dkr.ecr.us-east-1.amazonaws.com
..public AuthorizationData withProxyEndpoint(String proxyEndpoint)
The registry URL to use for this authorization token in a
docker login
command. The Amazon ECR registry URL format is
https://aws_account_id.dkr.ecr.region.amazonaws.com
. For
example,
https://012345678910.dkr.ecr.us-east-1.amazonaws.com
..
proxyEndpoint
- The registry URL to use for this authorization token in a
docker login
command. The Amazon ECR registry URL
format is
https://aws_account_id.dkr.ecr.region.amazonaws.com
.
For example,
https://012345678910.dkr.ecr.us-east-1.amazonaws.com
..public String toString()
toString
in class Object
Object.toString()
public AuthorizationData clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.