@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class ListSecretsRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
NOOP
Constructor and Description |
---|
ListSecretsRequest() |
Modifier and Type | Method and Description |
---|---|
ListSecretsRequest |
clone()
Creates a shallow clone of this object for all fields except the handler context.
|
boolean |
equals(Object obj) |
List<Filter> |
getFilters()
The filters to apply to the list of secrets.
|
Boolean |
getIncludePlannedDeletion()
Specifies whether to include secrets scheduled for deletion.
|
Integer |
getMaxResults()
The number of results to include in the response.
|
String |
getNextToken()
A token that indicates where the output should continue from, if a previous call did not show all results.
|
String |
getSortOrder()
Secrets are listed by
CreatedDate . |
int |
hashCode() |
Boolean |
isIncludePlannedDeletion()
Specifies whether to include secrets scheduled for deletion.
|
void |
setFilters(Collection<Filter> filters)
The filters to apply to the list of secrets.
|
void |
setIncludePlannedDeletion(Boolean includePlannedDeletion)
Specifies whether to include secrets scheduled for deletion.
|
void |
setMaxResults(Integer maxResults)
The number of results to include in the response.
|
void |
setNextToken(String nextToken)
A token that indicates where the output should continue from, if a previous call did not show all results.
|
void |
setSortOrder(String sortOrder)
Secrets are listed by
CreatedDate . |
String |
toString()
Returns a string representation of this object.
|
ListSecretsRequest |
withFilters(Collection<Filter> filters)
The filters to apply to the list of secrets.
|
ListSecretsRequest |
withFilters(Filter... filters)
The filters to apply to the list of secrets.
|
ListSecretsRequest |
withIncludePlannedDeletion(Boolean includePlannedDeletion)
Specifies whether to include secrets scheduled for deletion.
|
ListSecretsRequest |
withMaxResults(Integer maxResults)
The number of results to include in the response.
|
ListSecretsRequest |
withNextToken(String nextToken)
A token that indicates where the output should continue from, if a previous call did not show all results.
|
ListSecretsRequest |
withSortOrder(SortOrderType sortOrder)
Secrets are listed by
CreatedDate . |
ListSecretsRequest |
withSortOrder(String sortOrder)
Secrets are listed by
CreatedDate . |
addHandlerContext, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getHandlerContext, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestCredentialsProvider, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
public void setIncludePlannedDeletion(Boolean includePlannedDeletion)
Specifies whether to include secrets scheduled for deletion. By default, secrets scheduled for deletion aren't included.
includePlannedDeletion
- Specifies whether to include secrets scheduled for deletion. By default, secrets scheduled for deletion
aren't included.public Boolean getIncludePlannedDeletion()
Specifies whether to include secrets scheduled for deletion. By default, secrets scheduled for deletion aren't included.
public ListSecretsRequest withIncludePlannedDeletion(Boolean includePlannedDeletion)
Specifies whether to include secrets scheduled for deletion. By default, secrets scheduled for deletion aren't included.
includePlannedDeletion
- Specifies whether to include secrets scheduled for deletion. By default, secrets scheduled for deletion
aren't included.public Boolean isIncludePlannedDeletion()
Specifies whether to include secrets scheduled for deletion. By default, secrets scheduled for deletion aren't included.
public void setMaxResults(Integer maxResults)
The number of results to include in the response.
If there are more results available, in the response, Secrets Manager includes NextToken
. To get the
next results, call ListSecrets
again with the value from NextToken
.
maxResults
- The number of results to include in the response.
If there are more results available, in the response, Secrets Manager includes NextToken
. To
get the next results, call ListSecrets
again with the value from NextToken
.
public Integer getMaxResults()
The number of results to include in the response.
If there are more results available, in the response, Secrets Manager includes NextToken
. To get the
next results, call ListSecrets
again with the value from NextToken
.
If there are more results available, in the response, Secrets Manager includes NextToken
. To
get the next results, call ListSecrets
again with the value from NextToken
.
public ListSecretsRequest withMaxResults(Integer maxResults)
The number of results to include in the response.
If there are more results available, in the response, Secrets Manager includes NextToken
. To get the
next results, call ListSecrets
again with the value from NextToken
.
maxResults
- The number of results to include in the response.
If there are more results available, in the response, Secrets Manager includes NextToken
. To
get the next results, call ListSecrets
again with the value from NextToken
.
public void setNextToken(String nextToken)
A token that indicates where the output should continue from, if a previous call did not show all results. To get
the next results, call ListSecrets
again with this value.
nextToken
- A token that indicates where the output should continue from, if a previous call did not show all results.
To get the next results, call ListSecrets
again with this value.public String getNextToken()
A token that indicates where the output should continue from, if a previous call did not show all results. To get
the next results, call ListSecrets
again with this value.
ListSecrets
again with this value.public ListSecretsRequest withNextToken(String nextToken)
A token that indicates where the output should continue from, if a previous call did not show all results. To get
the next results, call ListSecrets
again with this value.
nextToken
- A token that indicates where the output should continue from, if a previous call did not show all results.
To get the next results, call ListSecrets
again with this value.public List<Filter> getFilters()
The filters to apply to the list of secrets.
public void setFilters(Collection<Filter> filters)
The filters to apply to the list of secrets.
filters
- The filters to apply to the list of secrets.public ListSecretsRequest withFilters(Filter... filters)
The filters to apply to the list of secrets.
NOTE: This method appends the values to the existing list (if any). Use
setFilters(java.util.Collection)
or withFilters(java.util.Collection)
if you want to override
the existing values.
filters
- The filters to apply to the list of secrets.public ListSecretsRequest withFilters(Collection<Filter> filters)
The filters to apply to the list of secrets.
filters
- The filters to apply to the list of secrets.public void setSortOrder(String sortOrder)
Secrets are listed by CreatedDate
.
sortOrder
- Secrets are listed by CreatedDate
.SortOrderType
public String getSortOrder()
Secrets are listed by CreatedDate
.
CreatedDate
.SortOrderType
public ListSecretsRequest withSortOrder(String sortOrder)
Secrets are listed by CreatedDate
.
sortOrder
- Secrets are listed by CreatedDate
.SortOrderType
public ListSecretsRequest withSortOrder(SortOrderType sortOrder)
Secrets are listed by CreatedDate
.
sortOrder
- Secrets are listed by CreatedDate
.SortOrderType
public String toString()
toString
in class Object
Object.toString()
public ListSecretsRequest clone()
AmazonWebServiceRequest
clone
in class AmazonWebServiceRequest
Object.clone()