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

PutResourceConfigRequest

import type { PutResourceConfigRequest } from "https://aws-api.deno.dev/v0.3/services/configservice.ts?docs=full";
interface PutResourceConfigRequest {
Configuration: string;
ResourceId: string;
ResourceName?: string | null;
ResourceType: string;
SchemaVersionId: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
Configuration: string
[src]

The configuration object of the resource in valid JSON format. It must match the schema registered with CloudFormation.

Note: The configuration JSON must not exceed 64 KB.

§
ResourceId: string
[src]

Unique identifier of the resource.

§
ResourceName?: string | null
[src]

Name of the resource.

§
ResourceType: string
[src]

The type of the resource. The custom resource type must be registered with CloudFormation.

Note: You cannot use the organization names “amzn”, “amazon”, “alexa”, “custom” with custom resource types. It is the first part of the ResourceType up to the first ::.

§
SchemaVersionId: string
[src]

Version of the schema registered for the ResourceType in CloudFormation.

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

Tags associated with the resource.