Interface ListDiscoveredResourcesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ConfigResponse.Builder,CopyableBuilder<ListDiscoveredResourcesResponse.Builder,ListDiscoveredResourcesResponse>,SdkBuilder<ListDiscoveredResourcesResponse.Builder,ListDiscoveredResourcesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListDiscoveredResourcesResponse
public static interface ListDiscoveredResourcesResponse.Builder extends ConfigResponse.Builder, SdkPojo, CopyableBuilder<ListDiscoveredResourcesResponse.Builder,ListDiscoveredResourcesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListDiscoveredResourcesResponse.BuildernextToken(String nextToken)The string that you use in a subsequent request to get the next page of results in a paginated response.ListDiscoveredResourcesResponse.BuilderresourceIdentifiers(Collection<ResourceIdentifier> resourceIdentifiers)The details that identify a resource that is discovered by Config, including the resource type, ID, and (if available) the custom resource name.ListDiscoveredResourcesResponse.BuilderresourceIdentifiers(Consumer<ResourceIdentifier.Builder>... resourceIdentifiers)The details that identify a resource that is discovered by Config, including the resource type, ID, and (if available) the custom resource name.ListDiscoveredResourcesResponse.BuilderresourceIdentifiers(ResourceIdentifier... resourceIdentifiers)The details that identify a resource that is discovered by Config, including the resource type, ID, and (if available) the custom resource name.-
Methods inherited from interface software.amazon.awssdk.services.config.model.ConfigResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
resourceIdentifiers
ListDiscoveredResourcesResponse.Builder resourceIdentifiers(Collection<ResourceIdentifier> resourceIdentifiers)
The details that identify a resource that is discovered by 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 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.
-
resourceIdentifiers
ListDiscoveredResourcesResponse.Builder resourceIdentifiers(ResourceIdentifier... resourceIdentifiers)
The details that identify a resource that is discovered by 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 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.
-
resourceIdentifiers
ListDiscoveredResourcesResponse.Builder resourceIdentifiers(Consumer<ResourceIdentifier.Builder>... resourceIdentifiers)
The details that identify a resource that is discovered by Config, including the resource type, ID, and (if available) the custom resource name.
This is a convenience method that creates an instance of theResourceIdentifier.Builderavoiding the need to create one manually viaResourceIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#resourceIdentifiers(List.) - Parameters:
resourceIdentifiers- a consumer that will call methods onResourceIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#resourceIdentifiers(java.util.Collection)
-
nextToken
ListDiscoveredResourcesResponse.Builder nextToken(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.
-
-