Class: Aws::AutoScaling::Types::LaunchConfigurationNamesType

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-autoscaling/types.rb

Overview

Note:

When making an API call, you may pass LaunchConfigurationNamesType data as a hash:

{
  launch_configuration_names: ["ResourceName"],
  next_token: "XmlString",
  max_records: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#launch_configuration_namesArray<String>

The launch configuration names. If you omit this parameter, all launch configurations are described.

Returns:

  • (Array<String>)


2795
2796
2797
2798
2799
2800
# File 'lib/aws-sdk-autoscaling/types.rb', line 2795

class LaunchConfigurationNamesType < Struct.new(
  :launch_configuration_names,
  :next_token,
  :max_records)
  include Aws::Structure
end

#max_recordsInteger

The maximum number of items to return with this call. The default value is 50 and the maximum value is 100.

Returns:

  • (Integer)


2795
2796
2797
2798
2799
2800
# File 'lib/aws-sdk-autoscaling/types.rb', line 2795

class LaunchConfigurationNamesType < Struct.new(
  :launch_configuration_names,
  :next_token,
  :max_records)
  include Aws::Structure
end

#next_tokenString

The token for the next set of items to return. (You received this token from a previous call.)

Returns:

  • (String)


2795
2796
2797
2798
2799
2800
# File 'lib/aws-sdk-autoscaling/types.rb', line 2795

class LaunchConfigurationNamesType < Struct.new(
  :launch_configuration_names,
  :next_token,
  :max_records)
  include Aws::Structure
end