ChangeTagsForResourceRequest

public struct ChangeTagsForResourceRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A complex type that contains a list of the tags that you want to add to the specified health check or hosted zone and/or the tags that you want to edit Value for. You can add a maximum of 10 tags to a health check or a hosted zone.

    Declaration

    Swift

    public let addTags: [Tag]?
  • A complex type that contains a list of the tags that you want to delete from the specified health check or hosted zone. You can specify up to 10 keys.

    Declaration

    Swift

    public let removeTagKeys: [String]?
  • The ID of the resource for which you want to add, change, or delete tags.

    Declaration

    Swift

    public let resourceId: String
  • The type of the resource. The resource type for health checks is healthcheck. The resource type for hosted zones is hostedzone.

    Declaration

    Swift

    public let resourceType: TagResourceType
  • Undocumented

    Declaration

    Swift

    public init(addTags: [Tag]? = nil, removeTagKeys: [String]? = nil, resourceId: String, resourceType: TagResourceType)
  • Declaration

    Swift

    public func validate(name: String) throws