SearchEntitiesRequest

public struct SearchEntitiesRequest : AWSShape
extension IoTThingsGraph.SearchEntitiesRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The entity types for which to search.

    Declaration

    Swift

    public let entityTypes: [EntityType]
  • Optional filter to apply to the search. Valid filters are NAME NAMESPACE, SEMANTIC_TYPE_PATH and REFERENCED_ENTITY_ID. REFERENCED_ENTITY_ID filters on entities that are used by the entity in the result set. For example, you can filter on the ID of a property that is used in a state. Multiple filters function as OR criteria in the query. Multiple values passed inside the filter function as AND criteria.

    Declaration

    Swift

    public let filters: [EntityFilter]?
  • The maximum number of results to return in the response.

    Declaration

    Swift

    public let maxResults: Int?
  • The version of the user’s namespace. Defaults to the latest version of the user’s namespace.

    Declaration

    Swift

    public let namespaceVersion: Int64?
  • The string that specifies the next page of results. Use this when you’re paginating results.

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

    public init(entityTypes: [EntityType], filters: [EntityFilter]? = nil, maxResults: Int? = nil, namespaceVersion: Int64? = nil, nextToken: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws