Learn R Programming

paws.management (version 0.1.6)

servicequotas: Service Quotas

Description

Service Quotas is a web service that you can use to manage many of your AWS service quotas. Quotas, also referred to as limits, are the maximum values for a resource, item, or operation. This guide provide descriptions of the Service Quotas actions that you can call from an API. For the Service Quotas user guide, which explains how to use Service Quotas from the console, see What is Service Quotas.

AWS provides SDKs that consist of libraries and sample code for programming languages and platforms (Java, Ruby, .NET, iOS, Android, etc\...,). The SDKs provide a convenient way to create programmatic access to Service Quotas and AWS. For information about the AWS SDKs, including how to download and install them, see the Tools for Amazon Web Services page.

Usage

servicequotas(config = list())

Arguments

config

Optional configuration of credentials, endpoint, and/or region.

Service syntax

svc <- servicequotas(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string"
    ),
    endpoint = "string",
    region = "string"
  )
)

Operations

associate_service_quota_template Associates the Service Quotas template with your organization so that when new accounts are created in your organization, the template submits increase requests for the specified service quotas
delete_service_quota_increase_request_from_template Removes a service quota increase request from the Service Quotas template
disassociate_service_quota_template Disables the Service Quotas template
get_association_for_service_quota_template Retrieves the ServiceQuotaTemplateAssociationStatus value from the service
get_aws_default_service_quota Retrieves the default service quotas values
get_requested_service_quota_change Retrieves the details for a particular increase request
get_service_quota Returns the details for the specified service quota
get_service_quota_increase_request_from_template Returns the details of the service quota increase request in your template
list_aws_default_service_quotas Lists all default service quotas for the specified AWS service or all AWS services
list_requested_service_quota_change_history Requests a list of the changes to quotas for a service
list_requested_service_quota_change_history_by_quota Requests a list of the changes to specific service quotas
list_service_quota_increase_requests_in_template Returns a list of the quota increase requests in the template
list_service_quotas Lists all service quotas for the specified AWS service
list_services Lists the AWS services available in Service Quotas
put_service_quota_increase_request_into_template Defines and adds a quota to the service quota template

Examples

Run this code
# NOT RUN {
svc <- servicequotas()
svc$associate_service_quota_template(
  Foo = 123
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab