AWSRekognitionStartMediaAnalysisJobRequest

Objective-C

@interface AWSRekognitionStartMediaAnalysisJobRequest

Swift

class AWSRekognitionStartMediaAnalysisJobRequest
  • Idempotency token used to prevent the accidental creation of duplicate versions. If you use the same token with multiple StartMediaAnalysisJobRequest requests, the same response is returned. Use ClientRequestToken to prevent the same request from being processed more than once.

    Declaration

    Objective-C

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

    Swift

    var clientRequestToken: String? { get set }
  • Input data to be analyzed by the job.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSRekognitionMediaAnalysisInput *_Nullable input;

    Swift

    var input: AWSRekognitionMediaAnalysisInput? { get set }
  • The name of the job. Does not have to be unique.

    Declaration

    Objective-C

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

    Swift

    var jobName: String? { get set }
  • The identifier of customer managed AWS KMS key (name or ARN). The key is used to encrypt images copied into the service. The key is also used to encrypt results and manifest files written to the output Amazon S3 bucket.

    Declaration

    Objective-C

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

    Swift

    var kmsKeyId: String? { get set }
  • Configuration options for the media analysis job to be created.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSRekognitionMediaAnalysisOperationsConfig *_Nullable operationsConfig;

    Swift

    var operationsConfig: AWSRekognitionMediaAnalysisOperationsConfig? { get set }
  • The Amazon S3 bucket location to store the results.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSRekognitionMediaAnalysisOutputConfig *_Nullable outputConfig;

    Swift

    var outputConfig: AWSRekognitionMediaAnalysisOutputConfig? { get set }