AWSIoTOpenSearchAction
Objective-C
@interface AWSIoTOpenSearchAction
Swift
class AWSIoTOpenSearchAction
Describes an action that writes data to an Amazon OpenSearch Service domain.
Required parameters: [roleArn, endpoint, index, type, id]
-
The endpoint of your OpenSearch domain.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable endpoint;
Swift
var endpoint: String? { get set }
-
The unique identifier for the document you are storing.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable identifier;
Swift
var identifier: String? { get set }
-
The OpenSearch index where you want to store your data.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable index;
Swift
var index: String? { get set }
-
The IAM role ARN that has access to OpenSearch.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable roleArn;
Swift
var roleArn: String? { get set }
-
The type of document you are storing.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable types;
Swift
var types: String? { get set }