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

PutOrganizationConformancePackRequest

import type { PutOrganizationConformancePackRequest } from "https://aws-api.deno.dev/v0.3/services/configservice.ts?docs=full";
interface PutOrganizationConformancePackRequest {
ConformancePackInputParameters?: ConformancePackInputParameter[] | null;
DeliveryS3Bucket?: string | null;
DeliveryS3KeyPrefix?: string | null;
ExcludedAccounts?: string[] | null;
OrganizationConformancePackName: string;
TemplateBody?: string | null;
TemplateS3Uri?: string | null;
}

§Properties

§
ConformancePackInputParameters?: ConformancePackInputParameter[] | null
[src]

A list of ConformancePackInputParameter objects.

§
DeliveryS3Bucket?: string | null
[src]

The name of the Amazon S3 bucket where Config stores conformance pack templates.

Note: This field is optional. If used, it must be prefixed with awsconfigconforms.

§
DeliveryS3KeyPrefix?: string | null
[src]

The prefix for the Amazon S3 bucket.

Note: This field is optional.

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

A list of Amazon Web Services accounts to be excluded from an organization conformance pack while deploying a conformance pack.

§
OrganizationConformancePackName: string
[src]

Name of the organization conformance pack you want to create.

§
TemplateBody?: string | null
[src]

A string containing full conformance pack template body. Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes.

§
TemplateS3Uri?: string | null
[src]

Location of file containing the template body. The uri must point to the conformance pack template (max size: 300 KB).

Note: You must have access to read Amazon S3 bucket.