CreateLayerRequest
public struct CreateLayerRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
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.
Declaration
Swift
public let attributes: [LayerAttributesKeys : String]?
-
Whether to automatically assign an Elastic IP address to the layer’s instances. For more information, see How to Edit a Layer.
Declaration
Swift
public let autoAssignElasticIps: Bool?
-
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.
Declaration
Swift
public let autoAssignPublicIps: Bool?
-
Specifies CloudWatch Logs configuration options for the layer. For more information, see CloudWatchLogsLogStream.
Declaration
Swift
public let cloudWatchLogsConfiguration: CloudWatchLogsConfiguration?
-
The ARN of an IAM profile to be used for the layer’s EC2 instances. For more information about IAM ARNs, see Using Identifiers.
Declaration
Swift
public let customInstanceProfileArn: String?
-
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. This feature is supported as of version 1.7.42 of the AWS CLI.
Declaration
Swift
public let customJson: String?
-
A LayerCustomRecipes object that specifies the layer custom recipes.
Declaration
Swift
public let customRecipes: Recipes?
-
An array containing the layer custom security group IDs.
Declaration
Swift
public let customSecurityGroupIds: [String]?
-
Whether to disable auto healing for the layer.
Declaration
Swift
public let enableAutoHealing: Bool?
-
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.
Declaration
Swift
public let installUpdatesOnBoot: Bool?
-
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.
Declaration
Swift
public let lifecycleEventConfiguration: LifecycleEventConfiguration?
-
The layer name, which is used by the console.
Declaration
Swift
public let name: String
-
An array of Package objects that describes the layer packages.
Declaration
Swift
public let packages: [String]?
-
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 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 Stacks. For more information, see the Layer Reference.
Declaration
Swift
public let shortname: String
-
The layer stack ID.
Declaration
Swift
public let stackId: String
-
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.
Declaration
Swift
public let type: LayerType
-
Whether to use Amazon EBS-optimized instances.
Declaration
Swift
public let useEbsOptimizedInstances: Bool?
-
A VolumeConfigurations object that describes the layer’s Amazon EBS volumes.
Declaration
Swift
public let volumeConfigurations: [VolumeConfiguration]?
-
init(attributes:autoAssignElasticIps:autoAssignPublicIps:cloudWatchLogsConfiguration:customInstanceProfileArn:customJson:customRecipes:customSecurityGroupIds:enableAutoHealing:installUpdatesOnBoot:lifecycleEventConfiguration:name:packages:shortname:stackId:type:useEbsOptimizedInstances:volumeConfigurations:)
Undocumented
Declaration
Swift
public init(attributes: [LayerAttributesKeys : String]? = nil, autoAssignElasticIps: Bool? = nil, autoAssignPublicIps: Bool? = nil, cloudWatchLogsConfiguration: CloudWatchLogsConfiguration? = nil, customInstanceProfileArn: String? = nil, customJson: String? = nil, customRecipes: Recipes? = nil, customSecurityGroupIds: [String]? = nil, enableAutoHealing: Bool? = nil, installUpdatesOnBoot: Bool? = nil, lifecycleEventConfiguration: LifecycleEventConfiguration? = nil, name: String, packages: [String]? = nil, shortname: String, stackId: String, type: LayerType, useEbsOptimizedInstances: Bool? = nil, volumeConfigurations: [VolumeConfiguration]? = nil)