ListAccessPointsRequest

public struct ListAccessPointsRequest : AWSShape
extension S3Control.ListAccessPointsRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The AWS account ID for owner of the bucket whose access points you want to list.

    Declaration

    Swift

    public let accountId: String
  • The name of the bucket whose associated access points you want to list.

    Declaration

    Swift

    public let bucket: String?
  • The maximum number of access points that you want to include in the list. If the specified bucket has more than this number of access points, then the response will include a continuation token in the NextToken field that you can use to retrieve the next page of access points.

    Declaration

    Swift

    public let maxResults: Int?
  • A continuation token. If a previous call to ListAccessPoints returned a continuation token in the NextToken field, then providing that value here causes Amazon S3 to retrieve the next page of results.

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

    public init(accountId: String, bucket: String? = nil, maxResults: Int? = nil, nextToken: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws