AWSKMSCreateCustomKeyStoreRequest
Objective-C
@interface AWSKMSCreateCustomKeyStoreRequest
Swift
class AWSKMSCreateCustomKeyStoreRequest
-
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
Objective-C
@property (nonatomic, strong) NSString *_Nullable cloudHsmClusterId;
Swift
var cloudHsmClusterId: String? { get set }
-
Specifies a friendly name for the custom key store. The name must be unique in your AWS account.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable customKeyStoreName;
Swift
var customKeyStoreName: String? { get set }
-
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
Objective-C
@property (nonatomic, strong) NSString *_Nullable keyStorePassword;
Swift
var keyStorePassword: String? { get set }
-
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
Objective-C
@property (nonatomic, strong) NSString *_Nullable trustAnchorCertificate;
Swift
var trustAnchorCertificate: String? { get set }