DescribeSnapshotsRequest

public struct DescribeSnapshotsRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The identifier of the directory for which to retrieve snapshot information.

    Declaration

    Swift

    public let directoryId: String?
  • The maximum number of objects to return.

    Declaration

    Swift

    public let limit: Int?
  • The DescribeSnapshotsResult.NextToken value from a previous call to DescribeSnapshots. Pass null if this is the first call.

    Declaration

    Swift

    public let nextToken: String?
  • A list of identifiers of the snapshots to obtain the information for. If this member is null or empty, all snapshots are returned using the Limit and NextToken members.

    Declaration

    Swift

    public let snapshotIds: [String]?
  • Undocumented

    Declaration

    Swift

    public init(directoryId: String? = nil, limit: Int? = nil, nextToken: String? = nil, snapshotIds: [String]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws