AWSLocationDescribeKeyResponse
Objective-C
@interface AWSLocationDescribeKeyResponse
Swift
class AWSLocationDescribeKeyResponse
-
The timestamp for when the API key resource was created in ISO 8601 format:
YYYY-MM-DDThh:mm:ss.sssZ
.Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable createTime;
Swift
var createTime: Date? { get set }
-
The optional description for the API key resource.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable detail;
Swift
var detail: String? { get set }
-
The timestamp for when the API key resource will expire in ISO 8601 format:
YYYY-MM-DDThh:mm:ss.sssZ
.Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable expireTime;
Swift
var expireTime: Date? { get set }
-
The key value/string of an API key.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable key;
Swift
var key: String? { get set }
-
The Amazon Resource Name (ARN) for the API key resource. Used when you need to specify a resource across all Amazon Web Services.
Format example:
arn:aws:geo:region:account-id:key/ExampleKey
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable keyArn;
Swift
var keyArn: String? { get set }
-
The name of the API key resource.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable keyName;
Swift
var keyName: String? { get set }
-
API Restrictions on the allowed actions, resources, and referers for an API key resource.
Declaration
Objective-C
@property (nonatomic, strong) AWSLocationApiKeyRestrictions *_Nullable restrictions;
Swift
var restrictions: AWSLocationApiKeyRestrictions? { get set }
-
Tags associated with the API key resource.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable tags;
Swift
var tags: [String : String]? { get set }
-
The timestamp for when the API key resource was last updated in ISO 8601 format:
YYYY-MM-DDThh:mm:ss.sssZ
.Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable updateTime;
Swift
var updateTime: Date? { get set }