Describe Raid Arrays
opsworks_describe_raid_arrays | R Documentation |
Describe an instance's RAID arrays¶
Description¶
Describe an instance's RAID arrays.
This call accepts only one resource-identifying parameter.
Required Permissions: To use this action, an IAM user must have a Show, Deploy, or Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information about user permissions, see Managing User Permissions.
Usage¶
opsworks_describe_raid_arrays(InstanceId, StackId, RaidArrayIds)
Arguments¶
InstanceId |
The instance ID. If you use this parameter,
|
StackId |
The stack ID. |
RaidArrayIds |
An array of RAID array IDs. If you use this parameter,
|
Value¶
A list with the following syntax:
list(
RaidArrays = list(
list(
RaidArrayId = "string",
InstanceId = "string",
Name = "string",
RaidLevel = 123,
NumberOfDisks = 123,
Size = 123,
Device = "string",
MountPoint = "string",
AvailabilityZone = "string",
CreatedAt = "string",
StackId = "string",
VolumeType = "string",
Iops = 123
)
)
)
Request syntax¶
svc$describe_raid_arrays(
InstanceId = "string",
StackId = "string",
RaidArrayIds = list(
"string"
)
)