Interface BucketInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BucketInfo.Builder,BucketInfo>,SdkBuilder<BucketInfo.Builder,BucketInfo>,SdkPojo
- Enclosing class:
- BucketInfo
@Mutable @NotThreadSafe public static interface BucketInfo.Builder extends SdkPojo, CopyableBuilder<BucketInfo.Builder,BucketInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BucketInfo.BuilderdataRedundancy(String dataRedundancy)The number of Zone (Availability Zone or Local Zone) that's used for redundancy for the bucket.BucketInfo.BuilderdataRedundancy(DataRedundancy dataRedundancy)The number of Zone (Availability Zone or Local Zone) that's used for redundancy for the bucket.BucketInfo.Buildertype(String type)The type of bucket.BucketInfo.Buildertype(BucketType type)The type of bucket.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
dataRedundancy
BucketInfo.Builder dataRedundancy(String dataRedundancy)
The number of Zone (Availability Zone or Local Zone) that's used for redundancy for the bucket.
- Parameters:
dataRedundancy- The number of Zone (Availability Zone or Local Zone) that's used for redundancy for the bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataRedundancy,DataRedundancy
-
dataRedundancy
BucketInfo.Builder dataRedundancy(DataRedundancy dataRedundancy)
The number of Zone (Availability Zone or Local Zone) that's used for redundancy for the bucket.
- Parameters:
dataRedundancy- The number of Zone (Availability Zone or Local Zone) that's used for redundancy for the bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataRedundancy,DataRedundancy
-
type
BucketInfo.Builder type(String type)
The type of bucket.
- Parameters:
type- The type of bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BucketType,BucketType
-
type
BucketInfo.Builder type(BucketType type)
The type of bucket.
- Parameters:
type- The type of bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BucketType,BucketType
-
-