Controlcatalog

This page documents function available when using the Controlcatalog module, created with @service Controlcatalog.

Index

Documentation

Main.Controlcatalog.list_common_controlsMethod
list_common_controls()
list_common_controls(params::Dict{String,<:Any})

Returns a paginated list of common controls from the Amazon Web Services Control Catalog. You can apply an optional filter to see common controls that have a specific objective. If you don’t provide a filter, the operation returns all common controls.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "CommonControlFilter": An optional filter that narrows the results to a specific objective. This filter allows you to specify one objective ARN at a time. Passing multiple ARNs in the CommonControlFilter isn’t currently supported.
  • "maxResults": The maximum number of results on a page or for an API request call.
  • "nextToken": The pagination token that's used to fetch the next set of results.
source
Main.Controlcatalog.list_domainsMethod
list_domains()
list_domains(params::Dict{String,<:Any})

Returns a paginated list of domains from the Amazon Web Services Control Catalog.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "maxResults": The maximum number of results on a page or for an API request call.
  • "nextToken": The pagination token that's used to fetch the next set of results.
source
Main.Controlcatalog.list_objectivesMethod
list_objectives()
list_objectives(params::Dict{String,<:Any})

Returns a paginated list of objectives from the Amazon Web Services Control Catalog. You can apply an optional filter to see the objectives that belong to a specific domain. If you don’t provide a filter, the operation returns all objectives.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "ObjectiveFilter": An optional filter that narrows the results to a specific domain. This filter allows you to specify one domain ARN at a time. Passing multiple ARNs in the ObjectiveFilter isn’t currently supported.
  • "maxResults": The maximum number of results on a page or for an API request call.
  • "nextToken": The pagination token that's used to fetch the next set of results.
source