Class: Aws::AutoScaling::LaunchConfiguration

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

Defined Under Namespace

Classes: Collection

Read-Only Attributes collapse

Actions collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, options = {}) ⇒ LaunchConfiguration #initialize(options = {}) ⇒ LaunchConfiguration

Returns a new instance of LaunchConfiguration.

Overloads:



19
20
21
22
23
24
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 19

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

Instance Method Details

#associate_public_ip_addressBoolean

[EC2-VPC] Indicates whether to assign a public IP address to each instance.

Returns:

  • (Boolean)


152
153
154
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 152

def associate_public_ip_address
  data[:associate_public_ip_address]
end

#block_device_mappingsArray<Types::BlockDeviceMapping>

A block device mapping, which specifies the block devices for the instance.

Returns:



112
113
114
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 112

def block_device_mappings
  data[:block_device_mappings]
end

The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. This parameter can only be used if you are launching EC2-Classic instances. For more information, see [ClassicLink] in the *Amazon Elastic Compute Cloud User Guide*.

[1]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html

Returns:

  • (String)


67
68
69
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 67

def classic_link_vpc_id
  data[:classic_link_vpc_id]
end

The IDs of one or more security groups for the VPC specified in ‘ClassicLinkVPCId`. This parameter is required if you specify a ClassicLink-enabled VPC, and cannot be used otherwise. For more information, see [ClassicLink] in the *Amazon Elastic Compute Cloud User Guide*.

[1]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html

Returns:

  • (Array<String>)


81
82
83
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 81

def classic_link_vpc_security_groups
  data[:classic_link_vpc_security_groups]
end

#clientClient

Returns:



167
168
169
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 167

def client
  @client
end

#created_timeTime

The creation date and time for the launch configuration.

Returns:

  • (Time)


138
139
140
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 138

def created_time
  data[:created_time]
end

#dataTypes::LaunchConfiguration



187
188
189
190
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 187

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.



195
196
197
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 195

def data_loaded?
  !!@data
end

#delete(options = {}) ⇒ EmptyStructure

Examples:

Request syntax with placeholder values


launch_configuration.delete()

Parameters:

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

    ({})

Returns:

  • (EmptyStructure)


301
302
303
304
305
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 301

def delete(options = {})
  options = options.merge(launch_configuration_name: @name)
  resp = @client.delete_launch_configuration(options)
  resp.data
end

#ebs_optimizedBoolean

Controls whether the instance is optimized for EBS I/O (‘true`) or not (`false`).

Returns:

  • (Boolean)


145
146
147
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 145

def ebs_optimized
  data[:ebs_optimized]
end

#iam_instance_profileString

The name or Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instance.

Returns:

  • (String)


132
133
134
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 132

def iam_instance_profile
  data[:iam_instance_profile]
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.


309
310
311
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 309

def identifiers
  { name: @name }
end

#image_idString

The ID of the Amazon Machine Image (AMI).

Returns:

  • (String)


42
43
44
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 42

def image_id
  data[:image_id]
end

#instance_monitoringTypes::InstanceMonitoring

Controls whether instances in this group are launched with detailed (‘true`) or basic (`false`) monitoring.



119
120
121
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 119

def instance_monitoring
  data[:instance_monitoring]
end

#instance_typeString

The instance type for the instances.

Returns:

  • (String)


93
94
95
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 93

def instance_type
  data[:instance_type]
end

#kernel_idString

The ID of the kernel associated with the AMI.

Returns:

  • (String)


99
100
101
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 99

def kernel_id
  data[:kernel_id]
end

#key_nameString

The name of the key pair.

Returns:

  • (String)


48
49
50
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 48

def key_name
  data[:key_name]
end

#launch_configuration_arnString

The Amazon Resource Name (ARN) of the launch configuration.

Returns:

  • (String)


36
37
38
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 36

def launch_configuration_arn
  data[:launch_configuration_arn]
end

#loadself Also known as: reload

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

launch_configuration.reload.data

Returns:

  • (self)


177
178
179
180
181
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 177

def load
  resp = @client.describe_launch_configurations(launch_configuration_names: [@name])
  @data = resp.launch_configurations[0]
  self
end

#nameString Also known as: launch_configuration_name

Returns:

  • (String)


29
30
31
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 29

def name
  @name
end

#placement_tenancyString

The tenancy of the instance, either ‘default` or `dedicated`. An instance with `dedicated` tenancy runs in an isolated, single-tenant hardware and can only be launched into a VPC.

Returns:

  • (String)


160
161
162
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 160

def placement_tenancy
  data[:placement_tenancy]
end

#ramdisk_idString

The ID of the RAM disk associated with the AMI.

Returns:

  • (String)


105
106
107
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 105

def ramdisk_id
  data[:ramdisk_id]
end

#security_groupsArray<String>

The security groups to associate with the instances.

Returns:

  • (Array<String>)


54
55
56
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 54

def security_groups
  data[:security_groups]
end

#spot_priceString

The price to bid when launching Spot Instances.

Returns:

  • (String)


125
126
127
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 125

def spot_price
  data[:spot_price]
end

#user_dataString

The user data available to the instances.

Returns:

  • (String)


87
88
89
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 87

def user_data
  data[:user_data]
end

#wait_until(options = {}, &block) ⇒ Resource

Deprecated.

Use [Aws::AutoScaling::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) {|instance| instance.state.name == 'running' }

## 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

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



277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
# File 'lib/aws-sdk-autoscaling/launch_configuration.rb', line 277

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::Waiters::Waiter.new(options).wait({})
end