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

CreateConfigurationProfileRequest

import type { CreateConfigurationProfileRequest } from "https://aws-api.deno.dev/v0.4/services/appconfig.ts?docs=full";
interface CreateConfigurationProfileRequest {
ApplicationId: string;
Description?: string | null;
LocationUri: string;
Name: string;
RetrievalRoleArn?: string | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
Type?: string | null;
Validators?: Validator[] | null;
}

§Properties

§
ApplicationId: string
[src]

The application ID.

§
Description?: string | null
[src]

A description of the configuration profile.

§
LocationUri: string
[src]

A URI to locate the configuration. You can specify the following:

  • For the AppConfig hosted configuration store and for feature flags, specify hosted.
  • For an Amazon Web Services Systems Manager Parameter Store parameter, specify either the parameter name in the format ssm-parameter://<parameter name> or the ARN.
  • For an Secrets Manager secret, specify the URI in the following format: secrets-manager://.
  • For an Amazon S3 object, specify the URI in the following format: s3://<bucket>/<objectKey>. Here is an example: s3://my-bucket/my-app/us-east-1/my-config.json
  • For an SSM document, specify either the document name in the format ssm-document://<document name> or the Amazon Resource Name (ARN).
§
Name: string
[src]

A name for the configuration profile.

§
RetrievalRoleArn?: string | null
[src]

The ARN of an IAM role with permission to access the configuration at the specified LocationUri.

! IMPORTANT: ! A retrieval role ARN is not required for configurations stored in the AppConfig hosted configuration store. ! It is required for all other sources that store your configuration.

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

Metadata to assign to the configuration profile. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.

§
Type?: string | null
[src]

The type of configurations contained in the profile. AppConfig supports feature flags and freeform configurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values for Type:

AWS.AppConfig.FeatureFlags

AWS.Freeform
§
Validators?: Validator[] | null
[src]

A list of methods for validating the configuration.