AWSPinpointEnvironment

Objective-C

@interface AWSPinpointEnvironment : NSObject

Swift

class AWSPinpointEnvironment : NSObject

AWS Pinpoint Environment.

  • The short version string of the app. Defaults to [[[NSBundle mainBundle] infoDictionary] objectForKey:@“CFBundleShortVersionString”]

    @returns appVersion.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable appVersion;

    Swift

    var appVersion: String? { get set }
  • The bundle version of the app. Defaults to [[[NSBundle mainBundle] infoDictionary] objectForKey:@“CFBundleVersion”]

    @returns appBuild.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable appBuild;

    Swift

    var appBuild: String? { get set }
  • The bundle identifier of the app. Defaults to [[[NSBundle mainBundle] infoDictionary] objectForKey:@“CFBundleIdentifier”]

    @returns appPackageName.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable appPackageName;

    Swift

    var appPackageName: String? { get set }
  • The bundle display name of the app. Defaults to [[[NSBundle mainBundle] infoDictionary] objectForKey:@“CFBundleDisplayName”]

    @returns appName.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable appName;

    Swift

    var appName: String? { get set }