Learn R Programming

paws.management (version 0.1.12)

servicequotas_list_aws_default_service_quotas: Lists the default values for the quotas for the specified AWS service

Description

Lists the default values for the quotas for the specified AWS service. A default value does not reflect any quota increases.

Usage

servicequotas_list_aws_default_service_quotas(ServiceCode, NextToken,
  MaxResults)

Value

A list with the following syntax:

list(
  NextToken = "string",
  Quotas = list(
    list(
      ServiceCode = "string",
      ServiceName = "string",
      QuotaArn = "string",
      QuotaCode = "string",
      QuotaName = "string",
      Value = 123.0,
      Unit = "string",
      Adjustable = TRUE|FALSE,
      GlobalQuota = TRUE|FALSE,
      UsageMetric = list(
        MetricNamespace = "string",
        MetricName = "string",
        MetricDimensions = list(
          "string"
        ),
        MetricStatisticRecommendation = "string"
      ),
      Period = list(
        PeriodValue = 123,
        PeriodUnit = "MICROSECOND"|"MILLISECOND"|"SECOND"|"MINUTE"|"HOUR"|"DAY"|"WEEK"
      ),
      ErrorReason = list(
        ErrorCode = "DEPENDENCY_ACCESS_DENIED_ERROR"|"DEPENDENCY_THROTTLING_ERROR"|"DEPENDENCY_SERVICE_ERROR"|"SERVICE_QUOTA_NOT_AVAILABLE_ERROR",
        ErrorMessage = "string"
      )
    )
  )
)

Arguments

ServiceCode

[required] The service identifier.

NextToken

The token for the next page of results.

MaxResults

The maximum number of results to return with a single call. To retrieve the remaining results, if any, make another call with the token returned from this call.

Request syntax

svc$list_aws_default_service_quotas(
  ServiceCode = "string",
  NextToken = "string",
  MaxResults = 123
)