libZSservicesZSamazonka-dsZSamazonka-ds
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.DirectoryService.ShareDirectory

Description

Shares a specified directory (DirectoryId) in your Amazon Web Services account (directory owner) with another Amazon Web Services account (directory consumer). With this operation you can use your directory from any Amazon Web Services account and from any Amazon VPC within an Amazon Web Services Region.

When you share your Managed Microsoft AD directory, Directory Service creates a shared directory in the directory consumer account. This shared directory contains the metadata to provide access to the directory within the directory owner account. The shared directory is visible in all VPCs in the directory consumer account.

The ShareMethod parameter determines whether the specified directory can be shared between Amazon Web Services accounts inside the same Amazon Web Services organization (ORGANIZATIONS). It also determines whether you can share the directory with any other Amazon Web Services account either inside or outside of the organization (HANDSHAKE).

The ShareNotes parameter is only used when HANDSHAKE is called, which sends a directory sharing request to the directory consumer.

Synopsis

Creating a Request

data ShareDirectory Source #

See: newShareDirectory smart constructor.

Constructors

ShareDirectory' 

Fields

  • shareNotes :: Maybe (Sensitive Text)

    A directory share request that is sent by the directory owner to the directory consumer. The request includes a typed message to help the directory consumer administrator determine whether to approve or reject the share invitation.

  • directoryId :: Text

    Identifier of the Managed Microsoft AD directory that you want to share with other Amazon Web Services accounts.

  • shareTarget :: ShareTarget

    Identifier for the directory consumer account with whom the directory is to be shared.

  • shareMethod :: ShareMethod

    The method used when sharing a directory to determine whether the directory should be shared within your Amazon Web Services organization (ORGANIZATIONS) or with any Amazon Web Services account by sending a directory sharing request (HANDSHAKE).

Instances

Instances details
Eq ShareDirectory Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

Show ShareDirectory Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

Generic ShareDirectory Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

Associated Types

type Rep ShareDirectory :: Type -> Type #

NFData ShareDirectory Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

Methods

rnf :: ShareDirectory -> () #

Hashable ShareDirectory Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

ToJSON ShareDirectory Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

AWSRequest ShareDirectory Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

Associated Types

type AWSResponse ShareDirectory #

ToHeaders ShareDirectory Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

ToPath ShareDirectory Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

ToQuery ShareDirectory Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

type Rep ShareDirectory Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

type Rep ShareDirectory = D1 ('MetaData "ShareDirectory" "Amazonka.DirectoryService.ShareDirectory" "libZSservicesZSamazonka-dsZSamazonka-ds" 'False) (C1 ('MetaCons "ShareDirectory'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "shareNotes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "directoryId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "shareTarget") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ShareTarget) :*: S1 ('MetaSel ('Just "shareMethod") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ShareMethod))))
type AWSResponse ShareDirectory Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

newShareDirectory Source #

Create a value of ShareDirectory with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:shareNotes:ShareDirectory', shareDirectory_shareNotes - A directory share request that is sent by the directory owner to the directory consumer. The request includes a typed message to help the directory consumer administrator determine whether to approve or reject the share invitation.

$sel:directoryId:ShareDirectory', shareDirectory_directoryId - Identifier of the Managed Microsoft AD directory that you want to share with other Amazon Web Services accounts.

$sel:shareTarget:ShareDirectory', shareDirectory_shareTarget - Identifier for the directory consumer account with whom the directory is to be shared.

$sel:shareMethod:ShareDirectory', shareDirectory_shareMethod - The method used when sharing a directory to determine whether the directory should be shared within your Amazon Web Services organization (ORGANIZATIONS) or with any Amazon Web Services account by sending a directory sharing request (HANDSHAKE).

Request Lenses

shareDirectory_shareNotes :: Lens' ShareDirectory (Maybe Text) Source #

A directory share request that is sent by the directory owner to the directory consumer. The request includes a typed message to help the directory consumer administrator determine whether to approve or reject the share invitation.

shareDirectory_directoryId :: Lens' ShareDirectory Text Source #

Identifier of the Managed Microsoft AD directory that you want to share with other Amazon Web Services accounts.

shareDirectory_shareTarget :: Lens' ShareDirectory ShareTarget Source #

Identifier for the directory consumer account with whom the directory is to be shared.

shareDirectory_shareMethod :: Lens' ShareDirectory ShareMethod Source #

The method used when sharing a directory to determine whether the directory should be shared within your Amazon Web Services organization (ORGANIZATIONS) or with any Amazon Web Services account by sending a directory sharing request (HANDSHAKE).

Destructuring the Response

data ShareDirectoryResponse Source #

See: newShareDirectoryResponse smart constructor.

Constructors

ShareDirectoryResponse' 

Fields

  • sharedDirectoryId :: Maybe Text

    Identifier of the directory that is stored in the directory consumer account that is shared from the specified directory (DirectoryId).

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq ShareDirectoryResponse Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

Read ShareDirectoryResponse Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

Show ShareDirectoryResponse Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

Generic ShareDirectoryResponse Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

Associated Types

type Rep ShareDirectoryResponse :: Type -> Type #

NFData ShareDirectoryResponse Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

Methods

rnf :: ShareDirectoryResponse -> () #

type Rep ShareDirectoryResponse Source # 
Instance details

Defined in Amazonka.DirectoryService.ShareDirectory

type Rep ShareDirectoryResponse = D1 ('MetaData "ShareDirectoryResponse" "Amazonka.DirectoryService.ShareDirectory" "libZSservicesZSamazonka-dsZSamazonka-ds" 'False) (C1 ('MetaCons "ShareDirectoryResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "sharedDirectoryId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newShareDirectoryResponse Source #

Create a value of ShareDirectoryResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sharedDirectoryId:ShareDirectoryResponse', shareDirectoryResponse_sharedDirectoryId - Identifier of the directory that is stored in the directory consumer account that is shared from the specified directory (DirectoryId).

$sel:httpStatus:ShareDirectoryResponse', shareDirectoryResponse_httpStatus - The response's http status code.

Response Lenses

shareDirectoryResponse_sharedDirectoryId :: Lens' ShareDirectoryResponse (Maybe Text) Source #

Identifier of the directory that is stored in the directory consumer account that is shared from the specified directory (DirectoryId).