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

OrganizationCustomPolicyRuleMetadata

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

An object that specifies metadata for your organization's Config Custom Policy rule. The metadata includes the runtime system in use, which accounts have debug logging enabled, and other custom rule metadata, such as resource type, resource ID of Amazon Web Services resource, and organization trigger types that initiate Config to evaluate Amazon Web Services resources against a rule.

interface OrganizationCustomPolicyRuleMetadata {
DebugLogDeliveryAccounts?: string[] | null;
Description?: string | null;
InputParameters?: string | null;
MaximumExecutionFrequency?: MaximumExecutionFrequency | null;
OrganizationConfigRuleTriggerTypes?: OrganizationConfigRuleTriggerTypeNoSN[] | null;
PolicyRuntime: string;
PolicyText: string;
ResourceIdScope?: string | null;
ResourceTypesScope?: string[] | null;
TagKeyScope?: string | null;
TagValueScope?: string | null;
}

§Properties

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

A list of accounts that you can enable debug logging for your organization Config Custom Policy rule. List is null when debug logging is enabled for all accounts.

§
Description?: string | null
[src]

The description that you provide for your organization Config Custom Policy rule.

§
InputParameters?: string | null
[src]

A string, in JSON format, that is passed to your organization Config Custom Policy rule.

§
MaximumExecutionFrequency?: MaximumExecutionFrequency | null
[src]

The maximum frequency with which Config runs evaluations for a rule. Your Config Custom Policy rule is triggered when Config delivers the configuration snapshot. For more information, see "ConfigSnapshotDeliveryProperties".

§
OrganizationConfigRuleTriggerTypes?: OrganizationConfigRuleTriggerTypeNoSN[] | null
[src]

The type of notification that initiates Config to run an evaluation for a rule. For Config Custom Policy rules, Config supports change-initiated notification types:

  • ConfigurationItemChangeNotification - Initiates an evaluation when Config delivers a configuration item as a result of a resource change.
  • OversizedConfigurationItemChangeNotification - Initiates an evaluation when Config delivers an oversized configuration item. Config may generate this notification type when a resource changes and the notification exceeds the maximum size allowed by Amazon SNS.
§
PolicyRuntime: string
[src]

The runtime system for your organization Config Custom Policy rules. Guard is a policy-as-code language that allows you to write policies that are enforced by Config Custom Policy rules. For more information about Guard, see the Guard GitHub Repository.

§
PolicyText: string
[src]

The policy definition containing the logic for your organization Config Custom Policy rule.

§
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.

§
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).