Interface ListDiscoveredResourcesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,ConfigRequest.Builder,CopyableBuilder<ListDiscoveredResourcesRequest.Builder,ListDiscoveredResourcesRequest>,SdkBuilder<ListDiscoveredResourcesRequest.Builder,ListDiscoveredResourcesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListDiscoveredResourcesRequest
public static interface ListDiscoveredResourcesRequest.Builder extends ConfigRequest.Builder, SdkPojo, CopyableBuilder<ListDiscoveredResourcesRequest.Builder,ListDiscoveredResourcesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListDiscoveredResourcesRequest.BuilderincludeDeletedResources(Boolean includeDeletedResources)Specifies whether Config includes deleted resources in the results.ListDiscoveredResourcesRequest.Builderlimit(Integer limit)The maximum number of resource identifiers returned on each page.ListDiscoveredResourcesRequest.BuildernextToken(String nextToken)ThenextTokenstring returned on a previous page that you use to get the next page of results in a paginated response.ListDiscoveredResourcesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListDiscoveredResourcesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListDiscoveredResourcesRequest.BuilderresourceIds(String... resourceIds)The IDs of only those resources that you want Config to list in the response.ListDiscoveredResourcesRequest.BuilderresourceIds(Collection<String> resourceIds)The IDs of only those resources that you want Config to list in the response.ListDiscoveredResourcesRequest.BuilderresourceName(String resourceName)The custom name of only those resources that you want Config to list in the response.ListDiscoveredResourcesRequest.BuilderresourceType(String resourceType)The type of resources that you want Config to list in the response.ListDiscoveredResourcesRequest.BuilderresourceType(ResourceType resourceType)The type of resources that you want Config to list in the response.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.config.model.ConfigRequest.Builder
build
-
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
-
-
-
-
Method Detail
-
resourceType
ListDiscoveredResourcesRequest.Builder resourceType(String resourceType)
The type of resources that you want Config to list in the response.
- Parameters:
resourceType- The type of resources that you want Config to list in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ResourceType,ResourceType
-
resourceType
ListDiscoveredResourcesRequest.Builder resourceType(ResourceType resourceType)
The type of resources that you want Config to list in the response.
- Parameters:
resourceType- The type of resources that you want Config to list in the response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ResourceType,ResourceType
-
resourceIds
ListDiscoveredResourcesRequest.Builder resourceIds(Collection<String> resourceIds)
The IDs of only those resources that you want Config to list in the response. If you do not specify this parameter, Config lists all resources of the specified type that it has discovered. You can list a minimum of 1 resourceID and a maximum of 20 resourceIds.
- Parameters:
resourceIds- The IDs of only those resources that you want Config to list in the response. If you do not specify this parameter, Config lists all resources of the specified type that it has discovered. You can list a minimum of 1 resourceID and a maximum of 20 resourceIds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceIds
ListDiscoveredResourcesRequest.Builder resourceIds(String... resourceIds)
The IDs of only those resources that you want Config to list in the response. If you do not specify this parameter, Config lists all resources of the specified type that it has discovered. You can list a minimum of 1 resourceID and a maximum of 20 resourceIds.
- Parameters:
resourceIds- The IDs of only those resources that you want Config to list in the response. If you do not specify this parameter, Config lists all resources of the specified type that it has discovered. You can list a minimum of 1 resourceID and a maximum of 20 resourceIds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceName
ListDiscoveredResourcesRequest.Builder resourceName(String resourceName)
The custom name of only those resources that you want Config to list in the response. If you do not specify this parameter, Config lists all resources of the specified type that it has discovered.
- Parameters:
resourceName- The custom name of only those resources that you want Config to list in the response. If you do not specify this parameter, Config lists all resources of the specified type that it has discovered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
limit
ListDiscoveredResourcesRequest.Builder limit(Integer limit)
The maximum number of resource identifiers returned on each page. The default is 100. You cannot specify a number greater than 100. If you specify 0, Config uses the default.
- Parameters:
limit- The maximum number of resource identifiers returned on each page. The default is 100. You cannot specify a number greater than 100. If you specify 0, Config uses the default.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
includeDeletedResources
ListDiscoveredResourcesRequest.Builder includeDeletedResources(Boolean includeDeletedResources)
Specifies whether Config includes deleted resources in the results. By default, deleted resources are not included.
- Parameters:
includeDeletedResources- Specifies whether Config includes deleted resources in the results. By default, deleted resources are not included.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListDiscoveredResourcesRequest.Builder nextToken(String nextToken)
The
nextTokenstring returned on a previous page that you use to get the next page of results in a paginated response.- Parameters:
nextToken- ThenextTokenstring returned on a previous page that you use 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.
-
overrideConfiguration
ListDiscoveredResourcesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListDiscoveredResourcesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-