Layer

public struct Layer : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • arn

    The Amazon Resource Number (ARN) of a layer.

    Declaration

    Swift

    public let arn: String?
  • The layer attributes. For the HaproxyStatsPassword, MysqlRootPassword, and GangliaPassword attributes, AWS OpsWorks Stacks returns **FILTERED** instead of the actual value For an ECS Cluster layer, AWS OpsWorks Stacks the EcsClusterArn attribute is set 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?
  • The Amazon CloudWatch Logs configuration settings for the layer.

    Declaration

    Swift

    public let cloudWatchLogsConfiguration: CloudWatchLogsConfiguration?
  • Date when the layer was created.

    Declaration

    Swift

    public let createdAt: String?
  • The ARN of the default 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 the layer’s custom stack configuration and deployment attributes.

    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]?
  • AWS OpsWorks Stacks supports five lifecycle events: setup, configuration, deploy, undeploy, and shutdown. For each layer, AWS OpsWorks Stacks runs a set of standard recipes for each event. You can also provide custom recipes for any or all layers and events. AWS OpsWorks Stacks runs custom event recipes after the standard recipes. LayerCustomRecipes specifies the custom recipes for a particular layer to be run in response to each of the five events. To specify a recipe, use the cookbook’s directory name in the repository followed by two colons and the recipe name, which is the recipe’s file name without the .rb extension. For example: phpapp2::dbsetup specifies the dbsetup.rb recipe in the repository’s phpapp2 folder.

    Declaration

    Swift

    public let defaultRecipes: Recipes?
  • An array containing the layer’s security group names.

    Declaration

    Swift

    public let defaultSecurityGroupNames: [String]?
  • Whether auto healing is disabled 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. If this value is set 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?
  • A LifeCycleEventConfiguration object that specifies the Shutdown event configuration.

    Declaration

    Swift

    public let lifecycleEventConfiguration: LifecycleEventConfiguration?
  • The layer name.

    Declaration

    Swift

    public let name: String?
  • An array of Package objects that describe the layer’s packages.

    Declaration

    Swift

    public let packages: [String]?
  • The layer short name.

    Declaration

    Swift

    public let shortname: String?
  • The layer stack ID.

    Declaration

    Swift

    public let stackId: String?
  • The layer type.

    Declaration

    Swift

    public let type: LayerType?
  • Whether the layer uses 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(arn: String? = nil, attributes: [LayerAttributesKeys : String]? = nil, autoAssignElasticIps: Bool? = nil, autoAssignPublicIps: Bool? = nil, cloudWatchLogsConfiguration: CloudWatchLogsConfiguration? = nil, createdAt: String? = nil, customInstanceProfileArn: String? = nil, customJson: String? = nil, customRecipes: Recipes? = nil, customSecurityGroupIds: [String]? = nil, defaultRecipes: Recipes? = nil, defaultSecurityGroupNames: [String]? = nil, enableAutoHealing: Bool? = nil, installUpdatesOnBoot: Bool? = nil, layerId: String? = nil, lifecycleEventConfiguration: LifecycleEventConfiguration? = nil, name: String? = nil, packages: [String]? = nil, shortname: String? = nil, stackId: String? = nil, type: LayerType? = nil, useEbsOptimizedInstances: Bool? = nil, volumeConfigurations: [VolumeConfiguration]? = nil)