pub struct Client { /* private fields */ }
Expand description

Client for Amazon CloudDirectory

Client for invoking operations on Amazon CloudDirectory. Each operation on Amazon CloudDirectory is a method on this this struct. .send() MUST be invoked on the generated operations to dispatch the request to the service.

Examples

Constructing a client and invoking an operation

    // create a shared configuration. This can be used & shared between multiple service clients.
    let shared_config = aws_config::load_from_env().await;
    let client = aws_sdk_clouddirectory::Client::new(&shared_config);
    // invoke an operation
    /* let rsp = client
        .<operation_name>().
        .<param>("some value")
        .send().await; */

Constructing a client with custom configuration

use aws_config::RetryConfig;
let shared_config = aws_config::load_from_env().await;
let config = aws_sdk_clouddirectory::config::Builder::from(&shared_config)
  .retry_config(RetryConfig::disabled())
  .build();
let client = aws_sdk_clouddirectory::Client::from_conf(config);

Implementations

Creates a client with the given service configuration.

Returns the client’s configuration.

Constructs a fluent builder for the AddFacetToObject operation.

Constructs a fluent builder for the ApplySchema operation.

Constructs a fluent builder for the AttachObject operation.

Constructs a fluent builder for the AttachPolicy operation.

Constructs a fluent builder for the AttachToIndex operation.

Constructs a fluent builder for the AttachTypedLink operation.

Constructs a fluent builder for the BatchRead operation.

Constructs a fluent builder for the BatchWrite operation.

Constructs a fluent builder for the CreateDirectory operation.

Constructs a fluent builder for the CreateFacet operation.

Constructs a fluent builder for the CreateIndex operation.

Constructs a fluent builder for the CreateObject operation.

Constructs a fluent builder for the CreateSchema operation.

Constructs a fluent builder for the CreateTypedLinkFacet operation.

Constructs a fluent builder for the DeleteDirectory operation.

Constructs a fluent builder for the DeleteFacet operation.

Constructs a fluent builder for the DeleteObject operation.

Constructs a fluent builder for the DeleteSchema operation.

Constructs a fluent builder for the DeleteTypedLinkFacet operation.

Constructs a fluent builder for the DetachFromIndex operation.

Constructs a fluent builder for the DetachObject operation.

Constructs a fluent builder for the DetachPolicy operation.

Constructs a fluent builder for the DetachTypedLink operation.

Constructs a fluent builder for the DisableDirectory operation.

Constructs a fluent builder for the EnableDirectory operation.

Constructs a fluent builder for the GetAppliedSchemaVersion operation.

Constructs a fluent builder for the GetDirectory operation.

Constructs a fluent builder for the GetFacet operation.

Constructs a fluent builder for the GetLinkAttributes operation.

Constructs a fluent builder for the GetObjectAttributes operation.

Constructs a fluent builder for the GetObjectInformation operation.

Constructs a fluent builder for the GetSchemaAsJson operation.

Constructs a fluent builder for the GetTypedLinkFacetInformation operation.

Constructs a fluent builder for the ListAppliedSchemaArns operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListAttachedIndices operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListDevelopmentSchemaArns operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListDirectories operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListFacetAttributes operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListFacetNames operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListIncomingTypedLinks operation.

Constructs a fluent builder for the ListIndex operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListManagedSchemaArns operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListObjectAttributes operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListObjectChildren operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListObjectParentPaths operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListObjectParents operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListObjectPolicies operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListOutgoingTypedLinks operation.

Constructs a fluent builder for the ListPolicyAttachments operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListPublishedSchemaArns operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListTagsForResource operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListTypedLinkFacetAttributes operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the ListTypedLinkFacetNames operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the LookupPolicy operation. This operation supports pagination; See into_paginator().

Constructs a fluent builder for the PublishSchema operation.

Constructs a fluent builder for the PutSchemaFromJson operation.

Constructs a fluent builder for the RemoveFacetFromObject operation.

Constructs a fluent builder for the TagResource operation.

Constructs a fluent builder for the UntagResource operation.

Constructs a fluent builder for the UpdateFacet operation.

Constructs a fluent builder for the UpdateLinkAttributes operation.

Constructs a fluent builder for the UpdateObjectAttributes operation.

Constructs a fluent builder for the UpdateSchema operation.

Constructs a fluent builder for the UpdateTypedLinkFacet operation.

Constructs a fluent builder for the UpgradeAppliedSchema operation.

Constructs a fluent builder for the UpgradePublishedSchema operation.

Creates a client with the given service config and connector override.

Creates a new client from a shared config.

Creates a new client from the service Config.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more