UpdateLayerRequest

public struct UpdateLayerRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • One or more user-defined key/value pairs to be added to the stack attributes.

    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 all of 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.

    Declaration

    Swift

    public let customJson: String?
  • A LayerCustomRecipes object that specifies the layer’s custom recipes.

    Declaration

    Swift

    public let customRecipes: Recipes?
  • An array containing the layer’s 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 manually running yum (Amazon Linux) or apt-get (Ubuntu) on the instances. We strongly recommend using the default value of true, to ensure that your instances have the latest security updates.

    Declaration

    Swift

    public let installUpdatesOnBoot: Bool?
  • The layer ID.

    Declaration

    Swift

    public let layerId: String
  • Undocumented

    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 describe the layer’s 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. 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

    Declaration

    Swift

    public let shortname: String?
  • 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]?
  • 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, layerId: String, lifecycleEventConfiguration: LifecycleEventConfiguration? = nil, name: String? = nil, packages: [String]? = nil, shortname: String? = nil, useEbsOptimizedInstances: Bool? = nil, volumeConfigurations: [VolumeConfiguration]? = nil)