Describe Conformance Packs
| configservice_describe_conformance_packs | R Documentation |
Returns a list of one or more conformance packs¶
Description¶
Returns a list of one or more conformance packs.
Usage¶
Arguments¶
ConformancePackNamesComma-separated list of conformance pack names for which you want details. If you do not specify any names, Config returns details for all your conformance packs.
LimitThe maximum number of conformance packs returned on each page.
NextTokenThe
nextTokenstring 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(
ConformancePackDetails = list(
list(
ConformancePackName = "string",
ConformancePackArn = "string",
ConformancePackId = "string",
DeliveryS3Bucket = "string",
DeliveryS3KeyPrefix = "string",
ConformancePackInputParameters = list(
list(
ParameterName = "string",
ParameterValue = "string"
)
),
LastUpdateRequestedTime = as.POSIXct(
"2015-01-01"
),
CreatedBy = "string",
TemplateSSMDocumentDetails = list(
DocumentName = "string",
DocumentVersion = "string"
)
)
),
NextToken = "string"
)