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

OrganizationManagedRuleMetadata

import type { OrganizationManagedRuleMetadata } from "https://aws-api.deno.dev/v0.4/services/configservice.ts?docs=full";

An object that specifies organization managed rule metadata such as resource type and ID of Amazon Web Services resource along with the rule identifier. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic.

interface OrganizationManagedRuleMetadata {
Description?: string | null;
InputParameters?: string | null;
MaximumExecutionFrequency?: MaximumExecutionFrequency | null;
ResourceIdScope?: string | null;
ResourceTypesScope?: string[] | null;
RuleIdentifier: string;
TagKeyScope?: string | null;
TagValueScope?: string | null;
}

§Properties

§
Description?: string | null
[src]

The description that you provide for your organization Config rule.

§
InputParameters?: string | null
[src]

A string, in JSON format, that is passed to your organization Config rule Lambda function.

§
MaximumExecutionFrequency?: MaximumExecutionFrequency | null
[src]

The maximum frequency with which Config runs evaluations for a rule. This is for an Config managed rule that is triggered at a periodic frequency.

Note: By default, rules with a periodic trigger are evaluated every 24 hours. To change the frequency, specify a valid value for the MaximumExecutionFrequency parameter.

§
ResourceIdScope?: string | null
[src]

The ID of the Amazon Web Services resource that was evaluated.

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

The type of the Amazon Web Services resource that was evaluated.

§
RuleIdentifier: string
[src]

For organization config managed rules, a predefined identifier from a list. For example, IAM_PASSWORD_POLICY is a managed rule. To reference a managed rule, see Using Config managed rules.

§
TagKeyScope?: string | null
[src]

One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values.

§
TagValueScope?: string | null
[src]

The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key).