Skip to content

Describe Conformance Pack Status

configservice_describe_conformance_pack_status R Documentation

Provides one or more conformance packs deployment status

Description

Provides one or more conformance packs deployment status.

If there are no conformance packs then you will see an empty result.

Usage

configservice_describe_conformance_pack_status(ConformancePackNames,
  Limit, NextToken)

Arguments

ConformancePackNames

Comma-separated list of conformance pack names.

Limit

The maximum number of conformance packs status returned on each page.

NextToken

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

Value

A list with the following syntax:

list(
  ConformancePackStatusDetails = list(
    list(
      ConformancePackName = "string",
      ConformancePackId = "string",
      ConformancePackArn = "string",
      ConformancePackState = "CREATE_IN_PROGRESS"|"CREATE_COMPLETE"|"CREATE_FAILED"|"DELETE_IN_PROGRESS"|"DELETE_FAILED",
      StackArn = "string",
      ConformancePackStatusReason = "string",
      LastUpdateRequestedTime = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdateCompletedTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_conformance_pack_status(
  ConformancePackNames = list(
    "string"
  ),
  Limit = 123,
  NextToken = "string"
)