amazonka-opsworks-1.3.5: Amazon OpsWorks SDK.

Copyright(c) 2013-2015 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.OpsWorks.CreateLayer

Contents

Description

Creates a layer. For more information, see How to Create a Layer.

You should use CreateLayer for noncustom layer types such as PHP App Server only if the stack does not have an existing layer of that type. A stack can have at most one instance of each noncustom layer; if you attempt to create a second instance, CreateLayer fails. A stack can have an arbitrary number of custom layers, so you can call CreateLayer as many times as you like for that layer type.

Required Permissions: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see Managing User Permissions.

See: AWS API Reference for CreateLayer.

Synopsis

Creating a Request

Request Lenses

clCustomInstanceProfileARN :: Lens' CreateLayer (Maybe Text) Source

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

clCustomSecurityGroupIds :: Lens' CreateLayer [Text] Source

An array containing the layer custom security group IDs.

clInstallUpdatesOnBoot :: Lens' CreateLayer (Maybe Bool) Source

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 by manually running yum (Amazon Linux) or 'apt-get' (Ubuntu) on the instances.

To ensure that your instances have the latest security updates, we strongly recommend using the default value of true.

clLifecycleEventConfiguration :: Lens' CreateLayer (Maybe LifecycleEventConfiguration) Source

A LifeCycleEventConfiguration object that you can use to configure the Shutdown event to specify an execution timeout and enable or disable Elastic Load Balancer connection draining.

clCustomRecipes :: Lens' CreateLayer (Maybe Recipes) Source

A LayerCustomRecipes object that specifies the layer custom recipes.

clCustomJSON :: Lens' CreateLayer (Maybe Text) Source

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.

clVolumeConfigurations :: Lens' CreateLayer [VolumeConfiguration] Source

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

clEnableAutoHealing :: Lens' CreateLayer (Maybe Bool) Source

Whether to disable auto healing for the layer.

clPackages :: Lens' CreateLayer [Text] Source

An array of Package objects that describes the layer packages.

clAttributes :: Lens' CreateLayer (HashMap LayerAttributesKeys Text) Source

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

To create a cluster layer, set the EcsClusterArn attribute to the cluster's ARN.

clAutoAssignPublicIPs :: Lens' CreateLayer (Maybe Bool) Source

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.

clUseEBSOptimizedInstances :: Lens' CreateLayer (Maybe Bool) Source

Whether to use Amazon EBS-optimized instances.

clAutoAssignElasticIPs :: Lens' CreateLayer (Maybe Bool) Source

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

clStackId :: Lens' CreateLayer Text Source

The layer stack ID.

clType :: Lens' CreateLayer LayerType Source

The layer type. A stack cannot have more than one built-in layer of the same type. It can have any number of custom layers.

clName :: Lens' CreateLayer Text Source

The layer name, which is used by the console.

clShortname :: Lens' CreateLayer Text Source

For custom layers only, use this parameter to specify the layer's short name, which is used internally by AWS OpsWorks and by Chef recipes. 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, which are limited to the alphanumeric characters, '-', '_', and '.'.

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

Destructuring the Response

createLayerResponse Source

Creates a value of CreateLayerResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

Response Lenses