AWSLocationListKeysResponseEntry
Objective-C
@interface AWSLocationListKeysResponseEntry
Swift
class AWSLocationListKeysResponseEntry
An API key resource listed in your Amazon Web Services account.
Required parameters: [KeyName, ExpireTime, Restrictions, CreateTime, UpdateTime]
-
The timestamp of when the API key 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 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 }
-
The timestamp of when the API key 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 }