Interface BatchGetResourceConfigResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ConfigResponse.Builder,CopyableBuilder<BatchGetResourceConfigResponse.Builder,BatchGetResourceConfigResponse>,SdkBuilder<BatchGetResourceConfigResponse.Builder,BatchGetResourceConfigResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchGetResourceConfigResponse
public static interface BatchGetResourceConfigResponse.Builder extends ConfigResponse.Builder, SdkPojo, CopyableBuilder<BatchGetResourceConfigResponse.Builder,BatchGetResourceConfigResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetResourceConfigResponse.BuilderbaseConfigurationItems(Collection<BaseConfigurationItem> baseConfigurationItems)A list that contains the current configuration of one or more resources.BatchGetResourceConfigResponse.BuilderbaseConfigurationItems(Consumer<BaseConfigurationItem.Builder>... baseConfigurationItems)A list that contains the current configuration of one or more resources.BatchGetResourceConfigResponse.BuilderbaseConfigurationItems(BaseConfigurationItem... baseConfigurationItems)A list that contains the current configuration of one or more resources.BatchGetResourceConfigResponse.BuilderunprocessedResourceKeys(Collection<ResourceKey> unprocessedResourceKeys)A list of resource keys that were not processed with the current response.BatchGetResourceConfigResponse.BuilderunprocessedResourceKeys(Consumer<ResourceKey.Builder>... unprocessedResourceKeys)A list of resource keys that were not processed with the current response.BatchGetResourceConfigResponse.BuilderunprocessedResourceKeys(ResourceKey... unprocessedResourceKeys)A list of resource keys that were not processed with the current response.-
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
-
baseConfigurationItems
BatchGetResourceConfigResponse.Builder baseConfigurationItems(Collection<BaseConfigurationItem> baseConfigurationItems)
A list that contains the current configuration of one or more resources.
- Parameters:
baseConfigurationItems- A list that contains the current configuration of one or more resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
baseConfigurationItems
BatchGetResourceConfigResponse.Builder baseConfigurationItems(BaseConfigurationItem... baseConfigurationItems)
A list that contains the current configuration of one or more resources.
- Parameters:
baseConfigurationItems- A list that contains the current configuration of one or more resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
baseConfigurationItems
BatchGetResourceConfigResponse.Builder baseConfigurationItems(Consumer<BaseConfigurationItem.Builder>... baseConfigurationItems)
A list that contains the current configuration of one or more resources.
This is a convenience method that creates an instance of theBaseConfigurationItem.Builderavoiding the need to create one manually viaBaseConfigurationItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#baseConfigurationItems(List.) - Parameters:
baseConfigurationItems- a consumer that will call methods onBaseConfigurationItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#baseConfigurationItems(java.util.Collection)
-
unprocessedResourceKeys
BatchGetResourceConfigResponse.Builder unprocessedResourceKeys(Collection<ResourceKey> unprocessedResourceKeys)
A list of resource keys that were not processed with the current response. The unprocessesResourceKeys value is in the same form as ResourceKeys, so the value can be directly provided to a subsequent BatchGetResourceConfig operation. If there are no unprocessed resource keys, the response contains an empty unprocessedResourceKeys list.
- Parameters:
unprocessedResourceKeys- A list of resource keys that were not processed with the current response. The unprocessesResourceKeys value is in the same form as ResourceKeys, so the value can be directly provided to a subsequent BatchGetResourceConfig operation. If there are no unprocessed resource keys, the response contains an empty unprocessedResourceKeys list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unprocessedResourceKeys
BatchGetResourceConfigResponse.Builder unprocessedResourceKeys(ResourceKey... unprocessedResourceKeys)
A list of resource keys that were not processed with the current response. The unprocessesResourceKeys value is in the same form as ResourceKeys, so the value can be directly provided to a subsequent BatchGetResourceConfig operation. If there are no unprocessed resource keys, the response contains an empty unprocessedResourceKeys list.
- Parameters:
unprocessedResourceKeys- A list of resource keys that were not processed with the current response. The unprocessesResourceKeys value is in the same form as ResourceKeys, so the value can be directly provided to a subsequent BatchGetResourceConfig operation. If there are no unprocessed resource keys, the response contains an empty unprocessedResourceKeys list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unprocessedResourceKeys
BatchGetResourceConfigResponse.Builder unprocessedResourceKeys(Consumer<ResourceKey.Builder>... unprocessedResourceKeys)
A list of resource keys that were not processed with the current response. The unprocessesResourceKeys value is in the same form as ResourceKeys, so the value can be directly provided to a subsequent BatchGetResourceConfig operation. If there are no unprocessed resource keys, the response contains an empty unprocessedResourceKeys list.
This is a convenience method that creates an instance of theResourceKey.Builderavoiding the need to create one manually viaResourceKey.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#unprocessedResourceKeys(List.) - Parameters:
unprocessedResourceKeys- a consumer that will call methods onResourceKey.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#unprocessedResourceKeys(java.util.Collection)
-
-