Class ListDiscoveredResourcesResult
- java.lang.Object
-
- com.amazonaws.services.config.model.ListDiscoveredResourcesResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ListDiscoveredResourcesResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListDiscoveredResourcesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListDiscoveredResourcesResult
clone()
boolean
equals(Object obj)
String
getNextToken()
The string that you use in a subsequent request to get the next page of results in a paginated response.List<ResourceIdentifier>
getResourceIdentifiers()
The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.int
hashCode()
void
setNextToken(String nextToken)
The string that you use in a subsequent request to get the next page of results in a paginated response.void
setResourceIdentifiers(Collection<ResourceIdentifier> resourceIdentifiers)
The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.String
toString()
Returns a string representation of this object; useful for testing and debugging.ListDiscoveredResourcesResult
withNextToken(String nextToken)
The string that you use in a subsequent request to get the next page of results in a paginated response.ListDiscoveredResourcesResult
withResourceIdentifiers(ResourceIdentifier... resourceIdentifiers)
The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.ListDiscoveredResourcesResult
withResourceIdentifiers(Collection<ResourceIdentifier> resourceIdentifiers)
The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.
-
-
-
Method Detail
-
getResourceIdentifiers
public List<ResourceIdentifier> getResourceIdentifiers()
The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.
- Returns:
- The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.
-
setResourceIdentifiers
public void setResourceIdentifiers(Collection<ResourceIdentifier> resourceIdentifiers)
The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.
- Parameters:
resourceIdentifiers
- The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.
-
withResourceIdentifiers
public ListDiscoveredResourcesResult withResourceIdentifiers(ResourceIdentifier... resourceIdentifiers)
The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.
NOTE: This method appends the values to the existing list (if any). Use
setResourceIdentifiers(java.util.Collection)
orwithResourceIdentifiers(java.util.Collection)
if you want to override the existing values.- Parameters:
resourceIdentifiers
- The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withResourceIdentifiers
public ListDiscoveredResourcesResult withResourceIdentifiers(Collection<ResourceIdentifier> resourceIdentifiers)
The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.
- Parameters:
resourceIdentifiers
- The details that identify a resource that is discovered by AWS Config, including the resource type, ID, and (if available) the custom resource name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextToken
public void setNextToken(String nextToken)
The string that you use in a subsequent request to get the next page of results in a paginated response.
- Parameters:
nextToken
- The string that you use in a subsequent request to get the next page of results in a paginated response.
-
getNextToken
public String getNextToken()
The string that you use in a subsequent request to get the next page of results in a paginated response.
- Returns:
- The string that you use in a subsequent request to get the next page of results in a paginated response.
-
withNextToken
public ListDiscoveredResourcesResult withNextToken(String nextToken)
The string that you use in a subsequent request to get the next page of results in a paginated response.
- Parameters:
nextToken
- The string that you use in a subsequent request to get the next page of results in a paginated response.- 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 ListDiscoveredResourcesResult clone()
-
-