Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ControlScope

import type { ControlScope } from "https://aws-api.deno.dev/v0.3/services/backup.ts?docs=full";

A framework consists of one or more controls. Each control has its own control scope. The control scope can include one or more resource types, a combination of a tag key and value, or a combination of one resource type and one resource ID. If no scope is specified, evaluations for the rule are triggered when any resource in your recording group changes in configuration.

Note: To set a control scope that includes all of a particular resource, leave the ControlScope empty or do not pass it when calling CreateFramework.

interface ControlScope {
ComplianceResourceIds?: string[] | null;
ComplianceResourceTypes?: string[] | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
ComplianceResourceIds?: string[] | null
[src]

The ID of the only Amazon Web Services resource that you want your control scope to contain.

§
ComplianceResourceTypes?: string[] | null
[src]

Describes whether the control scope includes one or more types of resources, such as EFS or RDS.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tag key-value pair applied to those Amazon Web Services resources that you want to trigger an evaluation for a rule. A maximum of one key-value pair can be provided. The tag value is optional, but it cannot be an empty string. The structure to assign a tag is: [{"Key":"string","Value":"string"}].