Learn R Programming

paws.management (version 0.1.12)

configservice_describe_organization_conformance_packs: Returns a list of organization conformance packs

Description

Returns a list of organization conformance packs.

When you specify the limit and the next token, you receive a paginated response.

Limit and next token are not applicable if you specify organization conformance packs names. They are only applicable, when you request all the organization conformance packs.

Usage

configservice_describe_organization_conformance_packs(
  OrganizationConformancePackNames, Limit, NextToken)

Value

A list with the following syntax:

list(
  OrganizationConformancePacks = list(
    list(
      OrganizationConformancePackName = "string",
      OrganizationConformancePackArn = "string",
      DeliveryS3Bucket = "string",
      DeliveryS3KeyPrefix = "string",
      ConformancePackInputParameters = list(
        list(
          ParameterName = "string",
          ParameterValue = "string"
        )
      ),
      ExcludedAccounts = list(
        "string"
      ),
      LastUpdateTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Arguments

OrganizationConformancePackNames

The name that you assign to an organization conformance pack.

Limit

The maximum number of organization config packs returned on each page. If you do no specify a number, AWS Config uses the default. The default is 100.

NextToken

The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.

Request syntax

svc$describe_organization_conformance_packs(
  OrganizationConformancePackNames = list(
    "string"
  ),
  Limit = 123,
  NextToken = "string"
)