AWSLocationTimeZone
Objective-C
@interface AWSLocationTimeZone
Swift
class AWSLocationTimeZone
Information about a time zone. Includes the name of the time zone and the offset from UTC in seconds.
Required parameters: [Name]
-
The name of the time zone, following the IANA time zone standard. For example,
America/Los_Angeles
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable name;
Swift
var name: String? { get set }
-
The time zone’s offset, in seconds, from UTC.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable offset;
Swift
var offset: NSNumber? { get set }