public class GetApiKeyResult extends Object implements Serializable, Cloneable
A resource that can be distributed to callers for executing Method resources that require an API key. API keys can be mapped to any Stage on any RestApi, which indicates that the callers with the API key can make requests to that stage.
Constructor and Description |
---|
GetApiKeyResult() |
Modifier and Type | Method and Description |
---|---|
GetApiKeyResult |
clone() |
boolean |
equals(Object obj) |
Date |
getCreatedDate()
The date when the API Key was created, in ISO 8601 format.
|
String |
getDescription()
The description of the API Key.
|
Boolean |
getEnabled()
Specifies whether the API Key can be used by callers.
|
String |
getId()
The identifier of the API Key.
|
Date |
getLastUpdatedDate()
When the API Key was last updated, in ISO 8601 format.
|
String |
getName()
The name of the API Key.
|
List<String> |
getStageKeys()
|
String |
getValue()
The value of the API Key.
|
int |
hashCode() |
Boolean |
isEnabled()
Specifies whether the API Key can be used by callers.
|
void |
setCreatedDate(Date createdDate)
The date when the API Key was created, in ISO 8601 format.
|
void |
setDescription(String description)
The description of the API Key.
|
void |
setEnabled(Boolean enabled)
Specifies whether the API Key can be used by callers.
|
void |
setId(String id)
The identifier of the API Key.
|
void |
setLastUpdatedDate(Date lastUpdatedDate)
When the API Key was last updated, in ISO 8601 format.
|
void |
setName(String name)
The name of the API Key.
|
void |
setStageKeys(Collection<String> stageKeys)
|
void |
setValue(String value)
The value of the API Key.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
GetApiKeyResult |
withCreatedDate(Date createdDate)
The date when the API Key was created, in ISO 8601 format.
|
GetApiKeyResult |
withDescription(String description)
The description of the API Key.
|
GetApiKeyResult |
withEnabled(Boolean enabled)
Specifies whether the API Key can be used by callers.
|
GetApiKeyResult |
withId(String id)
The identifier of the API Key.
|
GetApiKeyResult |
withLastUpdatedDate(Date lastUpdatedDate)
When the API Key was last updated, in ISO 8601 format.
|
GetApiKeyResult |
withName(String name)
The name of the API Key.
|
GetApiKeyResult |
withStageKeys(Collection<String> stageKeys)
|
GetApiKeyResult |
withStageKeys(String... stageKeys)
|
GetApiKeyResult |
withValue(String value)
The value of the API Key.
|
public void setId(String id)
The identifier of the API Key.
id
- The identifier of the API Key.public String getId()
The identifier of the API Key.
public GetApiKeyResult withId(String id)
The identifier of the API Key.
id
- The identifier of the API Key.public void setValue(String value)
The value of the API Key.
value
- The value of the API Key.public String getValue()
The value of the API Key.
public GetApiKeyResult withValue(String value)
The value of the API Key.
value
- The value of the API Key.public void setName(String name)
The name of the API Key.
name
- The name of the API Key.public String getName()
The name of the API Key.
public GetApiKeyResult withName(String name)
The name of the API Key.
name
- The name of the API Key.public void setDescription(String description)
The description of the API Key.
description
- The description of the API Key.public String getDescription()
The description of the API Key.
public GetApiKeyResult withDescription(String description)
The description of the API Key.
description
- The description of the API Key.public void setEnabled(Boolean enabled)
Specifies whether the API Key can be used by callers.
enabled
- Specifies whether the API Key can be used by callers.public Boolean getEnabled()
Specifies whether the API Key can be used by callers.
public GetApiKeyResult withEnabled(Boolean enabled)
Specifies whether the API Key can be used by callers.
enabled
- Specifies whether the API Key can be used by callers.public Boolean isEnabled()
Specifies whether the API Key can be used by callers.
public void setCreatedDate(Date createdDate)
The date when the API Key was created, in ISO 8601 format.
createdDate
- The date when the API Key was created, in ISO 8601 format.public Date getCreatedDate()
The date when the API Key was created, in ISO 8601 format.
public GetApiKeyResult withCreatedDate(Date createdDate)
The date when the API Key was created, in ISO 8601 format.
createdDate
- The date when the API Key was created, in ISO 8601 format.public void setLastUpdatedDate(Date lastUpdatedDate)
When the API Key was last updated, in ISO 8601 format.
lastUpdatedDate
- When the API Key was last updated, in ISO 8601 format.public Date getLastUpdatedDate()
When the API Key was last updated, in ISO 8601 format.
public GetApiKeyResult withLastUpdatedDate(Date lastUpdatedDate)
When the API Key was last updated, in ISO 8601 format.
lastUpdatedDate
- When the API Key was last updated, in ISO 8601 format.public void setStageKeys(Collection<String> stageKeys)
public GetApiKeyResult withStageKeys(String... stageKeys)
A list of Stage resources that are associated with the ApiKey resource.
NOTE: This method appends the values to the existing list (if
any). Use setStageKeys(java.util.Collection)
or
withStageKeys(java.util.Collection)
if you want to override the
existing values.
public GetApiKeyResult withStageKeys(Collection<String> stageKeys)
public String toString()
toString
in class Object
Object.toString()
public GetApiKeyResult clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.