Interface BatchGetResourceConfigResponse.Builder

    • 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.
      • 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 the ResourceKey.Builder avoiding the need to create one manually via ResourceKey.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #unprocessedResourceKeys(List).

        Parameters:
        unprocessedResourceKeys - a consumer that will call methods on ResourceKey.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #unprocessedResourceKeys(java.util.Collection)