AWSTranscribeTagResourceRequest
Objective-C
@interface AWSTranscribeTagResourceRequest
Swift
class AWSTranscribeTagResourceRequest
-
The Amazon Resource Name (ARN) of the resource you want to tag. ARNs have the format
arn:partition:service:region:account-id:resource-type/resource-id
.For example,
arn:aws:transcribe:us-west-2:111122223333:transcription-job/transcription-job-name
.Valid values for
resource-type
are:transcription-job
,medical-transcription-job
,vocabulary
,medical-vocabulary
,vocabulary-filter
, andlanguage-model
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable resourceArn;
Swift
var resourceArn: String? { get set }
-
Adds one or more custom tags, each in the form of a key:value pair, to the specified resource.
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 }