ListTypeRegistrationsInput

public struct ListTypeRegistrationsInput : AWSShape
extension CloudFormation.ListTypeRegistrationsInput: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a NextToken value that you can assign to the NextToken request parameter to get the next set of results.

    Declaration

    Swift

    public let maxResults: Int?
  • If the previous paginated request didn’t return all of the remaining results, the response object’s NextToken parameter value is set to a token. To retrieve the next set of results, call this action again and assign that token to the request object’s NextToken parameter. If there are no remaining results, the previous response object’s NextToken parameter is set to null.

    Declaration

    Swift

    public let nextToken: String?
  • The current status of the type registration request. The default is IN_PROGRESS.

    Declaration

    Swift

    public let registrationStatusFilter: RegistrationStatus?
  • The kind of type. Currently the only valid value is RESOURCE. Conditional: You must specify either TypeName and Type, or Arn.

    Declaration

    Swift

    public let type: RegistryType?
  • The Amazon Resource Name (ARN) of the type. Conditional: You must specify either TypeName and Type, or Arn.

    Declaration

    Swift

    public let typeArn: String?
  • The name of the type. Conditional: You must specify either TypeName and Type, or Arn.

    Declaration

    Swift

    public let typeName: String?
  • Undocumented

    Declaration

    Swift

    public init(maxResults: Int? = nil, nextToken: String? = nil, registrationStatusFilter: RegistrationStatus? = nil, type: RegistryType? = nil, typeArn: String? = nil, typeName: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws