Update Broker Storage
kafka_update_broker_storage | R Documentation |
Updates the EBS storage associated with MSK brokers¶
Description¶
Updates the EBS storage associated with MSK brokers.
Usage¶
kafka_update_broker_storage(ClusterArn, CurrentVersion,
TargetBrokerEBSVolumeInfo)
Arguments¶
ClusterArn |
[required] The Amazon Resource Name (ARN) that uniquely identifies the cluster. |
CurrentVersion |
[required] The version of cluster to update from. A successful operation will then generate a new version. |
TargetBrokerEBSVolumeInfo |
[required] Describes the target volume size and the ID of the broker to apply the update to. |
Value¶
A list with the following syntax:
list(
ClusterArn = "string",
ClusterOperationArn = "string"
)
Request syntax¶
svc$update_broker_storage(
ClusterArn = "string",
CurrentVersion = "string",
TargetBrokerEBSVolumeInfo = list(
list(
KafkaBrokerNodeId = "string",
ProvisionedThroughput = list(
Enabled = TRUE|FALSE,
VolumeThroughput = 123
),
VolumeSizeGB = 123
)
)
)