Class: Aws::OpsWorks::Stack

Inherits:
Object
  • Object
show all
Extended by:
Deprecations
Defined in:
lib/aws-sdk-opsworks/stack.rb

Defined Under Namespace

Classes: Collection

Read-Only Attributes collapse

Actions collapse

Associations collapse

Instance Method Summary collapse

Constructor Details

#initialize(id, options = {}) ⇒ Stack #initialize(options = {}) ⇒ Stack

Returns a new instance of Stack.

Overloads:

  • #initialize(id, options = {}) ⇒ Stack

    Parameters:

    • id (String)

    Options Hash (options):

  • #initialize(options = {}) ⇒ Stack

    Options Hash (options):

    • :id (required, String)
    • :client (Client)


22
23
24
25
26
27
28
# File 'lib/aws-sdk-opsworks/stack.rb', line 22

def initialize(*args)
  options = Hash === args.last ? args.pop.dup : {}
  @id = extract_id(args, options)
  @data = options.delete(:data)
  @client = options.delete(:client) || Client.new(options)
  @waiter_block_warned = false
end

Instance Method Details

#agent_versionString

The agent version. This parameter is set to ‘LATEST` for auto-update. or a version number for a fixed agent version.

Returns:

  • (String)


217
218
219
# File 'lib/aws-sdk-opsworks/stack.rb', line 217

def agent_version
  data[:agent_version]
end

#arnString

The stack’s ARN.

Returns:

  • (String)


51
52
53
# File 'lib/aws-sdk-opsworks/stack.rb', line 51

def arn
  data[:arn]
end

#attributesHash<String,String>

The stack’s attributes.

Returns:

  • (Hash<String,String>)


74
75
76
# File 'lib/aws-sdk-opsworks/stack.rb', line 74

def attributes
  data[:attributes]
end

#chef_configurationTypes::ChefConfiguration

A ‘ChefConfiguration` object that specifies whether to enable Berkshelf and the Berkshelf version. For more information, see [Create a New Stack].

[1]: docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-creating.html



159
160
161
# File 'lib/aws-sdk-opsworks/stack.rb', line 159

def chef_configuration
  data[:chef_configuration]
end

#clientClient

Returns:



224
225
226
# File 'lib/aws-sdk-opsworks/stack.rb', line 224

def client
  @client
end

#configuration_managerTypes::StackConfigurationManager

The configuration manager.



147
148
149
# File 'lib/aws-sdk-opsworks/stack.rb', line 147

def configuration_manager
  data[:configuration_manager]
end

#create_layer(options = {}) ⇒ Layer

Examples:

Request syntax with placeholder values


