UpdateTagsForResourceMessage

public struct UpdateTagsForResourceMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The Amazon Resource Name (ARN) of the resouce to be updated. Must be the ARN of an Elastic Beanstalk resource.

    Declaration

    Swift

    public let resourceArn: String
  • A list of tags to add or update. If a key of an existing tag is added, the tag’s value is updated. Specify at least one of these parameters: TagsToAdd, TagsToRemove.

    Declaration

    Swift

    public let tagsToAdd: [Tag]?
  • A list of tag keys to remove. If a tag key doesn’t exist, it is silently ignored. Specify at least one of these parameters: TagsToAdd, TagsToRemove.

    Declaration

    Swift

    public let tagsToRemove: [String]?
  • Undocumented

    Declaration

    Swift

    public init(resourceArn: String, tagsToAdd: [Tag]? = nil, tagsToRemove: [String]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws