AWSTranscribeStartMedicalScribeJobRequest
Objective-C
@interface AWSTranscribeStartMedicalScribeJobRequest
Swift
class AWSTranscribeStartMedicalScribeJobRequest
-
Makes it possible to specify which speaker is on which channel. For example, if the clinician is the first participant to speak, you would set
ChannelId
of the firstChannelDefinition
in the list to0
(to indicate the first channel) andParticipantRole
toCLINICIAN
(to indicate that it’s the clinician speaking). Then you would set theChannelId
of the secondChannelDefinition
in the list to1
(to indicate the second channel) andParticipantRole
toPATIENT
(to indicate that it’s the patient speaking).Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTranscribeMedicalScribeChannelDefinition *> *_Nullable channelDefinitions;
Swift
var channelDefinitions: [AWSTranscribeMedicalScribeChannelDefinition]? { get set }
-
The Amazon Resource Name (ARN) of an IAM role that has permissions to access the Amazon S3 bucket that contains your input files, write to the output bucket, and use your KMS key if supplied. If the role that you specify doesn’t have the appropriate permissions your request fails.
IAM role ARNs have the format
arn:partition:iam::account:role/role-name-with-path
. For example:arn:aws:iam::111122223333:role/Admin
.For more information, see IAM ARNs.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable dataAccessRoleArn;
Swift
var dataAccessRoleArn: String? { get set }
-
A map of plain text, non-secret key:value pairs, known as encryption context pairs, that provide an added layer of security for your data. For more information, see KMS encryption context and Asymmetric keys in KMS.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable KMSEncryptionContext;
Swift
var kmsEncryptionContext: [String : String]? { get set }
-
Describes the Amazon S3 location of the media file you want to use in your request.
For information on supported media formats, refer to the
MediaFormat
parameter or the Media formats section in the Amazon S3 Developer Guide.Declaration
Objective-C
@property (nonatomic, strong) AWSTranscribeMedia *_Nullable media;
Swift
var media: AWSTranscribeMedia? { get set }
-
A unique name, chosen by you, for your Medical Scribe job.
This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account. If you try to create a new job with the same name as an existing job, you get a
ConflictException
error.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable medicalScribeJobName;
Swift
var medicalScribeJobName: String? { get set }
-
The name of the Amazon S3 bucket where you want your Medical Scribe output stored. Do not include the
S3://
prefix of the specified bucket.Note that the role specified in the
DataAccessRoleArn
request parameter must have permission to use the specified location. You can change Amazon S3 permissions using the Amazon Web Services Management Console. See also Permissions Required for IAM User Roles.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable outputBucketName;
Swift
var outputBucketName: String? { get set }
-
The KMS key you want to use to encrypt your Medical Scribe output.
If using a key located in the current Amazon Web Services account, you can specify your KMS key in one of four ways:
Use the KMS key ID itself. For example,
1234abcd-12ab-34cd-56ef-1234567890ab
.Use an alias for the KMS key ID. For example,
alias/ExampleAlias
.Use the Amazon Resource Name (ARN) for the KMS key ID. For example,
arn:aws:kms:region:account-ID:key/1234abcd-12ab-34cd-56ef-1234567890ab
.Use the ARN for the KMS key alias. For example,
arn:aws:kms:region:account-ID:alias/ExampleAlias
.
If using a key located in a different Amazon Web Services account than the current Amazon Web Services account, you can specify your KMS key in one of two ways:
Use the ARN for the KMS key ID. For example,
arn:aws:kms:region:account-ID:key/1234abcd-12ab-34cd-56ef-1234567890ab
.Use the ARN for the KMS key alias. For example,
arn:aws:kms:region:account-ID:alias/ExampleAlias
.
If you do not specify an encryption key, your output is encrypted with the default Amazon S3 key (SSE-S3).
Note that the role specified in the
DataAccessRoleArn
request parameter must have permission to use the specified KMS key.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable outputEncryptionKMSKeyId;
Swift
var outputEncryptionKMSKeyId: String? { get set }
-
Makes it possible to control how your Medical Scribe job is processed using a
MedicalScribeSettings
object. SpecifyChannelIdentification
ifChannelDefinitions
are set. EnabledShowSpeakerLabels
ifChannelIdentification
andChannelDefinitions
are not set. One and only one ofChannelIdentification
andShowSpeakerLabels
must be set. IfShowSpeakerLabels
is set,MaxSpeakerLabels
must also be set. UseSettings
to specify a vocabulary or vocabulary filter or both usingVocabularyName
,VocabularyFilterName
.VocabularyFilterMethod
must be specified ifVocabularyFilterName
is set.Declaration
Objective-C
@property (nonatomic, strong) AWSTranscribeMedicalScribeSettings *_Nullable settings;
Swift
var settings: AWSTranscribeMedicalScribeSettings? { get set }
-
Adds one or more custom tags, each in the form of a key:value pair, to the Medica Scribe job.
To learn more about using tags with Amazon Transcribe, refer to Tagging resources.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTranscribeTag *> *_Nullable tags;
Swift
var tags: [AWSTranscribeTag]? { get set }