AWSMachineLearningAddTagsInput

Objective-C

@interface AWSMachineLearningAddTagsInput

Swift

class AWSMachineLearningAddTagsInput
  • The ID of the ML object to tag. For example, exampleModelId.

    Declaration

    Objective-C

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

    Swift

    var resourceId: String? { get set }
  • The type of the ML object to tag.

    Declaration

    Objective-C

    @property (nonatomic) AWSMachineLearningTaggableResourceType resourceType;

    Swift

    var resourceType: AWSMachineLearningTaggableResourceType { get set }
  • The key-value pairs to use to create tags. If you specify a key without specifying a value, Amazon ML creates a tag with the specified key and a value of null.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSMachineLearningTag *> *_Nullable tags;

    Swift

    var tags: [AWSMachineLearningTag]? { get set }