AWSPinpointTargetingCreateApplicationRequest

Objective-C

@interface AWSPinpointTargetingCreateApplicationRequest

Swift

class AWSPinpointTargetingCreateApplicationRequest

Specifies the display name of an application and the tags to associate with the application.

Required parameters: [Name]

  • The display name of the application. This name is displayed as the Project name on the Amazon Pinpoint console.

    Declaration

    Objective-C

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

    Swift

    var name: String? { get set }
  • A string-to-string map of key-value pairs that defines the tags to associate with the application. Each tag consists of a required tag key and an associated tag value.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable tags;

    Swift

    var tags: [String : String]? { get set }