CloudDirectory
public struct CloudDirectory
Client object for interacting with AWS CloudDirectory service.
Amazon Cloud Directory Amazon Cloud Directory is a component of the AWS Directory Service that simplifies the development and management of cloud-scale web, mobile, and IoT applications. This guide describes the Cloud Directory operations that you can call programmatically and includes detailed information on data types and errors. For information about Cloud Directory features, see AWS Directory Service and the Amazon Cloud Directory Developer Guide.
-
Undocumented
Declaration
Swift
public let client: AWSClient
-
Initialize the CloudDirectory client
Declaration
Swift
public init(accessKeyId: String? = nil, secretAccessKey: String? = nil, sessionToken: String? = nil, region: AWSSDKSwiftCore.Region? = nil, endpoint: String? = nil, middlewares: [AWSServiceMiddleware] = [], eventLoopGroupProvider: AWSClient.EventLoopGroupProvider = .useAWSClientShared)
Parameters
accessKeyId
Public access key provided by AWS
secretAccessKey
Private access key provided by AWS
sessionToken
Token provided by STS.AssumeRole() which allows access to another AWS account
region
Region of server you want to communicate with
endpoint
Custom endpoint URL to use instead of standard AWS servers
middlewares
Array of middlewares to apply to requests and responses
eventLoopGroupProvider
EventLoopGroup to use. Use
useAWSClientShared
if the client shall manage its own EventLoopGroup.
-
Adds a new Facet to an object. An object can have more than one facet applied on it.
Declaration
Swift
public func addFacetToObject(_ input: AddFacetToObjectRequest) -> EventLoopFuture<AddFacetToObjectResponse>
-
Copies the input published schema, at the specified version, into the Directory with the same name and version as that of the published schema.
Declaration
Swift
public func applySchema(_ input: ApplySchemaRequest) -> EventLoopFuture<ApplySchemaResponse>
-
Attaches an existing object to another object. An object can be accessed in two ways: Using the path Using ObjectIdentifier
Declaration
Swift
public func attachObject(_ input: AttachObjectRequest) -> EventLoopFuture<AttachObjectResponse>
-
Attaches a policy object to a regular object. An object can have a limited number of attached policies.
Declaration
Swift
public func attachPolicy(_ input: AttachPolicyRequest) -> EventLoopFuture<AttachPolicyResponse>
-
Attaches the specified object to the specified index.
Declaration
Swift
public func attachToIndex(_ input: AttachToIndexRequest) -> EventLoopFuture<AttachToIndexResponse>
-
Attaches a typed link to a specified source and target object. For more information, see Typed Links.
Declaration
Swift
public func attachTypedLink(_ input: AttachTypedLinkRequest) -> EventLoopFuture<AttachTypedLinkResponse>
-
Performs all the read operations in a batch.
Declaration
Swift
public func batchRead(_ input: BatchReadRequest) -> EventLoopFuture<BatchReadResponse>
-
Performs all the write operations in a batch. Either all the operations succeed or none.
Declaration
Swift
public func batchWrite(_ input: BatchWriteRequest) -> EventLoopFuture<BatchWriteResponse>
-
Creates a Directory by copying the published schema into the directory. A directory cannot be created without a schema. You can also quickly create a directory using a managed schema, called the QuickStartSchema. For more information, see Managed Schema in the Amazon Cloud Directory Developer Guide.
Declaration
Swift
public func createDirectory(_ input: CreateDirectoryRequest) -> EventLoopFuture<CreateDirectoryResponse>
-
Creates a new Facet in a schema. Facet creation is allowed only in development or applied schemas.
Declaration
Swift
public func createFacet(_ input: CreateFacetRequest) -> EventLoopFuture<CreateFacetResponse>
-
Creates an index object. See Indexing and search for more information.
Declaration
Swift
public func createIndex(_ input: CreateIndexRequest) -> EventLoopFuture<CreateIndexResponse>
-
Creates an object in a Directory. Additionally attaches the object to a parent, if a parent reference and LinkName is specified. An object is simply a collection of Facet attributes. You can also use this API call to create a policy object, if the facet from which you create the object is a policy facet.
Declaration
Swift
public func createObject(_ input: CreateObjectRequest) -> EventLoopFuture<CreateObjectResponse>
-
Creates a new schema in a development state. A schema can exist in three phases: Development: This is a mutable phase of the schema. All new schemas are in the development phase. Once the schema is finalized, it can be published. Published: Published schemas are immutable and have a version associated with them. Applied: Applied schemas are mutable in a way that allows you to add new schema facets. You can also add new, nonrequired attributes to existing schema facets. You can apply only published schemas to directories.
Declaration
Swift
public func createSchema(_ input: CreateSchemaRequest) -> EventLoopFuture<CreateSchemaResponse>
-
Creates a TypedLinkFacet. For more information, see Typed Links.
Declaration
Swift
public func createTypedLinkFacet(_ input: CreateTypedLinkFacetRequest) -> EventLoopFuture<CreateTypedLinkFacetResponse>
-
Deletes a directory. Only disabled directories can be deleted. A deleted directory cannot be undone. Exercise extreme caution when deleting directories.
Declaration
Swift
public func deleteDirectory(_ input: DeleteDirectoryRequest) -> EventLoopFuture<DeleteDirectoryResponse>
-
Deletes a given Facet. All attributes and Rules that are associated with the facet will be deleted. Only development schema facets are allowed deletion.
Declaration
Swift
public func deleteFacet(_ input: DeleteFacetRequest) -> EventLoopFuture<DeleteFacetResponse>
-
Deletes an object and its associated attributes. Only objects with no children and no parents can be deleted. The maximum number of attributes that can be deleted during an object deletion is 30. For more information, see Amazon Cloud Directory Limits.
Declaration
Swift
public func deleteObject(_ input: DeleteObjectRequest) -> EventLoopFuture<DeleteObjectResponse>
-
Deletes a given schema. Schemas in a development and published state can only be deleted.
Declaration
Swift
public func deleteSchema(_ input: DeleteSchemaRequest) -> EventLoopFuture<DeleteSchemaResponse>
-
Deletes a TypedLinkFacet. For more information, see Typed Links.
Declaration
Swift
public func deleteTypedLinkFacet(_ input: DeleteTypedLinkFacetRequest) -> EventLoopFuture<DeleteTypedLinkFacetResponse>
-
Detaches the specified object from the specified index.
Declaration
Swift
public func detachFromIndex(_ input: DetachFromIndexRequest) -> EventLoopFuture<DetachFromIndexResponse>
-
Detaches a given object from the parent object. The object that is to be detached from the parent is specified by the link name.
Declaration
Swift
public func detachObject(_ input: DetachObjectRequest) -> EventLoopFuture<DetachObjectResponse>
-
Detaches a policy from an object.
Declaration
Swift
public func detachPolicy(_ input: DetachPolicyRequest) -> EventLoopFuture<DetachPolicyResponse>
-
Detaches a typed link from a specified source and target object. For more information, see Typed Links.
Declaration
Swift
@discardableResult public func detachTypedLink(_ input: DetachTypedLinkRequest) -> EventLoopFuture<Void>
-
Disables the specified directory. Disabled directories cannot be read or written to. Only enabled directories can be disabled. Disabled directories may be reenabled.
Declaration
Swift
public func disableDirectory(_ input: DisableDirectoryRequest) -> EventLoopFuture<DisableDirectoryResponse>
-
Enables the specified directory. Only disabled directories can be enabled. Once enabled, the directory can then be read and written to.
Declaration
Swift
public func enableDirectory(_ input: EnableDirectoryRequest) -> EventLoopFuture<EnableDirectoryResponse>
-
Returns current applied schema version ARN, including the minor version in use.
Declaration
Swift
public func getAppliedSchemaVersion(_ input: GetAppliedSchemaVersionRequest) -> EventLoopFuture<GetAppliedSchemaVersionResponse>
-
Retrieves metadata about a directory.
Declaration
Swift
public func getDirectory(_ input: GetDirectoryRequest) -> EventLoopFuture<GetDirectoryResponse>
-
Gets details of the Facet, such as facet name, attributes, Rules, or ObjectType. You can call this on all kinds of schema facets – published, development, or applied.
Declaration
Swift
public func getFacet(_ input: GetFacetRequest) -> EventLoopFuture<GetFacetResponse>
-
Retrieves attributes that are associated with a typed link.
Declaration
Swift
public func getLinkAttributes(_ input: GetLinkAttributesRequest) -> EventLoopFuture<GetLinkAttributesResponse>
-
Retrieves attributes within a facet that are associated with an object.
Declaration
Swift
public func getObjectAttributes(_ input: GetObjectAttributesRequest) -> EventLoopFuture<GetObjectAttributesResponse>
-
Retrieves metadata about an object.
Declaration
Swift
public func getObjectInformation(_ input: GetObjectInformationRequest) -> EventLoopFuture<GetObjectInformationResponse>
-
Retrieves a JSON representation of the schema. See JSON Schema Format for more information.
Declaration
Swift
public func getSchemaAsJson(_ input: GetSchemaAsJsonRequest) -> EventLoopFuture<GetSchemaAsJsonResponse>
-
Returns the identity attribute order for a specific TypedLinkFacet. For more information, see Typed Links.
Declaration
Swift
public func getTypedLinkFacetInformation(_ input: GetTypedLinkFacetInformationRequest) -> EventLoopFuture<GetTypedLinkFacetInformationResponse>
-
Lists schema major versions applied to a directory. If SchemaArn is provided, lists the minor version.
Declaration
Swift
public func listAppliedSchemaArns(_ input: ListAppliedSchemaArnsRequest) -> EventLoopFuture<ListAppliedSchemaArnsResponse>
-
Lists indices attached to the specified object.
Declaration
Swift
public func listAttachedIndices(_ input: ListAttachedIndicesRequest) -> EventLoopFuture<ListAttachedIndicesResponse>
-
Retrieves each Amazon Resource Name (ARN) of schemas in the development state.
Declaration
Swift
public func listDevelopmentSchemaArns(_ input: ListDevelopmentSchemaArnsRequest) -> EventLoopFuture<ListDevelopmentSchemaArnsResponse>
-
Lists directories created within an account.
Declaration
Swift
public func listDirectories(_ input: ListDirectoriesRequest) -> EventLoopFuture<ListDirectoriesResponse>
-
Retrieves attributes attached to the facet.
Declaration
Swift
public func listFacetAttributes(_ input: ListFacetAttributesRequest) -> EventLoopFuture<ListFacetAttributesResponse>
-
Retrieves the names of facets that exist in a schema.
Declaration
Swift
public func listFacetNames(_ input: ListFacetNamesRequest) -> EventLoopFuture<ListFacetNamesResponse>
-
Returns a paginated list of all the incoming TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.
Declaration
Swift
public func listIncomingTypedLinks(_ input: ListIncomingTypedLinksRequest) -> EventLoopFuture<ListIncomingTypedLinksResponse>
-
Lists objects attached to the specified index.
Declaration
Swift
public func listIndex(_ input: ListIndexRequest) -> EventLoopFuture<ListIndexResponse>
-
Lists the major version families of each managed schema. If a major version ARN is provided as SchemaArn, the minor version revisions in that family are listed instead.
Declaration
Swift
public func listManagedSchemaArns(_ input: ListManagedSchemaArnsRequest) -> EventLoopFuture<ListManagedSchemaArnsResponse>
-
Lists all attributes that are associated with an object.
Declaration
Swift
public func listObjectAttributes(_ input: ListObjectAttributesRequest) -> EventLoopFuture<ListObjectAttributesResponse>
-
Returns a paginated list of child objects that are associated with a given object.
Declaration
Swift
public func listObjectChildren(_ input: ListObjectChildrenRequest) -> EventLoopFuture<ListObjectChildrenResponse>
-
Retrieves all available parent paths for any object type such as node, leaf node, policy node, and index node objects. For more information about objects, see Directory Structure. Use this API to evaluate all parents for an object. The call returns all objects from the root of the directory up to the requested object. The API returns the number of paths based on user-defined MaxResults, in case there are multiple paths to the parent. The order of the paths and nodes returned is consistent among multiple API calls unless the objects are deleted or moved. Paths not leading to the directory root are ignored from the target object.
Declaration
Swift
public func listObjectParentPaths(_ input: ListObjectParentPathsRequest) -> EventLoopFuture<ListObjectParentPathsResponse>
-
Lists parent objects that are associated with a given object in pagination fashion.
Declaration
Swift
public func listObjectParents(_ input: ListObjectParentsRequest) -> EventLoopFuture<ListObjectParentsResponse>
-
Returns policies attached to an object in pagination fashion.
Declaration
Swift
public func listObjectPolicies(_ input: ListObjectPoliciesRequest) -> EventLoopFuture<ListObjectPoliciesResponse>
-
Returns a paginated list of all the outgoing TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed Links.
Declaration
Swift
public func listOutgoingTypedLinks(_ input: ListOutgoingTypedLinksRequest) -> EventLoopFuture<ListOutgoingTypedLinksResponse>
-
Returns all of the ObjectIdentifiers to which a given policy is attached.
Declaration
Swift
public func listPolicyAttachments(_ input: ListPolicyAttachmentsRequest) -> EventLoopFuture<ListPolicyAttachmentsResponse>
-
Lists the major version families of each published schema. If a major version ARN is provided as SchemaArn, the minor version revisions in that family are listed instead.
Declaration
Swift
public func listPublishedSchemaArns(_ input: ListPublishedSchemaArnsRequest) -> EventLoopFuture<ListPublishedSchemaArnsResponse>
-
Returns tags for a resource. Tagging is currently supported only for directories with a limit of 50 tags per directory. All 50 tags are returned for a given directory with this API call.
Declaration
Swift
public func listTagsForResource(_ input: ListTagsForResourceRequest) -> EventLoopFuture<ListTagsForResourceResponse>
-
Returns a paginated list of all attribute definitions for a particular TypedLinkFacet. For more information, see Typed Links.
Declaration
Swift
public func listTypedLinkFacetAttributes(_ input: ListTypedLinkFacetAttributesRequest) -> EventLoopFuture<ListTypedLinkFacetAttributesResponse>
-
Returns a paginated list of TypedLink facet names for a particular schema. For more information, see Typed Links.
Declaration
Swift
public func listTypedLinkFacetNames(_ input: ListTypedLinkFacetNamesRequest) -> EventLoopFuture<ListTypedLinkFacetNamesResponse>
-
Lists all policies from the root of the Directory to the object specified. If there are no policies present, an empty list is returned. If policies are present, and if some objects don’t have the policies attached, it returns the ObjectIdentifier for such objects. If policies are present, it returns ObjectIdentifier, policyId, and policyType. Paths that don’t lead to the root from the target object are ignored. For more information, see Policies.
Declaration
Swift
public func lookupPolicy(_ input: LookupPolicyRequest) -> EventLoopFuture<LookupPolicyResponse>
-
Publishes a development schema with a major version and a recommended minor version.
Declaration
Swift
public func publishSchema(_ input: PublishSchemaRequest) -> EventLoopFuture<PublishSchemaResponse>
-
Allows a schema to be updated using JSON upload. Only available for development schemas. See JSON Schema Format for more information.
Declaration
Swift
public func putSchemaFromJson(_ input: PutSchemaFromJsonRequest) -> EventLoopFuture<PutSchemaFromJsonResponse>
-
Removes the specified facet from the specified object.
Declaration
Swift
public func removeFacetFromObject(_ input: RemoveFacetFromObjectRequest) -> EventLoopFuture<RemoveFacetFromObjectResponse>
-
An API operation for adding tags to a resource.
Declaration
Swift
public func tagResource(_ input: TagResourceRequest) -> EventLoopFuture<TagResourceResponse>
-
An API operation for removing tags from a resource.
Declaration
Swift
public func untagResource(_ input: UntagResourceRequest) -> EventLoopFuture<UntagResourceResponse>
-
Does the following: Adds new Attributes, Rules, or ObjectTypes. Updates existing Attributes, Rules, or ObjectTypes. Deletes existing Attributes, Rules, or ObjectTypes.
Declaration
Swift
public func updateFacet(_ input: UpdateFacetRequest) -> EventLoopFuture<UpdateFacetResponse>
-
Updates a given typed link’s attributes. Attributes to be updated must not contribute to the typed link’s identity, as defined by its IdentityAttributeOrder.
Declaration
Swift
public func updateLinkAttributes(_ input: UpdateLinkAttributesRequest) -> EventLoopFuture<UpdateLinkAttributesResponse>
-
Updates a given object’s attributes.
Declaration
Swift
public func updateObjectAttributes(_ input: UpdateObjectAttributesRequest) -> EventLoopFuture<UpdateObjectAttributesResponse>
-
Updates the schema name with a new name. Only development schema names can be updated.
Declaration
Swift
public func updateSchema(_ input: UpdateSchemaRequest) -> EventLoopFuture<UpdateSchemaResponse>
-
Updates a TypedLinkFacet. For more information, see Typed Links.
Declaration
Swift
public func updateTypedLinkFacet(_ input: UpdateTypedLinkFacetRequest) -> EventLoopFuture<UpdateTypedLinkFacetResponse>
-
Upgrades a single directory in-place using the PublishedSchemaArn with schema updates found in MinorVersion. Backwards-compatible minor version upgrades are instantaneously available for readers on all objects in the directory. Note: This is a synchronous API call and upgrades only one schema on a given directory per call. To upgrade multiple directories from one schema, you would need to call this API on each directory.
Declaration
Swift
public func upgradeAppliedSchema(_ input: UpgradeAppliedSchemaRequest) -> EventLoopFuture<UpgradeAppliedSchemaResponse>
-
Upgrades a published schema under a new minor version revision using the current contents of DevelopmentSchemaArn.
Declaration
Swift
public func upgradePublishedSchema(_ input: UpgradePublishedSchemaRequest) -> EventLoopFuture<UpgradePublishedSchemaResponse>
-
Lists schema major versions applied to a directory. If SchemaArn is provided, lists the minor version.
Declaration
Swift
public func listAppliedSchemaArnsPaginator(_ input: ListAppliedSchemaArnsRequest, onPage: @escaping (ListAppliedSchemaArnsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists indices attached to the specified object.
Declaration
Swift
public func listAttachedIndicesPaginator(_ input: ListAttachedIndicesRequest, onPage: @escaping (ListAttachedIndicesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Retrieves each Amazon Resource Name (ARN) of schemas in the development state.
Declaration
Swift
public func listDevelopmentSchemaArnsPaginator(_ input: ListDevelopmentSchemaArnsRequest, onPage: @escaping (ListDevelopmentSchemaArnsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists directories created within an account.
Declaration
Swift
public func listDirectoriesPaginator(_ input: ListDirectoriesRequest, onPage: @escaping (ListDirectoriesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Retrieves attributes attached to the facet.
Declaration
Swift
public func listFacetAttributesPaginator(_ input: ListFacetAttributesRequest, onPage: @escaping (ListFacetAttributesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Retrieves the names of facets that exist in a schema.
Declaration
Swift
public func listFacetNamesPaginator(_ input: ListFacetNamesRequest, onPage: @escaping (ListFacetNamesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists objects attached to the specified index.
Declaration
Swift
public func listIndexPaginator(_ input: ListIndexRequest, onPage: @escaping (ListIndexResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the major version families of each managed schema. If a major version ARN is provided as SchemaArn, the minor version revisions in that family are listed instead.
Declaration
Swift
public func listManagedSchemaArnsPaginator(_ input: ListManagedSchemaArnsRequest, onPage: @escaping (ListManagedSchemaArnsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists all attributes that are associated with an object.
Declaration
Swift
public func listObjectAttributesPaginator(_ input: ListObjectAttributesRequest, onPage: @escaping (ListObjectAttributesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Returns a paginated list of child objects that are associated with a given object.
Declaration
Swift
public func listObjectChildrenPaginator(_ input: ListObjectChildrenRequest, onPage: @escaping (ListObjectChildrenResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Retrieves all available parent paths for any object type such as node, leaf node, policy node, and index node objects. For more information about objects, see Directory Structure. Use this API to evaluate all parents for an object. The call returns all objects from the root of the directory up to the requested object. The API returns the number of paths based on user-defined MaxResults, in case there are multiple paths to the parent. The order of the paths and nodes returned is consistent among multiple API calls unless the objects are deleted or moved. Paths not leading to the directory root are ignored from the target object.
Declaration
Swift
public func listObjectParentPathsPaginator(_ input: ListObjectParentPathsRequest, onPage: @escaping (ListObjectParentPathsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists parent objects that are associated with a given object in pagination fashion.
Declaration
Swift
public func listObjectParentsPaginator(_ input: ListObjectParentsRequest, onPage: @escaping (ListObjectParentsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Returns policies attached to an object in pagination fashion.
Declaration
Swift
public func listObjectPoliciesPaginator(_ input: ListObjectPoliciesRequest, onPage: @escaping (ListObjectPoliciesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Returns all of the ObjectIdentifiers to which a given policy is attached.
Declaration
Swift
public func listPolicyAttachmentsPaginator(_ input: ListPolicyAttachmentsRequest, onPage: @escaping (ListPolicyAttachmentsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the major version families of each published schema. If a major version ARN is provided as SchemaArn, the minor version revisions in that family are listed instead.
Declaration
Swift
public func listPublishedSchemaArnsPaginator(_ input: ListPublishedSchemaArnsRequest, onPage: @escaping (ListPublishedSchemaArnsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Returns tags for a resource. Tagging is currently supported only for directories with a limit of 50 tags per directory. All 50 tags are returned for a given directory with this API call.
Declaration
Swift
public func listTagsForResourcePaginator(_ input: ListTagsForResourceRequest, onPage: @escaping (ListTagsForResourceResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Returns a paginated list of all attribute definitions for a particular TypedLinkFacet. For more information, see Typed Links.
Declaration
Swift
public func listTypedLinkFacetAttributesPaginator(_ input: ListTypedLinkFacetAttributesRequest, onPage: @escaping (ListTypedLinkFacetAttributesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Returns a paginated list of TypedLink facet names for a particular schema. For more information, see Typed Links.
Declaration
Swift
public func listTypedLinkFacetNamesPaginator(_ input: ListTypedLinkFacetNamesRequest, onPage: @escaping (ListTypedLinkFacetNamesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists all policies from the root of the Directory to the object specified. If there are no policies present, an empty list is returned. If policies are present, and if some objects don’t have the policies attached, it returns the ObjectIdentifier for such objects. If policies are present, it returns ObjectIdentifier, policyId, and policyType. Paths that don’t lead to the root from the target object are ignored. For more information, see Policies.
Declaration
Swift
public func lookupPolicyPaginator(_ input: LookupPolicyRequest, onPage: @escaping (LookupPolicyResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Undocumented
See moreDeclaration
Swift
public struct ListAppliedSchemaArnsRequest : AWSShape
extension CloudDirectory.ListAppliedSchemaArnsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListAttachedIndicesRequest : AWSShape
extension CloudDirectory.ListAttachedIndicesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListDevelopmentSchemaArnsRequest : AWSShape
extension CloudDirectory.ListDevelopmentSchemaArnsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListDirectoriesRequest : AWSShape
extension CloudDirectory.ListDirectoriesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListFacetAttributesRequest : AWSShape
extension CloudDirectory.ListFacetAttributesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListFacetNamesRequest : AWSShape
extension CloudDirectory.ListFacetNamesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListIndexRequest : AWSShape
extension CloudDirectory.ListIndexRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListManagedSchemaArnsRequest : AWSShape
extension CloudDirectory.ListManagedSchemaArnsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListObjectAttributesRequest : AWSShape
extension CloudDirectory.ListObjectAttributesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListObjectChildrenRequest : AWSShape
extension CloudDirectory.ListObjectChildrenRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListObjectParentPathsRequest : AWSShape
extension CloudDirectory.ListObjectParentPathsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListObjectParentsRequest : AWSShape
extension CloudDirectory.ListObjectParentsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListObjectPoliciesRequest : AWSShape
extension CloudDirectory.ListObjectPoliciesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListPolicyAttachmentsRequest : AWSShape
extension CloudDirectory.ListPolicyAttachmentsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListPublishedSchemaArnsRequest : AWSShape
extension CloudDirectory.ListPublishedSchemaArnsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListTagsForResourceRequest : AWSShape
extension CloudDirectory.ListTagsForResourceRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListTypedLinkFacetAttributesRequest : AWSShape
extension CloudDirectory.ListTypedLinkFacetAttributesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListTypedLinkFacetNamesRequest : AWSShape
extension CloudDirectory.ListTypedLinkFacetNamesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct LookupPolicyRequest : AWSShape
extension CloudDirectory.LookupPolicyRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public enum BatchReadExceptionType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum ConsistencyLevel : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum DirectoryState : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum FacetAttributeType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum FacetStyle : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum ObjectType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum RangeMode : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum RequiredAttributeBehavior : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum RuleType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum UpdateActionType : String, CustomStringConvertible, Codable