CreateCustomKeyStoreRequest
public struct CreateCustomKeyStoreRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Identifies the AWS CloudHSM cluster for the custom key store. Enter the cluster ID of any active AWS CloudHSM cluster that is not already associated with a custom key store. To find the cluster ID, use the DescribeClusters operation.
Declaration
Swift
public let cloudHsmClusterId: String
-
Specifies a friendly name for the custom key store. The name must be unique in your AWS account.
Declaration
Swift
public let customKeyStoreName: String
-
Enter the password of the kmsuser crypto user (CU) account in the specified AWS CloudHSM cluster. AWS KMS logs into the cluster as this user to manage key material on your behalf. The password must be a string of 7 to 32 characters. Its value is case sensitive. This parameter tells AWS KMS the kmsuser account password; it does not change the password in the AWS CloudHSM cluster.
Declaration
Swift
public let keyStorePassword: String
-
Enter the content of the trust anchor certificate for the cluster. This is the content of the customerCA.crt file that you created when you initialized the cluster.
Declaration
Swift
public let trustAnchorCertificate: String
-
Undocumented
Declaration
Swift
public init(cloudHsmClusterId: String, customKeyStoreName: String, keyStorePassword: String, trustAnchorCertificate: String)
-
Declaration
Swift
public func validate(name: String) throws