Class: Aws::Kafka::Types::UpdateBrokerStorageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::UpdateBrokerStorageRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafka/types.rb
Overview
Request object for UpdateBrokerStorage.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
- #cluster_arn ⇒ String
-
#current_version ⇒ String
The version of cluster to update from.
-
#target_broker_ebs_volume_info ⇒ Array<Types::BrokerEBSVolumeInfo>
Describes the target volume size and the ID of the broker to apply the update to.
Instance Attribute Details
#cluster_arn ⇒ String
4034 4035 4036 4037 4038 4039 4040 |
# File 'lib/aws-sdk-kafka/types.rb', line 4034 class UpdateBrokerStorageRequest < Struct.new( :cluster_arn, :current_version, :target_broker_ebs_volume_info) SENSITIVE = [] include Aws::Structure end |
#current_version ⇒ String
The version of cluster to update from. A successful operation will then generate a new version.
4034 4035 4036 4037 4038 4039 4040 |
# File 'lib/aws-sdk-kafka/types.rb', line 4034 class UpdateBrokerStorageRequest < Struct.new( :cluster_arn, :current_version, :target_broker_ebs_volume_info) SENSITIVE = [] include Aws::Structure end |
#target_broker_ebs_volume_info ⇒ Array<Types::BrokerEBSVolumeInfo>
Describes the target volume size and the ID of the broker to apply the update to.
The value you specify for Target-Volume-in-GiB must be a whole number that is greater than 100 GiB.
The storage per broker after the update operation can’t exceed 16384 GiB.
4034 4035 4036 4037 4038 4039 4040 |
# File 'lib/aws-sdk-kafka/types.rb', line 4034 class UpdateBrokerStorageRequest < Struct.new( :cluster_arn, :current_version, :target_broker_ebs_volume_info) SENSITIVE = [] include Aws::Structure end |