layer = stack.create_layer({
  type: "aws-flow-ruby", # required, accepts aws-flow-ruby, ecs-cluster, java-app, lb, web, php-app, rails-app, nodejs-app, memcached, db-master, monitoring-master, custom
  name: "String", # required
  shortname: "String", # required
  attributes: {
    "EcsClusterArn" => "String",
  },
  cloud_watch_logs_configuration: {
    enabled: false,
    log_streams: [
      {
        log_group_name: "String",
        datetime_format: "String",
        time_zone: "LOCAL", # accepts LOCAL, UTC
        file: "String",
        file_fingerprint_lines: "String",
        multi_line_start_pattern: "String",
        initial_position: "start_of_file", # accepts start_of_file, end_of_file
        encoding: "ascii", # accepts 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
        buffer_duration: 1,
        batch_count: 1,
        batch_size: 1,
      },
    ],
  },
  custom_instance_profile_arn: "String",
  custom_json: "String",
  custom_security_group_ids: ["String"],
  packages: ["String"],
  volume_configurations: [
    {
      mount_point: "String", # required
      raid_level: 1,
      number_of_disks: 1, # required
      size: 1, # required
      volume_type: "String",
      iops: 1,
      encrypted: false,
    },
  ],
  enable_auto_healing: false,
  auto_assign_elastic_ips: false,
  auto_assign_public_ips: false,
  custom_recipes: {
    setup: ["String"],
    configure: ["String"],
    deploy: ["String"],
    undeploy: ["String"],
    shutdown: ["String"],
  },
  install_updates_on_boot: false,
  use_ebs_optimized_instances: false,
  lifecycle_event_configuration: {
    shutdown: {
      execution_timeout: 1,
      delay_until_elb_connections_drained: false,
    },
  },
})

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Options Hash (options):

  • :type (required, 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.

  • :name (required, String)

    The layer name, which is used by the console.

  • :shortname (required, 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].

    [1]: docs.aws.amazon.com/opsworks/latest/userguide/layers.html

  • :attributes (Hash<String,String>)

    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.

  • :cloud_watch_logs_configuration (Types::CloudWatchLogsConfiguration)

    Specifies CloudWatch Logs configuration options for the layer. For more information, see CloudWatchLogsLogStream.

  • :custom_instance_profile_arn (String)

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

    [1]: docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html

  • :custom_json (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.

    [1]: docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook-json-override.html

  • :custom_security_group_ids (Array<String>)

    An array containing the layer custom security group IDs.

  • :packages (Array<String>)

    An array of ‘Package` objects that describes the layer packages.

  • :volume_configurations (Array<Types::VolumeConfiguration>)

    A ‘VolumeConfigurations` object that describes the layer’s Amazon EBS volumes.

  • :enable_auto_healing (Boolean)

    Whether to disable auto healing for the layer.

  • :auto_assign_elastic_ips (Boolean)

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

    [1]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html [2]: docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html

  • :auto_assign_public_ips (Boolean)

    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].

    [1]: docs.aws.amazon.com/opsworks/latest/userguide/workinglayers-basics-edit.html

  • :custom_recipes (Types::Recipes)

    A ‘LayerCustomRecipes` object that specifies the layer custom recipes.

  • :install_updates_on_boot (Boolean)

    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.

    <note markdown=“1”> To ensure that your instances have the latest security updates, we strongly recommend using the default value of ‘true`.

    </note>
    
  • :use_ebs_optimized_instances (Boolean)

    Whether to use Amazon EBS-optimized instances.

  • :lifecycle_event_configuration (Types::LifecycleEventConfiguration)

    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.

Returns:



513
514
515
516
517
518
519
520
521
522
# File 'lib/aws-sdk-opsworks/stack.rb', line 513

def create_layer(options = {})
  options = options.merge(stack_id: @id)
  resp = Aws::Plugins::UserAgent.feature('resource') do
    @client.create_layer(options)
  end
  Layer.new(
    id: resp.data.layer_id,
    client: @client
  )
end

#created_atString

The date when the stack was created.

Returns:

  • (String)


198
199
200
# File 'lib/aws-sdk-opsworks/stack.rb', line 198

def created_at
  data[:created_at]
end

#custom_cookbooks_sourceTypes::Source

Contains the information required to retrieve an app or cookbook from a repository. For more information, see [Adding Apps] or [Cookbooks and Recipes].

[1]: docs.aws.amazon.com/opsworks/latest/userguide/workingapps-creating.html [2]: docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook.html

Returns:



185
186
187
# File 'lib/aws-sdk-opsworks/stack.rb', line 185

def custom_cookbooks_source
  data[:custom_cookbooks_source]
end

#custom_jsonString

A JSON object that contains user-defined attributes to be added to the stack configuration and deployment attributes. You can use custom JSON to override the corresponding default stack configuration attribute values or to pass data to recipes. The string should be in the following format:

‘“”value1“, ”key2“: ”value2“,…”`

For more information on custom JSON, see [Use Custom JSON to Modify the Stack Configuration Attributes].

[1]: docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html

Returns:

  • (String)


141
142
143
# File 'lib/aws-sdk-opsworks/stack.rb', line 141

def custom_json
  data[:custom_json]
end

#dataTypes::Stack

Returns the data for this Aws::OpsWorks::Stack. Calls Client#describe_stacks if #data_loaded? is ‘false`.

Returns:



246
247
248
249
# File 'lib/aws-sdk-opsworks/stack.rb', line 246

def data
  load unless @data
  @data
end

#data_loaded?Boolean

Returns ‘true` if this resource is loaded. Accessing attributes or #data on an unloaded resource will trigger a call to #load.

Returns:

  • (Boolean)

    Returns ‘true` if this resource is loaded. Accessing attributes or #data on an unloaded resource will trigger a call to #load.



254
255
256
# File 'lib/aws-sdk-opsworks/stack.rb', line 254

def data_loaded?
  !!@data
end

#default_availability_zoneString

The stack’s default Availability Zone. For more information, see [Regions and Endpoints].

[1]: docs.aws.amazon.com/general/latest/gr/rande.html

Returns:

  • (String)


115
116
117
# File 'lib/aws-sdk-opsworks/stack.rb', line 115

def default_availability_zone
  data[:default_availability_zone]
end

#default_instance_profile_arnString

The ARN of an IAM profile that is the default profile for all of the stack’s EC2 instances. For more information about IAM ARNs, see [Using Identifiers].

[1]: docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html

Returns:

  • (String)


92
93
94
# File 'lib/aws-sdk-opsworks/stack.rb', line 92

def default_instance_profile_arn
  data[:default_instance_profile_arn]
end

#default_osString

The stack’s default operating system.

Returns:

  • (String)


98
99
100
# File 'lib/aws-sdk-opsworks/stack.rb', line 98

def default_os
  data[:default_os]
end

#default_root_device_typeString

The default root device type. This value is used by default for all instances in the stack, but you can override it when you create an instance. For more information, see [Storage for the Root Device].

[1]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/ComponentsAMIs.html#storage-for-the-root-device

Returns:

  • (String)


210
211
212
# File 'lib/aws-sdk-opsworks/stack.rb', line 210

def default_root_device_type
  data[:default_root_device_type]
end

#default_ssh_key_nameString

A default Amazon EC2 key pair for the stack’s instances. You can override this value when you create or update an instance.

Returns:

  • (String)


192
193
194
# File 'lib/aws-sdk-opsworks/stack.rb', line 192

def default_ssh_key_name
  data[:default_ssh_key_name]
end

#default_subnet_idString

The default subnet ID; applicable only if the stack is running in a VPC.

Returns:

  • (String)


122
123
124
# File 'lib/aws-sdk-opsworks/stack.rb', line 122

def default_subnet_id
  data[:default_subnet_id]
end

#delete(options = {}) ⇒ EmptyStructure

Examples:

Request syntax with placeholder values


stack.delete()

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Returns:

  • (EmptyStructure)


529
530
531
532
533
534
535
# File 'lib/aws-sdk-opsworks/stack.rb', line 529

def delete(options = {})
  options = options.merge(stack_id: @id)
  resp = Aws::Plugins::UserAgent.feature('resource') do
    @client.delete_stack(options)
  end
  resp.data
end

#hostname_themeString

The stack host name theme, with spaces replaced by underscores.

Returns:

  • (String)


104
105
106
# File 'lib/aws-sdk-opsworks/stack.rb', line 104

def hostname_theme
  data[:hostname_theme]
end

#idString

Returns:

  • (String)


33
34
35
# File 'lib/aws-sdk-opsworks/stack.rb', line 33

def id
  @id
end

#identifiersObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Deprecated.


579
580
581
# File 'lib/aws-sdk-opsworks/stack.rb', line 579

def identifiers
  { id: @id }
end

#layers(options = {}) ⇒ Layer::Collection

Examples:

Request syntax with placeholder values


layers = stack.layers({
  layer_ids: ["String"],
})

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Options Hash (options):

  • :layer_ids (Array<String>)

    An array of layer IDs that specify the layers to be described. If you omit this parameter, ‘DescribeLayers` returns a description of every layer in the specified stack.

Returns:



550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
# File 'lib/aws-sdk-opsworks/stack.rb', line 550

def layers(options = {})
  batches = Enumerator.new do |y|
    batch = []
    options = options.merge(stack_id: @id)
    resp = Aws::Plugins::UserAgent.feature('resource') do
      @client.describe_layers(options)
    end
    resp.data.layers.each do |l|
      batch << Layer.new(
        id: l.layer_id,
        data: l,
        client: @client
      )
    end
    y.yield(batch)
  end
  Layer::Collection.new(batches)
end

#loadself Also known as: reload

Loads, or reloads #data for the current Aws::OpsWorks::Stack. Returns ‘self` making it possible to chain methods.

stack.reload.data

Returns:

  • (self)


234
235
236
237
238
239
240
# File 'lib/aws-sdk-opsworks/stack.rb', line 234

def load
  resp = Aws::Plugins::UserAgent.feature('resource') do
    @client.describe_stacks(stack_ids: [@id])
  end
  @data = resp.stacks[0]
  self
end

#nameString

The stack name.

Returns:

  • (String)


45
46
47
# File 'lib/aws-sdk-opsworks/stack.rb', line 45

def name
  data[:name]
end

#regionString

The stack AWS region, such as “ap-northeast-2”. For more information about AWS regions, see [Regions and Endpoints].

[1]: docs.aws.amazon.com/general/latest/gr/rande.html

Returns:

  • (String)


62
63
64
# File 'lib/aws-sdk-opsworks/stack.rb', line 62

def region
  data[:region]
end

#service_role_arnString

The stack AWS Identity and Access Management (IAM) role.

Returns:

  • (String)


80
81
82
# File 'lib/aws-sdk-opsworks/stack.rb', line 80

def service_role_arn
  data[:service_role_arn]
end

#stack_idString

The stack ID.

Returns:

  • (String)


39
40
41
# File 'lib/aws-sdk-opsworks/stack.rb', line 39

def stack_id
  data[:stack_id]
end

#summaryStackSummary

Returns:



570
571
572
573
574
575
# File 'lib/aws-sdk-opsworks/stack.rb', line 570

def summary
  StackSummary.new(
    stack_id: @id,
    client: @client
  )
end

#use_custom_cookbooksBoolean

Whether the stack uses custom cookbooks.

Returns:

  • (Boolean)


165
166
167
# File 'lib/aws-sdk-opsworks/stack.rb', line 165

def use_custom_cookbooks
  data[:use_custom_cookbooks]
end

#use_opsworks_security_groupsBoolean

Whether the stack automatically associates the AWS OpsWorks Stacks built-in security groups with the stack’s layers.

Returns:

  • (Boolean)


172
173
174
# File 'lib/aws-sdk-opsworks/stack.rb', line 172

def use_opsworks_security_groups
  data[:use_opsworks_security_groups]
end

#vpc_idString

The VPC ID; applicable only if the stack is running in a VPC.

Returns:

  • (String)


68
69
70
# File 'lib/aws-sdk-opsworks/stack.rb', line 68

def vpc_id
  data[:vpc_id]
end

#wait_until(options = {}) {|resource| ... } ⇒ Resource

Deprecated.

Use [Aws::OpsWorks::Client] #wait_until instead

Note:

The waiting operation is performed on a copy. The original resource remains unchanged.

Waiter polls an API operation until a resource enters a desired state.

## Basic Usage

Waiter will polls until it is successful, it fails by entering a terminal state, or until a maximum number of attempts are made.

# polls in a loop until condition is true
resource.wait_until(options) {|resource| condition}

## Example

instance.wait_until(max_attempts:10, delay:5) do |instance|
  instance.state.name == 'running'
end

## Configuration

You can configure the maximum number of polling attempts, and the delay (in seconds) between each polling attempt. The waiting condition is set by passing a block to #wait_until:

# poll for ~25 seconds
resource.wait_until(max_attempts:5,delay:5) {|resource|...}

## Callbacks

You can be notified before each polling attempt and before each delay. If you throw ‘:success` or `:failure` from these callbacks, it will terminate the waiter.

started_at = Time.now
# poll for 1 hour, instead of a number of attempts
proc = Proc.new do |attempts, response|
  throw :failure if Time.now - started_at > 3600
end

  # disable max attempts
instance.wait_until(before_wait:proc, max_attempts:nil) {...}

## Handling Errors

When a waiter is successful, it returns the Resource. When a waiter fails, it raises an error.

begin
  resource.wait_until(...)
rescue Aws::Waiters::Errors::WaiterFailed
  # resource did not enter the desired state in time
end

attempts attempt in seconds invoked before each attempt invoked before each wait

Parameters:

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :max_attempts (Integer) — default: 10

    Maximum number of

  • :delay (Integer) — default: 10

    Delay between each

  • :before_attempt (Proc) — default: nil

    Callback

  • :before_wait (Proc) — default: nil

    Callback

Yield Parameters:

  • resource (Resource)

    to be used in the waiting condition.

Returns:

  • (Resource)

    if the waiter was successful

Raises:

  • (Aws::Waiters::Errors::FailureStateError)

    Raised when the waiter terminates because the waiter has entered a state that it will not transition out of, preventing success.

    yet successful.

  • (Aws::Waiters::Errors::UnexpectedError)

    Raised when an error is encountered while polling for a resource that is not expected.

  • (NotImplementedError)

    Raised when the resource does not



338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
# File 'lib/aws-sdk-opsworks/stack.rb', line 338

def wait_until(options = {}, &block)
  self_copy = self.dup
  attempts = 0
  options[:max_attempts] = 10 unless options.key?(:max_attempts)
  options[:delay] ||= 10
  options[:poller] = Proc.new do
    attempts += 1
    if block.call(self_copy)
      [:success, self_copy]
    else
      self_copy.reload unless attempts == options[:max_attempts]
      :retry
    end
  end
  Aws::Plugins::UserAgent.feature('resource') do
    Aws::Waiters::Waiter.new(options).wait({})
  end
end