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

PutConformancePackRequest

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

§Properties

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

A list of ConformancePackInputParameter objects.

§
ConformancePackName: string
[src]

Name of the conformance pack you want to create.

§
DeliveryS3Bucket?: string | null
[src]

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

Note: This field is optional.

§
DeliveryS3KeyPrefix?: string | null
[src]

The prefix for the Amazon S3 bucket.

Note: This field is optional.

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

Note: You can only use a YAML template with one resource type, that is, config rule and a remediation action.

§
TemplateS3Uri?: string | null
[src]

Location of file containing the template body (s3://bucketname/prefix). The uri must point to the conformance pack template (max size: 300 KB) that is located in an Amazon S3 bucket in the same region as the conformance pack.

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