Learn R Programming

paws.security.identity (version 0.1.12)

inspector_describe_rules_packages: Describes the rules packages that are specified by the ARNs of the rules packages

Description

Describes the rules packages that are specified by the ARNs of the rules packages.

Usage

inspector_describe_rules_packages(rulesPackageArns, locale)

Value

A list with the following syntax:

list(
  rulesPackages = list(
    list(
      arn = "string",
      name = "string",
      version = "string",
      provider = "string",
      description = "string"
    )
  ),
  failedItems = list(
    list(
      failureCode = "INVALID_ARN"|"DUPLICATE_ARN"|"ITEM_DOES_NOT_EXIST"|"ACCESS_DENIED"|"LIMIT_EXCEEDED"|"INTERNAL_ERROR",
      retryable = TRUE|FALSE
    )
  )
)

Arguments

rulesPackageArns

[required] The ARN that specifies the rules package that you want to describe.

locale

The locale that you want to translate a rules package description into.

Request syntax

svc$describe_rules_packages(
  rulesPackageArns = list(
    "string"
  ),
  locale = "EN_US"
)

Examples

Run this code
if (FALSE) {
# Describes the rules packages that are specified by the ARNs of the rules
# packages.
svc$describe_rules_packages(
  rulesPackageArns = list(
    "arn:aws:inspector:us-west-2:758058086616:rulespackage/0-JJOtZiqQ"
  )
)
}

Run the code above in your browser using DataLab