ModifyHostsRequest

public struct ModifyHostsRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Specify whether to enable or disable auto-placement.

    Declaration

    Swift

    public let autoPlacement: AutoPlacement?
  • The IDs of the Dedicated Hosts to modify.

    Declaration

    Swift

    public let hostIds: [String]
  • Indicates whether to enable or disable host recovery for the Dedicated Host. For more information, see Host Recovery in the Amazon Elastic Compute Cloud User Guide.

    Declaration

    Swift

    public let hostRecovery: HostRecovery?
  • Specifies the instance family to be supported by the Dedicated Host. Specify this parameter to modify a Dedicated Host to support multiple instance types within its current instance family. If you want to modify a Dedicated Host to support a specific instance type only, omit this parameter and specify InstanceType instead. You cannot specify InstanceFamily and InstanceType in the same request.

    Declaration

    Swift

    public let instanceFamily: String?
  • Specifies the instance type to be supported by the Dedicated Host. Specify this parameter to modify a Dedicated Host to support only a specific instance type. If you want to modify a Dedicated Host to support multiple instance types in its current instance family, omit this parameter and specify InstanceFamily instead. You cannot specify InstanceType and InstanceFamily in the same request.

    Declaration

    Swift

    public let instanceType: String?
  • Undocumented

    Declaration

    Swift

    public init(autoPlacement: AutoPlacement? = nil, hostIds: [String], hostRecovery: HostRecovery? = nil, instanceFamily: String? = nil, instanceType: String? = nil)