You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SMS::Types::ServerGroupLaunchConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ServerGroupLaunchConfiguration as input to an Aws::Client method, you can use a vanilla Hash:

{
  server_group_id: "ServerGroupId",
  launch_order: 1,
  server_launch_configurations: [
    {
      server: {
        server_id: "ServerId",
        server_type: "VIRTUAL_MACHINE", # accepts VIRTUAL_MACHINE
        vm_server: {
          vm_server_address: {
            vm_manager_id: "VmManagerId",
            vm_id: "VmId",
          },
          vm_name: "VmName",
          vm_manager_name: "VmManagerName",
          vm_manager_type: "VSPHERE", # accepts VSPHERE, SCVMM, HYPERV-MANAGER
          vm_path: "VmPath",
        },
        replication_job_id: "ReplicationJobId",
        replication_job_terminated: false,
      },
      logical_id: "LogicalId",
      vpc: "VPC",
      subnet: "Subnet",
      security_group: "SecurityGroup",
      ec2_key_name: "EC2KeyName",
      user_data: {
        s3_location: {
          bucket: "S3BucketName",
          key: "S3KeyName",
        },
      },
      instance_type: "InstanceType",
      associate_public_ip_address: false,
      iam_instance_profile_name: "RoleName",
      configure_script: {
        bucket: "S3BucketName",
        key: "S3KeyName",
      },
      configure_script_type: "SHELL_SCRIPT", # accepts SHELL_SCRIPT, POWERSHELL_SCRIPT
    },
  ],
}

Launch configuration for a server group.

Instance Attribute Summary collapse

Instance Attribute Details

#launch_orderInteger

The launch order of servers in the server group.

Returns:

  • (Integer)

    The launch order of servers in the server group.

#server_group_idString

The ID of the server group with which the launch configuration is associated.

Returns:

  • (String)

    The ID of the server group with which the launch configuration is associated.

#server_launch_configurationsArray<Types::ServerLaunchConfiguration>

The launch configuration for servers in the server group.

Returns: