JSPM

@aws-sdk/client-directory-service

3.893.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 26475
  • Score
    100M100P100Q152232F
  • License Apache-2.0

AWS SDK for JavaScript Directory Service Client for Node.js, Browser and React Native

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@aws-sdk/client-directory-service) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    @aws-sdk/client-directory-service

    Description

    AWS SDK for JavaScript DirectoryService Client for Node.js, Browser and React Native.

    Directory Service

    Directory Service is a web service that makes it easy for you to setup and run directories in the Amazon Web Services cloud, or connect your Amazon Web Services resources with an existing self-managed Microsoft Active Directory. This guide provides detailed information about Directory Service operations, data types, parameters, and errors. For information about Directory Services features, see Directory Service and the Directory Service Administration Guide.

    Amazon Web Services provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, iOS, Android, etc.). The SDKs provide a convenient way to create programmatic access to Directory Service and other Amazon Web Services services. For more information about the Amazon Web Services SDKs, including how to download and install them, see Tools for Amazon Web Services.

    Installing

    To install this package, simply type add or install @aws-sdk/client-directory-service using your favorite package manager:

    • npm install @aws-sdk/client-directory-service
    • yarn add @aws-sdk/client-directory-service
    • pnpm add @aws-sdk/client-directory-service

    Getting Started

    Import

    The AWS SDK is modulized by clients and commands. To send a request, you only need to import the DirectoryServiceClient and the commands you need, for example ListADAssessmentsCommand:

    // ES5 example
    const { DirectoryServiceClient, ListADAssessmentsCommand } = require("@aws-sdk/client-directory-service");
    // ES6+ example
    import { DirectoryServiceClient, ListADAssessmentsCommand } from "@aws-sdk/client-directory-service";

    Usage

    To send a request, you:

    • Initiate client with configuration (e.g. credentials, region).
    • Initiate command with input parameters.
    • Call send operation on client with command object as input.
    • If you are using a custom http handler, you may call destroy() to close open connections.
    // a client can be shared by different commands.
    const client = new DirectoryServiceClient({ region: "REGION" });
    
    const params = {
      /** input parameters */
    };
    const command = new ListADAssessmentsCommand(params);

    Async/await

    We recommend using await operator to wait for the promise returned by send operation as follows:

    // async/await.
    try {
      const data = await client.send(command);
      // process data.
    } catch (error) {
      // error handling.
    } finally {
      // finally.
    }

    Async-await is clean, concise, intuitive, easy to debug and has better error handling as compared to using Promise chains or callbacks.

    Promises

    You can also use Promise chaining to execute send operation.

    client.send(command).then(
      (data) => {
        // process data.
      },
      (error) => {
        // error handling.
      }
    );

    Promises can also be called using .catch() and .finally() as follows:

    client
      .send(command)
      .then((data) => {
        // process data.
      })
      .catch((error) => {
        // error handling.
      })
      .finally(() => {
        // finally.
      });

    Callbacks

    We do not recommend using callbacks because of callback hell, but they are supported by the send operation.

    // callbacks.
    client.send(command, (err, data) => {
      // process err and data.
    });

    v2 compatible style

    The client can also send requests using v2 compatible style. However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post on modular packages in AWS SDK for JavaScript

    import * as AWS from "@aws-sdk/client-directory-service";
    const client = new AWS.DirectoryService({ region: "REGION" });
    
    // async/await.
    try {
      const data = await client.listADAssessments(params);
      // process data.
    } catch (error) {
      // error handling.
    }
    
    // Promises.
    client
      .listADAssessments(params)
      .then((data) => {
        // process data.
      })
      .catch((error) => {
        // error handling.
      });
    
    // callbacks.
    client.listADAssessments(params, (err, data) => {
      // process err and data.
    });

    Troubleshooting

    When the service returns an exception, the error will include the exception information, as well as response metadata (e.g. request id).

    try {
      const data = await client.send(command);
      // process data.
    } catch (error) {
      const { requestId, cfId, extendedRequestId } = error.$metadata;
      console.log({ requestId, cfId, extendedRequestId });
      /**
       * The keys within exceptions are also parsed.
       * You can access them by specifying exception names:
       * if (error.name === 'SomeServiceException') {
       *     const value = error.specialKeyInException;
       * }
       */
    }

    Getting Help

    Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.

    To test your universal JavaScript code in Node.js, browser and react-native environments, visit our code samples repo.

    Contributing

    This client code is generated automatically. Any modifications will be overwritten the next time the @aws-sdk/client-directory-service package is updated. To contribute to client you can check our generate clients scripts.

    License

    This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information.

    Client Commands (Operations List)

    AcceptSharedDirectory

    Command API Reference / Input / Output

    AddIpRoutes

    Command API Reference / Input / Output

    AddRegion

    Command API Reference / Input / Output

    AddTagsToResource

    Command API Reference / Input / Output

    CancelSchemaExtension

    Command API Reference / Input / Output

    ConnectDirectory

    Command API Reference / Input / Output

    CreateAlias

    Command API Reference / Input / Output

    CreateComputer

    Command API Reference / Input / Output

    CreateConditionalForwarder

    Command API Reference / Input / Output

    CreateDirectory

    Command API Reference / Input / Output

    CreateHybridAD

    Command API Reference / Input / Output

    CreateLogSubscription

    Command API Reference / Input / Output

    CreateMicrosoftAD

    Command API Reference / Input / Output

    CreateSnapshot

    Command API Reference / Input / Output

    CreateTrust

    Command API Reference / Input / Output

    DeleteADAssessment

    Command API Reference / Input / Output

    DeleteConditionalForwarder

    Command API Reference / Input / Output

    DeleteDirectory

    Command API Reference / Input / Output

    DeleteLogSubscription

    Command API Reference / Input / Output

    DeleteSnapshot

    Command API Reference / Input / Output

    DeleteTrust

    Command API Reference / Input / Output

    DeregisterCertificate

    Command API Reference / Input / Output

    DeregisterEventTopic

    Command API Reference / Input / Output

    DescribeADAssessment

    Command API Reference / Input / Output

    DescribeCAEnrollmentPolicy

    Command API Reference / Input / Output

    DescribeCertificate

    Command API Reference / Input / Output

    DescribeClientAuthenticationSettings

    Command API Reference / Input / Output

    DescribeConditionalForwarders

    Command API Reference / Input / Output

    DescribeDirectories

    Command API Reference / Input / Output

    DescribeDirectoryDataAccess

    Command API Reference / Input / Output

    DescribeDomainControllers

    Command API Reference / Input / Output

    DescribeEventTopics

    Command API Reference / Input / Output

    DescribeHybridADUpdate

    Command API Reference / Input / Output

    DescribeLDAPSSettings

    Command API Reference / Input / Output

    DescribeRegions

    Command API Reference / Input / Output

    DescribeSettings

    Command API Reference / Input / Output

    DescribeSharedDirectories

    Command API Reference / Input / Output

    DescribeSnapshots

    Command API Reference / Input / Output

    DescribeTrusts

    Command API Reference / Input / Output

    DescribeUpdateDirectory

    Command API Reference / Input / Output

    DisableCAEnrollmentPolicy

    Command API Reference / Input / Output

    DisableClientAuthentication

    Command API Reference / Input / Output

    DisableDirectoryDataAccess

    Command API Reference / Input / Output

    DisableLDAPS

    Command API Reference / Input / Output

    DisableRadius

    Command API Reference / Input / Output

    DisableSso

    Command API Reference / Input / Output

    EnableCAEnrollmentPolicy

    Command API Reference / Input / Output

    EnableClientAuthentication

    Command API Reference / Input / Output

    EnableDirectoryDataAccess

    Command API Reference / Input / Output

    EnableLDAPS

    Command API Reference / Input / Output

    EnableRadius

    Command API Reference / Input / Output

    EnableSso

    Command API Reference / Input / Output

    GetDirectoryLimits

    Command API Reference / Input / Output

    GetSnapshotLimits

    Command API Reference / Input / Output

    ListADAssessments

    Command API Reference / Input / Output

    ListCertificates

    Command API Reference / Input / Output

    ListIpRoutes

    Command API Reference / Input / Output

    ListLogSubscriptions

    Command API Reference / Input / Output

    ListSchemaExtensions

    Command API Reference / Input / Output

    ListTagsForResource

    Command API Reference / Input / Output

    RegisterCertificate

    Command API Reference / Input / Output

    RegisterEventTopic

    Command API Reference / Input / Output

    RejectSharedDirectory

    Command API Reference / Input / Output

    RemoveIpRoutes

    Command API Reference / Input / Output

    RemoveRegion

    Command API Reference / Input / Output

    RemoveTagsFromResource

    Command API Reference / Input / Output

    ResetUserPassword

    Command API Reference / Input / Output

    RestoreFromSnapshot

    Command API Reference / Input / Output

    ShareDirectory

    Command API Reference / Input / Output

    StartADAssessment

    Command API Reference / Input / Output

    StartSchemaExtension

    Command API Reference / Input / Output

    UnshareDirectory

    Command API Reference / Input / Output

    UpdateConditionalForwarder

    Command API Reference / Input / Output

    UpdateDirectorySetup

    Command API Reference / Input / Output

    UpdateHybridAD

    Command API Reference / Input / Output

    UpdateNumberOfDomainControllers

    Command API Reference / Input / Output

    UpdateRadius

    Command API Reference / Input / Output

    UpdateSettings

    Command API Reference / Input / Output

    UpdateTrust

    Command API Reference / Input / Output

    VerifyTrust

    Command API Reference / Input / Output