AWSKMSCreateGrantRequest
Objective-C
@interface AWSKMSCreateGrantRequest
Swift
class AWSKMSCreateGrantRequest
-
Allows a cryptographic operation only when the encryption context matches or includes the encryption context specified in this structure. For more information about encryption context, see Encryption Context in the AWS Key Management Service Developer Guide.
Grant constraints are not applied to operations that do not support an encryption context, such as cryptographic operations with asymmetric CMKs and management operations, such as DescribeKey or RetireGrant.
Declaration
Objective-C
@property (nonatomic, strong) AWSKMSGrantConstraints *_Nullable constraints;
Swift
var constraints: AWSKMSGrantConstraints? { get set }
-
A list of grant tokens.
For more information, see Grant Tokens in the AWS Key Management Service Developer Guide.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable grantTokens;
Swift
var grantTokens: [String]? { get set }
-
The principal that is given permission to perform the operations that the grant permits.
To specify the principal, use the Amazon Resource Name (ARN) of an AWS principal. Valid AWS principals include AWS accounts (root), IAM users, IAM roles, federated users, and assumed role users. For examples of the ARN syntax to use for specifying a principal, see AWS Identity and Access Management (IAM) in the Example ARNs section of the AWS General Reference.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable granteePrincipal;
Swift
var granteePrincipal: String? { get set }
-
The unique identifier for the customer master key (CMK) that the grant applies to.
Specify the key ID or the Amazon Resource Name (ARN) of the CMK. To specify a CMK in a different AWS account, you must use the key ARN.
For example:
Key ID:
1234abcd-12ab-34cd-56ef-1234567890ab
Key ARN:
arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
To get the key ID and key ARN for a CMK, use ListKeys or DescribeKey.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable keyId;
Swift
var keyId: String? { get set }
-
A friendly name for the grant. Use this value to prevent the unintended creation of duplicate grants when retrying this request.
When this value is absent, all
CreateGrant
requests result in a new grant with a uniqueGrantId
even if all the supplied parameters are identical. This can result in unintended duplicates when you retry theCreateGrant
request.When this value is present, you can retry a
CreateGrant
request with identical parameters; if the grant already exists, the originalGrantId
is returned without creating a new grant. Note that the returned grant token is unique with everyCreateGrant
request, even when a duplicateGrantId
is returned. All grant tokens for the same grant ID can be used interchangeably.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable name;
Swift
var name: String? { get set }
-
A list of operations that the grant permits.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable operations;
Swift
var operations: [String]? { get set }
-
The principal that is given permission to retire the grant by using RetireGrant operation.
To specify the principal, use the Amazon Resource Name (ARN) of an AWS principal. Valid AWS principals include AWS accounts (root), IAM users, federated users, and assumed role users. For examples of the ARN syntax to use for specifying a principal, see AWS Identity and Access Management (IAM) in the Example ARNs section of the AWS General Reference.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable retiringPrincipal;
Swift
var retiringPrincipal: String? { get set }