Interface PutBucketInventoryConfigurationRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<PutBucketInventoryConfigurationRequest.Builder,PutBucketInventoryConfigurationRequest>
,S3Request.Builder
,SdkBuilder<PutBucketInventoryConfigurationRequest.Builder,PutBucketInventoryConfigurationRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- PutBucketInventoryConfigurationRequest
public static interface PutBucketInventoryConfigurationRequest.Builder extends S3Request.Builder, SdkPojo, CopyableBuilder<PutBucketInventoryConfigurationRequest.Builder,PutBucketInventoryConfigurationRequest>
-
-
Method Summary
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.s3.model.S3Request.Builder
build
-
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
-
bucket
PutBucketInventoryConfigurationRequest.Builder bucket(String bucket)
The name of the bucket where the inventory configuration will be stored.
- Parameters:
bucket
- The name of the bucket where the inventory configuration will be stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
PutBucketInventoryConfigurationRequest.Builder id(String id)
The ID used to identify the inventory configuration.
- Parameters:
id
- The ID used to identify the inventory configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inventoryConfiguration
PutBucketInventoryConfigurationRequest.Builder inventoryConfiguration(InventoryConfiguration inventoryConfiguration)
Specifies the inventory configuration.
- Parameters:
inventoryConfiguration
- Specifies the inventory configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inventoryConfiguration
default PutBucketInventoryConfigurationRequest.Builder inventoryConfiguration(Consumer<InventoryConfiguration.Builder> inventoryConfiguration)
Specifies the inventory configuration.
This is a convenience method that creates an instance of theInventoryConfiguration.Builder
avoiding the need to create one manually viaInventoryConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toinventoryConfiguration(InventoryConfiguration)
.- Parameters:
inventoryConfiguration
- a consumer that will call methods onInventoryConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
inventoryConfiguration(InventoryConfiguration)
-
expectedBucketOwner
PutBucketInventoryConfigurationRequest.Builder expectedBucketOwner(String expectedBucketOwner)
The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).- Parameters:
expectedBucketOwner
- The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code403 Forbidden
(access denied).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
PutBucketInventoryConfigurationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
PutBucketInventoryConfigurationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-