ListSecretsRequest

public struct ListSecretsRequest : AWSShape
extension SecretsManager.ListSecretsRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Lists the secret request filters.

    Declaration

    Swift

    public let filters: [Filter]?
  • (Optional) Limits the number of results you want to include in the response. If you don’t include this parameter, it defaults to a value that’s specific to the operation. If additional items exist beyond the maximum you specify, the NextToken response element is present and has a value (isn’t null). Include that value as the NextToken request parameter in the next call to the operation to get the next part of the results. Note that Secrets Manager might return fewer results than the maximum even when there are more results available. You should check NextToken after every operation to ensure that you receive all of the results.

    Declaration

    Swift

    public let maxResults: Int?
  • (Optional) Use this parameter in a request if you receive a NextToken response in a previous request indicating there’s more output available. In a subsequent call, set it to the value of the previous call NextToken response to indicate where the output should continue from.

    Declaration

    Swift

    public let nextToken: String?
  • Lists secrets in the requested order.

    Declaration

    Swift

    public let sortOrder: SortOrderType?
  • Undocumented

    Declaration

    Swift

    public init(filters: [Filter]? = nil, maxResults: Int? = nil, nextToken: String? = nil, sortOrder: SortOrderType? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws