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

UpdateLayerRequest

import type { UpdateLayerRequest } from "https://aws-api.deno.dev/v0.3/services/opsworks.ts?docs=full";
interface UpdateLayerRequest {
Attributes?: [key in LayerAttributesKeys]: string | null | undefined | null;
AutoAssignElasticIps?: boolean | null;
AutoAssignPublicIps?: boolean | null;
CloudWatchLogsConfiguration?: CloudWatchLogsConfiguration | null;
CustomInstanceProfileArn?: string | null;
CustomJson?: string | null;
CustomRecipes?: Recipes | null;
CustomSecurityGroupIds?: string[] | null;
EnableAutoHealing?: boolean | null;
InstallUpdatesOnBoot?: boolean | null;
LayerId: string;
LifecycleEventConfiguration?: LifecycleEventConfiguration | null;
Name?: string | null;
Packages?: string[] | null;
Shortname?: string | null;
UseEbsOptimizedInstances?: boolean | null;
VolumeConfigurations?: VolumeConfiguration[] | null;
}

§Properties

§
Attributes?: [key in LayerAttributesKeys]: string | null | undefined | null
[src]

One or more user-defined key/value pairs to be added to the stack attributes.

§
AutoAssignElasticIps?: boolean | null
[src]

Whether to automatically assign an Elastic IP address to the layer's instances. For more information, see How to Edit a Layer.

§
AutoAssignPublicIps?: boolean | null
[src]

For stacks that are running in a VPC, whether to automatically assign a public IP address to the layer's instances. For more information, see How to Edit a Layer.

§
CloudWatchLogsConfiguration?: CloudWatchLogsConfiguration | null
[src]

Specifies CloudWatch Logs configuration options for the layer. For more information, see "CloudWatchLogsLogStream".

§
CustomInstanceProfileArn?: string | null
[src]

The ARN of an IAM profile to be used for all of the layer's EC2 instances. For more information about IAM ARNs, see Using Identifiers.

§
CustomJson?: string | null
[src]

A JSON-formatted string containing custom stack configuration and deployment attributes to be installed on the layer's instances. For more information, see Using Custom JSON.

§
CustomRecipes?: Recipes | null
[src]

A LayerCustomRecipes object that specifies the layer's custom recipes.

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

An array containing the layer's custom security group IDs.

§
EnableAutoHealing?: boolean | null
[src]

Whether to disable auto healing for the layer.

§
InstallUpdatesOnBoot?: boolean | null
[src]

Whether to install operating system and package updates when the instance boots. The default value is true. To control when updates are installed, set this value to false. You must then update your instances manually by using "CreateDeployment" to run the update_dependencies stack command or manually running yum (Amazon Linux) or apt-get (Ubuntu) on the instances.

Note: We strongly recommend using the default value of true, to ensure that your instances have the latest security updates.

§
LayerId: string
[src]

The layer ID.

§
LifecycleEventConfiguration?: LifecycleEventConfiguration | null
[src]
§
Name?: string | null
[src]

The layer name, which is used by the console.

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

An array of Package objects that describe the layer's packages.

§
Shortname?: string | null
[src]

For custom layers only, use this parameter to specify the layer's short name, which is used internally by AWS OpsWorks Stacks and by Chef. The short name is also used as the name for the directory where your app files are installed. It can have a maximum of 200 characters and must be in the following format: /\A[a-z0-9-_.]+\Z/.

The built-in layers' short names are defined by AWS OpsWorks Stacks. For more information, see the Layer Reference

§
UseEbsOptimizedInstances?: boolean | null
[src]

Whether to use Amazon EBS-optimized instances.

§
VolumeConfigurations?: VolumeConfiguration[] | null
[src]

A VolumeConfigurations object that describes the layer's Amazon EBS volumes.