GetTagsRequest

public struct GetTagsRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The token to retrieve the next set of results. AWS provides the token when the response from a previous call has more results than the maximum page size.

    Declaration

    Swift

    public let nextPageToken: String?
  • The value that you want to search for.

    Declaration

    Swift

    public let searchString: String?
  • The key of the tag that you want to return values for.

    Declaration

    Swift

    public let tagKey: String?
  • The start and end dates for retrieving the dimension values. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

    Declaration

    Swift

    public let timePeriod: DateInterval
  • Undocumented

    Declaration

    Swift

    public init(nextPageToken: String? = nil, searchString: String? = nil, tagKey: String? = nil, timePeriod: DateInterval)
  • Declaration

    Swift

    public func validate(name: String) throws