CreateClusterRequest

public struct CreateClusterRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The type of HSM to use in the cluster. Currently the only allowed value is hsm1.medium.

    Declaration

    Swift

    public let hsmType: String
  • The identifier (ID) of the cluster backup to restore. Use this value to restore the cluster from a backup instead of creating a new cluster. To find the backup ID, use DescribeBackups.

    Declaration

    Swift

    public let sourceBackupId: String?
  • The identifiers (IDs) of the subnets where you are creating the cluster. You must specify at least one subnet. If you specify multiple subnets, they must meet the following criteria: All subnets must be in the same virtual private cloud (VPC). You can specify only one subnet per Availability Zone.

    Declaration

    Swift

    public let subnetIds: [String]
  • Tags to apply to the CloudHSM cluster during creation.

    Declaration

    Swift

    public let tagList: [Tag]?
  • Undocumented

    Declaration

    Swift

    public init(hsmType: String, sourceBackupId: String? = nil, subnetIds: [String], tagList: [Tag]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws