Create Layer
| opsworks_create_layer | R Documentation |
Creates a layer¶
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.
Usage¶
opsworks_create_layer(StackId, Type, Name, Shortname, Attributes,
CloudWatchLogsConfiguration, CustomInstanceProfileArn, CustomJson,
CustomSecurityGroupIds, Packages, VolumeConfigurations,
EnableAutoHealing, AutoAssignElasticIps, AutoAssignPublicIps,
CustomRecipes, InstallUpdatesOnBoot, UseEbsOptimizedInstances,
LifecycleEventConfiguration)
Arguments¶
StackId[required] The layer stack ID.
Type[required] 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. Built-in layers are not available in Chef 12 stacks.
Name[required] The layer name, which is used by the console. Layer names can be a maximum of 32 characters.
Shortname[required] For custom layers only, use this parameter to specify the layer's short name, which is used internally by OpsWorks Stacks 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 32 characters, which are limited to the alphanumeric characters, '-', '_', and '.'.
Built-in layer short names are defined by OpsWorks Stacks. For more information, see the Layer Reference.
AttributesOne or more user-defined key-value pairs to be added to the stack attributes.
To create a cluster layer, set the
EcsClusterArnattribute to the cluster's ARN.CloudWatchLogsConfigurationSpecifies CloudWatch Logs configuration options for the layer. For more information, see CloudWatchLogsLogStream.
CustomInstanceProfileArnThe ARN of an IAM profile to be used for the layer's EC2 instances. For more information about IAM ARNs, see Using Identifiers.
CustomJsonA 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. This feature is supported as of version 1.7.42 of the CLI.
CustomSecurityGroupIdsAn array containing the layer custom security group IDs.
PackagesAn array of
Packageobjects that describes the layer packages.VolumeConfigurationsA
VolumeConfigurationsobject that describes the layer's Amazon EBS volumes.EnableAutoHealingWhether to disable auto healing for the layer.
AutoAssignElasticIpsWhether to automatically assign an Elastic IP address to the layer's instances. For more information, see How to Edit a Layer.
AutoAssignPublicIpsFor 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.
CustomRecipesA
LayerCustomRecipesobject that specifies the layer custom recipes.InstallUpdatesOnBootWhether 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 tofalse. You must then update your instances manually by usingcreate_deploymentto run theupdate_dependenciesstack command or by manually runningyum(Amazon Linux) orapt-get(Ubuntu) on the instances.To ensure that your instances have the latest security updates, we strongly recommend using the default value of
true.UseEbsOptimizedInstancesWhether to use Amazon EBS-optimized instances.
LifecycleEventConfigurationA
LifeCycleEventConfigurationobject that you can use to configure the Shutdown event to specify an execution timeout and enable or disable Elastic Load Balancer connection draining.
Value¶
A list with the following syntax:
Request syntax¶
svc$create_layer(
StackId = "string",
Type = "aws-flow-ruby"|"ecs-cluster"|"java-app"|"lb"|"web"|"php-app"|"rails-app"|"nodejs-app"|"memcached"|"db-master"|"monitoring-master"|"custom",
Name = "string",
Shortname = "string",
Attributes = list(
"string"
),
CloudWatchLogsConfiguration = list(
Enabled = TRUE|FALSE,
LogStreams = list(
list(
LogGroupName = "string",
DatetimeFormat = "string",
TimeZone = "LOCAL"|"UTC",
File = "string",
FileFingerprintLines = "string",
MultiLineStartPattern = "string",
InitialPosition = "start_of_file"|"end_of_file",
Encoding = "ascii"|"big5"|"big5hkscs"|"cp037"|"cp424"|"cp437"|"cp500"|"cp720"|"cp737"|"cp775"|"cp850"|"cp852"|"cp855"|"cp856"|"cp857"|"cp858"|"cp860"|"cp861"|"cp862"|"cp863"|"cp864"|"cp865"|"cp866"|"cp869"|"cp874"|"cp875"|"cp932"|"cp949"|"cp950"|"cp1006"|"cp1026"|"cp1140"|"cp1250"|"cp1251"|"cp1252"|"cp1253"|"cp1254"|"cp1255"|"cp1256"|"cp1257"|"cp1258"|"euc_jp"|"euc_jis_2004"|"euc_jisx0213"|"euc_kr"|"gb2312"|"gbk"|"gb18030"|"hz"|"iso2022_jp"|"iso2022_jp_1"|"iso2022_jp_2"|"iso2022_jp_2004"|"iso2022_jp_3"|"iso2022_jp_ext"|"iso2022_kr"|"latin_1"|"iso8859_2"|"iso8859_3"|"iso8859_4"|"iso8859_5"|"iso8859_6"|"iso8859_7"|"iso8859_8"|"iso8859_9"|"iso8859_10"|"iso8859_13"|"iso8859_14"|"iso8859_15"|"iso8859_16"|"johab"|"koi8_r"|"koi8_u"|"mac_cyrillic"|"mac_greek"|"mac_iceland"|"mac_latin2"|"mac_roman"|"mac_turkish"|"ptcp154"|"shift_jis"|"shift_jis_2004"|"shift_jisx0213"|"utf_32"|"utf_32_be"|"utf_32_le"|"utf_16"|"utf_16_be"|"utf_16_le"|"utf_7"|"utf_8"|"utf_8_sig",
BufferDuration = 123,
BatchCount = 123,
BatchSize = 123
)
)
),
CustomInstanceProfileArn = "string",
CustomJson = "string",
CustomSecurityGroupIds = list(
"string"
),
Packages = list(
"string"
),
VolumeConfigurations = list(
list(
MountPoint = "string",
RaidLevel = 123,
NumberOfDisks = 123,
Size = 123,
VolumeType = "string",
Iops = 123,
Encrypted = TRUE|FALSE
)
),
EnableAutoHealing = TRUE|FALSE,
AutoAssignElasticIps = TRUE|FALSE,
AutoAssignPublicIps = TRUE|FALSE,
CustomRecipes = list(
Setup = list(
"string"
),
Configure = list(
"string"
),
Deploy = list(
"string"
),
Undeploy = list(
"string"
),
Shutdown = list(
"string"
)
),
InstallUpdatesOnBoot = TRUE|FALSE,
UseEbsOptimizedInstances = TRUE|FALSE,
LifecycleEventConfiguration = list(
Shutdown = list(
ExecutionTimeout = 123,
DelayUntilElbConnectionsDrained = TRUE|FALSE
)
)
)