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¶
Arguments¶
InstanceId
The instance ID. If you use this parameter,
describe_raid_arrays
returns descriptions of the RAID arrays associated with the specified instance.StackId
The stack ID.
RaidArrayIds
An array of RAID array IDs. If you use this parameter,
describe_raid_arrays
returns descriptions of the specified arrays. Otherwise, it returns a description of every array.
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
)
)
)