Skip to content

Describe Quota Share

batch_describe_quota_share R Documentation

Returns a description of the specified quota share

Description

Returns a description of the specified quota share.

Usage

batch_describe_quota_share(quotaShareArn)

Arguments

quotaShareArn

[required] The Amazon Resource Name (ARN) of the quota share.

Value

A list with the following syntax:

list(
  quotaShareName = "string",
  quotaShareArn = "string",
  jobQueueArn = "string",
  capacityLimits = list(
    list(
      maxCapacity = 123,
      capacityUnit = "string"
    )
  ),
  resourceSharingConfiguration = list(
    strategy = "RESERVE"|"LEND"|"LEND_AND_BORROW",
    borrowLimit = 123
  ),
  preemptionConfiguration = list(
    inSharePreemption = "ENABLED"|"DISABLED"
  ),
  state = "ENABLED"|"DISABLED",
  status = "CREATING"|"VALID"|"INVALID"|"UPDATING"|"DELETING",
  tags = list(
    "string"
  )
)

Request syntax

svc$describe_quota_share(
  quotaShareArn = "string"
)