Skip to content

DirectoryServiceClient#

Index > DirectoryService > DirectoryServiceClient

Auto-generated documentation for DirectoryService type annotations stubs module mypy-boto3-ds.

DirectoryServiceClient#

Type annotations and code completion for boto3.client("ds"). boto3 documentation

# DirectoryServiceClient usage example

from boto3.session import Session
from mypy_boto3_ds.client import DirectoryServiceClient

def get_ds_client() -> DirectoryServiceClient:
    return Session().client("ds")

Exceptions#

boto3 client exceptions are generated in runtime. This class provides code completion for boto3.client("ds").exceptions structure.

# Exceptions.exceptions usage example

client = boto3.client("ds")

try:
    do_something(client)
except (
    client.exceptions.AccessDeniedException,
    client.exceptions.AuthenticationFailedException,
    client.exceptions.CertificateAlreadyExistsException,
    client.exceptions.CertificateDoesNotExistException,
    client.exceptions.CertificateInUseException,
    client.exceptions.CertificateLimitExceededException,
    client.exceptions.ClientError,
    client.exceptions.ClientException,
    client.exceptions.DirectoryAlreadyInRegionException,
    client.exceptions.DirectoryAlreadySharedException,
    client.exceptions.DirectoryDoesNotExistException,
    client.exceptions.DirectoryInDesiredStateException,
    client.exceptions.DirectoryLimitExceededException,
    client.exceptions.DirectoryNotSharedException,
    client.exceptions.DirectoryUnavailableException,
    client.exceptions.DomainControllerLimitExceededException,
    client.exceptions.EntityAlreadyExistsException,
    client.exceptions.EntityDoesNotExistException,
    client.exceptions.IncompatibleSettingsException,
    client.exceptions.InsufficientPermissionsException,
    client.exceptions.InvalidCertificateException,
    client.exceptions.InvalidClientAuthStatusException,
    client.exceptions.InvalidLDAPSStatusException,
    client.exceptions.InvalidNextTokenException,
    client.exceptions.InvalidParameterException,
    client.exceptions.InvalidPasswordException,
    client.exceptions.InvalidTargetException,
    client.exceptions.IpRouteLimitExceededException,
    client.exceptions.NoAvailableCertificateException,
    client.exceptions.OrganizationsException,
    client.exceptions.RegionLimitExceededException,
    client.exceptions.ServiceException,
    client.exceptions.ShareLimitExceededException,
    client.exceptions.SnapshotLimitExceededException,
    client.exceptions.TagLimitExceededException,
    client.exceptions.UnsupportedOperationException,
    client.exceptions.UnsupportedSettingsException,
    client.exceptions.UserDoesNotExistException,
) as e:
    print(e)
# Exceptions.exceptions type checking example

from mypy_boto3_ds.client import Exceptions

def handle_error(exc: Exceptions.AccessDeniedException) -> None:
    ...

Methods#

accept_shared_directory#

Accepts a directory sharing request that was sent from the directory owner account.

Type annotations and code completion for boto3.client("ds").accept_shared_directory method. boto3 documentation

# accept_shared_directory method definition

def accept_shared_directory(
    self,
    *,
    SharedDirectoryId: str,
) -> AcceptSharedDirectoryResultTypeDef:  # (1)
    ...
  1. See AcceptSharedDirectoryResultTypeDef
# accept_shared_directory method usage example with argument unpacking

kwargs: AcceptSharedDirectoryRequestRequestTypeDef = {  # (1)
    "SharedDirectoryId": ...,
}

parent.accept_shared_directory(**kwargs)
  1. See AcceptSharedDirectoryRequestRequestTypeDef

add_ip_routes#

If the DNS server for your self-managed domain uses a publicly addressable IP address, you must add a CIDR address block to correctly route traffic to and from your Microsoft AD on Amazon Web Services.

Type annotations and code completion for boto3.client("ds").add_ip_routes method. boto3 documentation

# add_ip_routes method definition

def add_ip_routes(
    self,
    *,
    DirectoryId: str,
    IpRoutes: Sequence[IpRouteTypeDef],  # (1)
    UpdateSecurityGroupForDirectoryControllers: bool = ...,
) -> Dict[str, Any]:
    ...
  1. See IpRouteTypeDef
# add_ip_routes method usage example with argument unpacking

kwargs: AddIpRoutesRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "IpRoutes": ...,
}

parent.add_ip_routes(**kwargs)
  1. See AddIpRoutesRequestRequestTypeDef

add_region#

Adds two domain controllers in the specified Region for the specified directory.

Type annotations and code completion for boto3.client("ds").add_region method. boto3 documentation

# add_region method definition

def add_region(
    self,
    *,
    DirectoryId: str,
    RegionName: str,
    VPCSettings: DirectoryVpcSettingsTypeDef,  # (1)
) -> Dict[str, Any]:
    ...
  1. See DirectoryVpcSettingsTypeDef
# add_region method usage example with argument unpacking

kwargs: AddRegionRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "RegionName": ...,
    "VPCSettings": ...,
}

parent.add_region(**kwargs)
  1. See AddRegionRequestRequestTypeDef

add_tags_to_resource#

Adds or overwrites one or more tags for the specified directory.

Type annotations and code completion for boto3.client("ds").add_tags_to_resource method. boto3 documentation

# add_tags_to_resource method definition

def add_tags_to_resource(
    self,
    *,
    ResourceId: str,
    Tags: Sequence[TagTypeDef],  # (1)
) -> Dict[str, Any]:
    ...
  1. See TagTypeDef
# add_tags_to_resource method usage example with argument unpacking

kwargs: AddTagsToResourceRequestRequestTypeDef = {  # (1)
    "ResourceId": ...,
    "Tags": ...,
}

parent.add_tags_to_resource(**kwargs)
  1. See AddTagsToResourceRequestRequestTypeDef

can_paginate#

Check if an operation can be paginated.

Type annotations and code completion for boto3.client("ds").can_paginate method. boto3 documentation

# can_paginate method definition

def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

cancel_schema_extension#

Cancels an in-progress schema extension to a Microsoft AD directory.

Type annotations and code completion for boto3.client("ds").cancel_schema_extension method. boto3 documentation

# cancel_schema_extension method definition

def cancel_schema_extension(
    self,
    *,
    DirectoryId: str,
    SchemaExtensionId: str,
) -> Dict[str, Any]:
    ...
# cancel_schema_extension method usage example with argument unpacking

kwargs: CancelSchemaExtensionRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "SchemaExtensionId": ...,
}

parent.cancel_schema_extension(**kwargs)
  1. See CancelSchemaExtensionRequestRequestTypeDef

close#

Closes underlying endpoint connections.

Type annotations and code completion for boto3.client("ds").close method. boto3 documentation

# close method definition

def close(
    self,
) -> None:
    ...

connect_directory#

Creates an AD Connector to connect to a self-managed directory.

Type annotations and code completion for boto3.client("ds").connect_directory method. boto3 documentation

# connect_directory method definition

def connect_directory(
    self,
    *,
    Name: str,
    Password: str,
    Size: DirectorySizeType,  # (1)
    ConnectSettings: DirectoryConnectSettingsTypeDef,  # (2)
    ShortName: str = ...,
    Description: str = ...,
    Tags: Sequence[TagTypeDef] = ...,  # (3)
) -> ConnectDirectoryResultTypeDef:  # (4)
    ...
  1. See DirectorySizeType
  2. See DirectoryConnectSettingsTypeDef
  3. See TagTypeDef
  4. See ConnectDirectoryResultTypeDef
# connect_directory method usage example with argument unpacking

kwargs: ConnectDirectoryRequestRequestTypeDef = {  # (1)
    "Name": ...,
    "Password": ...,
    "Size": ...,
    "ConnectSettings": ...,
}

parent.connect_directory(**kwargs)
  1. See ConnectDirectoryRequestRequestTypeDef

create_alias#

Creates an alias for a directory and assigns the alias to the directory.

Type annotations and code completion for boto3.client("ds").create_alias method. boto3 documentation

# create_alias method definition

def create_alias(
    self,
    *,
    DirectoryId: str,
    Alias: str,
) -> CreateAliasResultTypeDef:  # (1)
    ...
  1. See CreateAliasResultTypeDef
# create_alias method usage example with argument unpacking

kwargs: CreateAliasRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "Alias": ...,
}

parent.create_alias(**kwargs)
  1. See CreateAliasRequestRequestTypeDef

create_computer#

Creates an Active Directory computer object in the specified directory.

Type annotations and code completion for boto3.client("ds").create_computer method. boto3 documentation

# create_computer method definition

def create_computer(
    self,
    *,
    DirectoryId: str,
    ComputerName: str,
    Password: str,
    OrganizationalUnitDistinguishedName: str = ...,
    ComputerAttributes: Sequence[AttributeTypeDef] = ...,  # (1)
) -> CreateComputerResultTypeDef:  # (2)
    ...
  1. See AttributeTypeDef
  2. See CreateComputerResultTypeDef
# create_computer method usage example with argument unpacking

kwargs: CreateComputerRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "ComputerName": ...,
    "Password": ...,
}

parent.create_computer(**kwargs)
  1. See CreateComputerRequestRequestTypeDef

create_conditional_forwarder#

Creates a conditional forwarder associated with your Amazon Web Services directory.

Type annotations and code completion for boto3.client("ds").create_conditional_forwarder method. boto3 documentation

# create_conditional_forwarder method definition

def create_conditional_forwarder(
    self,
    *,
    DirectoryId: str,
    RemoteDomainName: str,
    DnsIpAddrs: Sequence[str],
) -> Dict[str, Any]:
    ...
# create_conditional_forwarder method usage example with argument unpacking

kwargs: CreateConditionalForwarderRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "RemoteDomainName": ...,
    "DnsIpAddrs": ...,
}

parent.create_conditional_forwarder(**kwargs)
  1. See CreateConditionalForwarderRequestRequestTypeDef

create_directory#

Creates a Simple AD directory.

Type annotations and code completion for boto3.client("ds").create_directory method. boto3 documentation

# create_directory method definition

def create_directory(
    self,
    *,
    Name: str,
    Password: str,
    Size: DirectorySizeType,  # (1)
    ShortName: str = ...,
    Description: str = ...,
    VpcSettings: DirectoryVpcSettingsTypeDef = ...,  # (2)
    Tags: Sequence[TagTypeDef] = ...,  # (3)
) -> CreateDirectoryResultTypeDef:  # (4)
    ...
  1. See DirectorySizeType
  2. See DirectoryVpcSettingsTypeDef
  3. See TagTypeDef
  4. See CreateDirectoryResultTypeDef
# create_directory method usage example with argument unpacking

kwargs: CreateDirectoryRequestRequestTypeDef = {  # (1)
    "Name": ...,
    "Password": ...,
    "Size": ...,
}

parent.create_directory(**kwargs)
  1. See CreateDirectoryRequestRequestTypeDef

create_log_subscription#

Creates a subscription to forward real-time Directory Service domain controller security logs to the specified Amazon CloudWatch log group in your Amazon Web Services account.

Type annotations and code completion for boto3.client("ds").create_log_subscription method. boto3 documentation

# create_log_subscription method definition

def create_log_subscription(
    self,
    *,
    DirectoryId: str,
    LogGroupName: str,
) -> Dict[str, Any]:
    ...
# create_log_subscription method usage example with argument unpacking

kwargs: CreateLogSubscriptionRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "LogGroupName": ...,
}

parent.create_log_subscription(**kwargs)
  1. See CreateLogSubscriptionRequestRequestTypeDef

create_microsoft_ad#

Creates a Microsoft AD directory in the Amazon Web Services Cloud.

Type annotations and code completion for boto3.client("ds").create_microsoft_ad method. boto3 documentation

# create_microsoft_ad method definition

def create_microsoft_ad(
    self,
    *,
    Name: str,
    Password: str,
    VpcSettings: DirectoryVpcSettingsTypeDef,  # (1)
    ShortName: str = ...,
    Description: str = ...,
    Edition: DirectoryEditionType = ...,  # (2)
    Tags: Sequence[TagTypeDef] = ...,  # (3)
) -> CreateMicrosoftADResultTypeDef:  # (4)
    ...
  1. See DirectoryVpcSettingsTypeDef
  2. See DirectoryEditionType
  3. See TagTypeDef
  4. See CreateMicrosoftADResultTypeDef
# create_microsoft_ad method usage example with argument unpacking

kwargs: CreateMicrosoftADRequestRequestTypeDef = {  # (1)
    "Name": ...,
    "Password": ...,
    "VpcSettings": ...,
}

parent.create_microsoft_ad(**kwargs)
  1. See CreateMicrosoftADRequestRequestTypeDef

create_snapshot#

Creates a snapshot of a Simple AD or Microsoft AD directory in the Amazon Web Services cloud.

Type annotations and code completion for boto3.client("ds").create_snapshot method. boto3 documentation

# create_snapshot method definition

def create_snapshot(
    self,
    *,
    DirectoryId: str,
    Name: str = ...,
) -> CreateSnapshotResultTypeDef:  # (1)
    ...
  1. See CreateSnapshotResultTypeDef
# create_snapshot method usage example with argument unpacking

kwargs: CreateSnapshotRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.create_snapshot(**kwargs)
  1. See CreateSnapshotRequestRequestTypeDef

create_trust#

Directory Service for Microsoft Active Directory allows you to configure trust relationships.

Type annotations and code completion for boto3.client("ds").create_trust method. boto3 documentation

# create_trust method definition

def create_trust(
    self,
    *,
    DirectoryId: str,
    RemoteDomainName: str,
    TrustPassword: str,
    TrustDirection: TrustDirectionType,  # (1)
    TrustType: TrustTypeType = ...,  # (2)
    ConditionalForwarderIpAddrs: Sequence[str] = ...,
    SelectiveAuth: SelectiveAuthType = ...,  # (3)
) -> CreateTrustResultTypeDef:  # (4)
    ...
  1. See TrustDirectionType
  2. See TrustTypeType
  3. See SelectiveAuthType
  4. See CreateTrustResultTypeDef
# create_trust method usage example with argument unpacking

kwargs: CreateTrustRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "RemoteDomainName": ...,
    "TrustPassword": ...,
    "TrustDirection": ...,
}

parent.create_trust(**kwargs)
  1. See CreateTrustRequestRequestTypeDef

delete_conditional_forwarder#

Deletes a conditional forwarder that has been set up for your Amazon Web Services directory.

Type annotations and code completion for boto3.client("ds").delete_conditional_forwarder method. boto3 documentation

# delete_conditional_forwarder method definition

def delete_conditional_forwarder(
    self,
    *,
    DirectoryId: str,
    RemoteDomainName: str,
) -> Dict[str, Any]:
    ...
# delete_conditional_forwarder method usage example with argument unpacking

kwargs: DeleteConditionalForwarderRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "RemoteDomainName": ...,
}

parent.delete_conditional_forwarder(**kwargs)
  1. See DeleteConditionalForwarderRequestRequestTypeDef

delete_directory#

Deletes an Directory Service directory.

Type annotations and code completion for boto3.client("ds").delete_directory method. boto3 documentation

# delete_directory method definition

def delete_directory(
    self,
    *,
    DirectoryId: str,
) -> DeleteDirectoryResultTypeDef:  # (1)
    ...
  1. See DeleteDirectoryResultTypeDef
# delete_directory method usage example with argument unpacking

kwargs: DeleteDirectoryRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.delete_directory(**kwargs)
  1. See DeleteDirectoryRequestRequestTypeDef

delete_log_subscription#

Deletes the specified log subscription.

Type annotations and code completion for boto3.client("ds").delete_log_subscription method. boto3 documentation

# delete_log_subscription method definition

def delete_log_subscription(
    self,
    *,
    DirectoryId: str,
) -> Dict[str, Any]:
    ...
# delete_log_subscription method usage example with argument unpacking

kwargs: DeleteLogSubscriptionRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.delete_log_subscription(**kwargs)
  1. See DeleteLogSubscriptionRequestRequestTypeDef

delete_snapshot#

Deletes a directory snapshot.

Type annotations and code completion for boto3.client("ds").delete_snapshot method. boto3 documentation

# delete_snapshot method definition

def delete_snapshot(
    self,
    *,
    SnapshotId: str,
) -> DeleteSnapshotResultTypeDef:  # (1)
    ...
  1. See DeleteSnapshotResultTypeDef
# delete_snapshot method usage example with argument unpacking

kwargs: DeleteSnapshotRequestRequestTypeDef = {  # (1)
    "SnapshotId": ...,
}

parent.delete_snapshot(**kwargs)
  1. See DeleteSnapshotRequestRequestTypeDef

delete_trust#

Deletes an existing trust relationship between your Managed Microsoft AD directory and an external domain.

Type annotations and code completion for boto3.client("ds").delete_trust method. boto3 documentation

# delete_trust method definition

def delete_trust(
    self,
    *,
    TrustId: str,
    DeleteAssociatedConditionalForwarder: bool = ...,
) -> DeleteTrustResultTypeDef:  # (1)
    ...
  1. See DeleteTrustResultTypeDef
# delete_trust method usage example with argument unpacking

kwargs: DeleteTrustRequestRequestTypeDef = {  # (1)
    "TrustId": ...,
}

parent.delete_trust(**kwargs)
  1. See DeleteTrustRequestRequestTypeDef

deregister_certificate#

Deletes from the system the certificate that was registered for secure LDAP or client certificate authentication.

Type annotations and code completion for boto3.client("ds").deregister_certificate method. boto3 documentation

# deregister_certificate method definition

def deregister_certificate(
    self,
    *,
    DirectoryId: str,
    CertificateId: str,
) -> Dict[str, Any]:
    ...
# deregister_certificate method usage example with argument unpacking

kwargs: DeregisterCertificateRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "CertificateId": ...,
}

parent.deregister_certificate(**kwargs)
  1. See DeregisterCertificateRequestRequestTypeDef

deregister_event_topic#

Removes the specified directory as a publisher to the specified Amazon SNS topic.

Type annotations and code completion for boto3.client("ds").deregister_event_topic method. boto3 documentation

# deregister_event_topic method definition

def deregister_event_topic(
    self,
    *,
    DirectoryId: str,
    TopicName: str,
) -> Dict[str, Any]:
    ...
# deregister_event_topic method usage example with argument unpacking

kwargs: DeregisterEventTopicRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "TopicName": ...,
}

parent.deregister_event_topic(**kwargs)
  1. See DeregisterEventTopicRequestRequestTypeDef

describe_certificate#

Displays information about the certificate registered for secure LDAP or client certificate authentication.

Type annotations and code completion for boto3.client("ds").describe_certificate method. boto3 documentation

# describe_certificate method definition

def describe_certificate(
    self,
    *,
    DirectoryId: str,
    CertificateId: str,
) -> DescribeCertificateResultTypeDef:  # (1)
    ...
  1. See DescribeCertificateResultTypeDef
# describe_certificate method usage example with argument unpacking

kwargs: DescribeCertificateRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "CertificateId": ...,
}

parent.describe_certificate(**kwargs)
  1. See DescribeCertificateRequestRequestTypeDef

describe_client_authentication_settings#

Retrieves information about the type of client authentication for the specified directory, if the type is specified.

Type annotations and code completion for boto3.client("ds").describe_client_authentication_settings method. boto3 documentation

# describe_client_authentication_settings method definition

def describe_client_authentication_settings(
    self,
    *,
    DirectoryId: str,
    Type: ClientAuthenticationTypeType = ...,  # (1)
    NextToken: str = ...,
    Limit: int = ...,
) -> DescribeClientAuthenticationSettingsResultTypeDef:  # (2)
    ...
  1. See ClientAuthenticationTypeType
  2. See DescribeClientAuthenticationSettingsResultTypeDef
# describe_client_authentication_settings method usage example with argument unpacking

kwargs: DescribeClientAuthenticationSettingsRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.describe_client_authentication_settings(**kwargs)
  1. See DescribeClientAuthenticationSettingsRequestRequestTypeDef

describe_conditional_forwarders#

Obtains information about the conditional forwarders for this account.

Type annotations and code completion for boto3.client("ds").describe_conditional_forwarders method. boto3 documentation

# describe_conditional_forwarders method definition

def describe_conditional_forwarders(
    self,
    *,
    DirectoryId: str,
    RemoteDomainNames: Sequence[str] = ...,
) -> DescribeConditionalForwardersResultTypeDef:  # (1)
    ...
  1. See DescribeConditionalForwardersResultTypeDef
# describe_conditional_forwarders method usage example with argument unpacking

kwargs: DescribeConditionalForwardersRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.describe_conditional_forwarders(**kwargs)
  1. See DescribeConditionalForwardersRequestRequestTypeDef

describe_directories#

Obtains information about the directories that belong to this account.

Type annotations and code completion for boto3.client("ds").describe_directories method. boto3 documentation

# describe_directories method definition

def describe_directories(
    self,
    *,
    DirectoryIds: Sequence[str] = ...,
    NextToken: str = ...,
    Limit: int = ...,
) -> DescribeDirectoriesResultTypeDef:  # (1)
    ...
  1. See DescribeDirectoriesResultTypeDef
# describe_directories method usage example with argument unpacking

kwargs: DescribeDirectoriesRequestRequestTypeDef = {  # (1)
    "DirectoryIds": ...,
}

parent.describe_directories(**kwargs)
  1. See DescribeDirectoriesRequestRequestTypeDef

describe_domain_controllers#

Provides information about any domain controllers in your directory.

Type annotations and code completion for boto3.client("ds").describe_domain_controllers method. boto3 documentation

# describe_domain_controllers method definition

def describe_domain_controllers(
    self,
    *,
    DirectoryId: str,
    DomainControllerIds: Sequence[str] = ...,
    NextToken: str = ...,
    Limit: int = ...,
) -> DescribeDomainControllersResultTypeDef:  # (1)
    ...
  1. See DescribeDomainControllersResultTypeDef
# describe_domain_controllers method usage example with argument unpacking

kwargs: DescribeDomainControllersRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.describe_domain_controllers(**kwargs)
  1. See DescribeDomainControllersRequestRequestTypeDef

describe_event_topics#

Obtains information about which Amazon SNS topics receive status messages from the specified directory.

Type annotations and code completion for boto3.client("ds").describe_event_topics method. boto3 documentation

# describe_event_topics method definition

def describe_event_topics(
    self,
    *,
    DirectoryId: str = ...,
    TopicNames: Sequence[str] = ...,
) -> DescribeEventTopicsResultTypeDef:  # (1)
    ...
  1. See DescribeEventTopicsResultTypeDef
# describe_event_topics method usage example with argument unpacking

kwargs: DescribeEventTopicsRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.describe_event_topics(**kwargs)
  1. See DescribeEventTopicsRequestRequestTypeDef

describe_ldaps_settings#

Describes the status of LDAP security for the specified directory.

Type annotations and code completion for boto3.client("ds").describe_ldaps_settings method. boto3 documentation

# describe_ldaps_settings method definition

def describe_ldaps_settings(
    self,
    *,
    DirectoryId: str,
    Type: LDAPSTypeType = ...,  # (1)
    NextToken: str = ...,
    Limit: int = ...,
) -> DescribeLDAPSSettingsResultTypeDef:  # (2)
    ...
  1. See LDAPSTypeType
  2. See DescribeLDAPSSettingsResultTypeDef
# describe_ldaps_settings method usage example with argument unpacking

kwargs: DescribeLDAPSSettingsRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.describe_ldaps_settings(**kwargs)
  1. See DescribeLDAPSSettingsRequestRequestTypeDef

describe_regions#

Provides information about the Regions that are configured for multi-Region replication.

Type annotations and code completion for boto3.client("ds").describe_regions method. boto3 documentation

# describe_regions method definition

def describe_regions(
    self,
    *,
    DirectoryId: str,
    RegionName: str = ...,
    NextToken: str = ...,
) -> DescribeRegionsResultTypeDef:  # (1)
    ...
  1. See DescribeRegionsResultTypeDef
# describe_regions method usage example with argument unpacking

kwargs: DescribeRegionsRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.describe_regions(**kwargs)
  1. See DescribeRegionsRequestRequestTypeDef

describe_settings#

Retrieves information about the configurable settings for the specified directory.

Type annotations and code completion for boto3.client("ds").describe_settings method. boto3 documentation

# describe_settings method definition

def describe_settings(
    self,
    *,
    DirectoryId: str,
    Status: DirectoryConfigurationStatusType = ...,  # (1)
    NextToken: str = ...,
) -> DescribeSettingsResultTypeDef:  # (2)
    ...
  1. See DirectoryConfigurationStatusType
  2. See DescribeSettingsResultTypeDef
# describe_settings method usage example with argument unpacking

kwargs: DescribeSettingsRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.describe_settings(**kwargs)
  1. See DescribeSettingsRequestRequestTypeDef

describe_shared_directories#

Returns the shared directories in your account.

Type annotations and code completion for boto3.client("ds").describe_shared_directories method. boto3 documentation

# describe_shared_directories method definition

def describe_shared_directories(
    self,
    *,
    OwnerDirectoryId: str,
    SharedDirectoryIds: Sequence[str] = ...,
    NextToken: str = ...,
    Limit: int = ...,
) -> DescribeSharedDirectoriesResultTypeDef:  # (1)
    ...
  1. See DescribeSharedDirectoriesResultTypeDef
# describe_shared_directories method usage example with argument unpacking

kwargs: DescribeSharedDirectoriesRequestRequestTypeDef = {  # (1)
    "OwnerDirectoryId": ...,
}

parent.describe_shared_directories(**kwargs)
  1. See DescribeSharedDirectoriesRequestRequestTypeDef

describe_snapshots#

Obtains information about the directory snapshots that belong to this account.

Type annotations and code completion for boto3.client("ds").describe_snapshots method. boto3 documentation

# describe_snapshots method definition

def describe_snapshots(
    self,
    *,
    DirectoryId: str = ...,
    SnapshotIds: Sequence[str] = ...,
    NextToken: str = ...,
    Limit: int = ...,
) -> DescribeSnapshotsResultTypeDef:  # (1)
    ...
  1. See DescribeSnapshotsResultTypeDef
# describe_snapshots method usage example with argument unpacking

kwargs: DescribeSnapshotsRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.describe_snapshots(**kwargs)
  1. See DescribeSnapshotsRequestRequestTypeDef

describe_trusts#

Obtains information about the trust relationships for this account.

Type annotations and code completion for boto3.client("ds").describe_trusts method. boto3 documentation

# describe_trusts method definition

def describe_trusts(
    self,
    *,
    DirectoryId: str = ...,
    TrustIds: Sequence[str] = ...,
    NextToken: str = ...,
    Limit: int = ...,
) -> DescribeTrustsResultTypeDef:  # (1)
    ...
  1. See DescribeTrustsResultTypeDef
# describe_trusts method usage example with argument unpacking

kwargs: DescribeTrustsRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.describe_trusts(**kwargs)
  1. See DescribeTrustsRequestRequestTypeDef

describe_update_directory#

Describes the updates of a directory for a particular update type.

Type annotations and code completion for boto3.client("ds").describe_update_directory method. boto3 documentation

# describe_update_directory method definition

def describe_update_directory(
    self,
    *,
    DirectoryId: str,
    UpdateType: UpdateTypeType,  # (1)
    RegionName: str = ...,
    NextToken: str = ...,
) -> DescribeUpdateDirectoryResultTypeDef:  # (2)
    ...
  1. See UpdateTypeType
  2. See DescribeUpdateDirectoryResultTypeDef
# describe_update_directory method usage example with argument unpacking

kwargs: DescribeUpdateDirectoryRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "UpdateType": ...,
}

parent.describe_update_directory(**kwargs)
  1. See DescribeUpdateDirectoryRequestRequestTypeDef

disable_client_authentication#

Disables alternative client authentication methods for the specified directory.

Type annotations and code completion for boto3.client("ds").disable_client_authentication method. boto3 documentation

# disable_client_authentication method definition

def disable_client_authentication(
    self,
    *,
    DirectoryId: str,
    Type: ClientAuthenticationTypeType,  # (1)
) -> Dict[str, Any]:
    ...
  1. See ClientAuthenticationTypeType
# disable_client_authentication method usage example with argument unpacking

kwargs: DisableClientAuthenticationRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "Type": ...,
}

parent.disable_client_authentication(**kwargs)
  1. See DisableClientAuthenticationRequestRequestTypeDef

disable_ldaps#

Deactivates LDAP secure calls for the specified directory.

Type annotations and code completion for boto3.client("ds").disable_ldaps method. boto3 documentation

# disable_ldaps method definition

def disable_ldaps(
    self,
    *,
    DirectoryId: str,
    Type: LDAPSTypeType,  # (1)
) -> Dict[str, Any]:
    ...
  1. See LDAPSTypeType
# disable_ldaps method usage example with argument unpacking

kwargs: DisableLDAPSRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "Type": ...,
}

parent.disable_ldaps(**kwargs)
  1. See DisableLDAPSRequestRequestTypeDef

disable_radius#

Disables multi-factor authentication (MFA) with the Remote Authentication Dial In User Service (RADIUS) server for an AD Connector or Microsoft AD directory.

Type annotations and code completion for boto3.client("ds").disable_radius method. boto3 documentation

# disable_radius method definition

def disable_radius(
    self,
    *,
    DirectoryId: str,
) -> Dict[str, Any]:
    ...
# disable_radius method usage example with argument unpacking

kwargs: DisableRadiusRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.disable_radius(**kwargs)
  1. See DisableRadiusRequestRequestTypeDef

disable_sso#

Disables single-sign on for a directory.

Type annotations and code completion for boto3.client("ds").disable_sso method. boto3 documentation

# disable_sso method definition

def disable_sso(
    self,
    *,
    DirectoryId: str,
    UserName: str = ...,
    Password: str = ...,
) -> Dict[str, Any]:
    ...
# disable_sso method usage example with argument unpacking

kwargs: DisableSsoRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.disable_sso(**kwargs)
  1. See DisableSsoRequestRequestTypeDef

enable_client_authentication#

Enables alternative client authentication methods for the specified directory.

Type annotations and code completion for boto3.client("ds").enable_client_authentication method. boto3 documentation

# enable_client_authentication method definition

def enable_client_authentication(
    self,
    *,
    DirectoryId: str,
    Type: ClientAuthenticationTypeType,  # (1)
) -> Dict[str, Any]:
    ...
  1. See ClientAuthenticationTypeType
# enable_client_authentication method usage example with argument unpacking

kwargs: EnableClientAuthenticationRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "Type": ...,
}

parent.enable_client_authentication(**kwargs)
  1. See EnableClientAuthenticationRequestRequestTypeDef

enable_ldaps#

Activates the switch for the specific directory to always use LDAP secure calls.

Type annotations and code completion for boto3.client("ds").enable_ldaps method. boto3 documentation

# enable_ldaps method definition

def enable_ldaps(
    self,
    *,
    DirectoryId: str,
    Type: LDAPSTypeType,  # (1)
) -> Dict[str, Any]:
    ...
  1. See LDAPSTypeType
# enable_ldaps method usage example with argument unpacking

kwargs: EnableLDAPSRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "Type": ...,
}

parent.enable_ldaps(**kwargs)
  1. See EnableLDAPSRequestRequestTypeDef

enable_radius#

Enables multi-factor authentication (MFA) with the Remote Authentication Dial In User Service (RADIUS) server for an AD Connector or Microsoft AD directory.

Type annotations and code completion for boto3.client("ds").enable_radius method. boto3 documentation

# enable_radius method definition

def enable_radius(
    self,
    *,
    DirectoryId: str,
    RadiusSettings: RadiusSettingsTypeDef,  # (1)
) -> Dict[str, Any]:
    ...
  1. See RadiusSettingsTypeDef
# enable_radius method usage example with argument unpacking

kwargs: EnableRadiusRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "RadiusSettings": ...,
}

parent.enable_radius(**kwargs)
  1. See EnableRadiusRequestRequestTypeDef

enable_sso#

Enables single sign-on for a directory.

Type annotations and code completion for boto3.client("ds").enable_sso method. boto3 documentation

# enable_sso method definition

def enable_sso(
    self,
    *,
    DirectoryId: str,
    UserName: str = ...,
    Password: str = ...,
) -> Dict[str, Any]:
    ...
# enable_sso method usage example with argument unpacking

kwargs: EnableSsoRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.enable_sso(**kwargs)
  1. See EnableSsoRequestRequestTypeDef

generate_presigned_url#

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for boto3.client("ds").generate_presigned_url method. boto3 documentation

# generate_presigned_url method definition

def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_directory_limits#

Obtains directory limit information for the current Region.

Type annotations and code completion for boto3.client("ds").get_directory_limits method. boto3 documentation

# get_directory_limits method definition

def get_directory_limits(
    self,
) -> GetDirectoryLimitsResultTypeDef:  # (1)
    ...
  1. See GetDirectoryLimitsResultTypeDef

get_snapshot_limits#

Obtains the manual snapshot limits for a directory.

Type annotations and code completion for boto3.client("ds").get_snapshot_limits method. boto3 documentation

# get_snapshot_limits method definition

def get_snapshot_limits(
    self,
    *,
    DirectoryId: str,
) -> GetSnapshotLimitsResultTypeDef:  # (1)
    ...
  1. See GetSnapshotLimitsResultTypeDef
# get_snapshot_limits method usage example with argument unpacking

kwargs: GetSnapshotLimitsRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.get_snapshot_limits(**kwargs)
  1. See GetSnapshotLimitsRequestRequestTypeDef

list_certificates#

For the specified directory, lists all the certificates registered for a secure LDAP or client certificate authentication.

Type annotations and code completion for boto3.client("ds").list_certificates method. boto3 documentation

# list_certificates method definition

def list_certificates(
    self,
    *,
    DirectoryId: str,
    NextToken: str = ...,
    Limit: int = ...,
) -> ListCertificatesResultTypeDef:  # (1)
    ...
  1. See ListCertificatesResultTypeDef
# list_certificates method usage example with argument unpacking

kwargs: ListCertificatesRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.list_certificates(**kwargs)
  1. See ListCertificatesRequestRequestTypeDef

list_ip_routes#

Lists the address blocks that you have added to a directory.

Type annotations and code completion for boto3.client("ds").list_ip_routes method. boto3 documentation

# list_ip_routes method definition

def list_ip_routes(
    self,
    *,
    DirectoryId: str,
    NextToken: str = ...,
    Limit: int = ...,
) -> ListIpRoutesResultTypeDef:  # (1)
    ...
  1. See ListIpRoutesResultTypeDef
# list_ip_routes method usage example with argument unpacking

kwargs: ListIpRoutesRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.list_ip_routes(**kwargs)
  1. See ListIpRoutesRequestRequestTypeDef

list_log_subscriptions#

Lists the active log subscriptions for the Amazon Web Services account.

Type annotations and code completion for boto3.client("ds").list_log_subscriptions method. boto3 documentation

# list_log_subscriptions method definition

def list_log_subscriptions(
    self,
    *,
    DirectoryId: str = ...,
    NextToken: str = ...,
    Limit: int = ...,
) -> ListLogSubscriptionsResultTypeDef:  # (1)
    ...
  1. See ListLogSubscriptionsResultTypeDef
# list_log_subscriptions method usage example with argument unpacking

kwargs: ListLogSubscriptionsRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.list_log_subscriptions(**kwargs)
  1. See ListLogSubscriptionsRequestRequestTypeDef

list_schema_extensions#

Lists all schema extensions applied to a Microsoft AD Directory.

Type annotations and code completion for boto3.client("ds").list_schema_extensions method. boto3 documentation

# list_schema_extensions method definition

def list_schema_extensions(
    self,
    *,
    DirectoryId: str,
    NextToken: str = ...,
    Limit: int = ...,
) -> ListSchemaExtensionsResultTypeDef:  # (1)
    ...
  1. See ListSchemaExtensionsResultTypeDef
# list_schema_extensions method usage example with argument unpacking

kwargs: ListSchemaExtensionsRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.list_schema_extensions(**kwargs)
  1. See ListSchemaExtensionsRequestRequestTypeDef

list_tags_for_resource#

Lists all tags on a directory.

Type annotations and code completion for boto3.client("ds").list_tags_for_resource method. boto3 documentation

# list_tags_for_resource method definition

def list_tags_for_resource(
    self,
    *,
    ResourceId: str,
    NextToken: str = ...,
    Limit: int = ...,
) -> ListTagsForResourceResultTypeDef:  # (1)
    ...
  1. See ListTagsForResourceResultTypeDef
# list_tags_for_resource method usage example with argument unpacking

kwargs: ListTagsForResourceRequestRequestTypeDef = {  # (1)
    "ResourceId": ...,
}

parent.list_tags_for_resource(**kwargs)
  1. See ListTagsForResourceRequestRequestTypeDef

register_certificate#

Registers a certificate for a secure LDAP or client certificate authentication.

Type annotations and code completion for boto3.client("ds").register_certificate method. boto3 documentation

# register_certificate method definition

def register_certificate(
    self,
    *,
    DirectoryId: str,
    CertificateData: str,
    Type: CertificateTypeType = ...,  # (1)
    ClientCertAuthSettings: ClientCertAuthSettingsTypeDef = ...,  # (2)
) -> RegisterCertificateResultTypeDef:  # (3)
    ...
  1. See CertificateTypeType
  2. See ClientCertAuthSettingsTypeDef
  3. See RegisterCertificateResultTypeDef
# register_certificate method usage example with argument unpacking

kwargs: RegisterCertificateRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "CertificateData": ...,
}

parent.register_certificate(**kwargs)
  1. See RegisterCertificateRequestRequestTypeDef

register_event_topic#

Associates a directory with an Amazon SNS topic.

Type annotations and code completion for boto3.client("ds").register_event_topic method. boto3 documentation

# register_event_topic method definition

def register_event_topic(
    self,
    *,
    DirectoryId: str,
    TopicName: str,
) -> Dict[str, Any]:
    ...
# register_event_topic method usage example with argument unpacking

kwargs: RegisterEventTopicRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "TopicName": ...,
}

parent.register_event_topic(**kwargs)
  1. See RegisterEventTopicRequestRequestTypeDef

reject_shared_directory#

Rejects a directory sharing request that was sent from the directory owner account.

Type annotations and code completion for boto3.client("ds").reject_shared_directory method. boto3 documentation

# reject_shared_directory method definition

def reject_shared_directory(
    self,
    *,
    SharedDirectoryId: str,
) -> RejectSharedDirectoryResultTypeDef:  # (1)
    ...
  1. See RejectSharedDirectoryResultTypeDef
# reject_shared_directory method usage example with argument unpacking

kwargs: RejectSharedDirectoryRequestRequestTypeDef = {  # (1)
    "SharedDirectoryId": ...,
}

parent.reject_shared_directory(**kwargs)
  1. See RejectSharedDirectoryRequestRequestTypeDef

remove_ip_routes#

Removes IP address blocks from a directory.

Type annotations and code completion for boto3.client("ds").remove_ip_routes method. boto3 documentation

# remove_ip_routes method definition

def remove_ip_routes(
    self,
    *,
    DirectoryId: str,
    CidrIps: Sequence[str],
) -> Dict[str, Any]:
    ...
# remove_ip_routes method usage example with argument unpacking

kwargs: RemoveIpRoutesRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "CidrIps": ...,
}

parent.remove_ip_routes(**kwargs)
  1. See RemoveIpRoutesRequestRequestTypeDef

remove_region#

Stops all replication and removes the domain controllers from the specified Region.

Type annotations and code completion for boto3.client("ds").remove_region method. boto3 documentation

# remove_region method definition

def remove_region(
    self,
    *,
    DirectoryId: str,
) -> Dict[str, Any]:
    ...
# remove_region method usage example with argument unpacking

kwargs: RemoveRegionRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
}

parent.remove_region(**kwargs)
  1. See RemoveRegionRequestRequestTypeDef

remove_tags_from_resource#

Removes tags from a directory.

Type annotations and code completion for boto3.client("ds").remove_tags_from_resource method. boto3 documentation

# remove_tags_from_resource method definition

def remove_tags_from_resource(
    self,
    *,
    ResourceId: str,
    TagKeys: Sequence[str],
) -> Dict[str, Any]:
    ...
# remove_tags_from_resource method usage example with argument unpacking

kwargs: RemoveTagsFromResourceRequestRequestTypeDef = {  # (1)
    "ResourceId": ...,
    "TagKeys": ...,
}

parent.remove_tags_from_resource(**kwargs)
  1. See RemoveTagsFromResourceRequestRequestTypeDef

reset_user_password#

Resets the password for any user in your Managed Microsoft AD or Simple AD directory.

Type annotations and code completion for boto3.client("ds").reset_user_password method. boto3 documentation

# reset_user_password method definition

def reset_user_password(
    self,
    *,
    DirectoryId: str,
    UserName: str,
    NewPassword: str,
) -> Dict[str, Any]:
    ...
# reset_user_password method usage example with argument unpacking

kwargs: ResetUserPasswordRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "UserName": ...,
    "NewPassword": ...,
}

parent.reset_user_password(**kwargs)
  1. See ResetUserPasswordRequestRequestTypeDef

restore_from_snapshot#

Restores a directory using an existing directory snapshot.

Type annotations and code completion for boto3.client("ds").restore_from_snapshot method. boto3 documentation

# restore_from_snapshot method definition

def restore_from_snapshot(
    self,
    *,
    SnapshotId: str,
) -> Dict[str, Any]:
    ...
# restore_from_snapshot method usage example with argument unpacking

kwargs: RestoreFromSnapshotRequestRequestTypeDef = {  # (1)
    "SnapshotId": ...,
}

parent.restore_from_snapshot(**kwargs)
  1. See RestoreFromSnapshotRequestRequestTypeDef

share_directory#

Shares a specified directory ( DirectoryId) in your Amazon Web Services account (directory owner) with another Amazon Web Services account (directory consumer).

Type annotations and code completion for boto3.client("ds").share_directory method. boto3 documentation

# share_directory method definition

def share_directory(
    self,
    *,
    DirectoryId: str,
    ShareTarget: ShareTargetTypeDef,  # (1)
    ShareMethod: ShareMethodType,  # (2)
    ShareNotes: str = ...,
) -> ShareDirectoryResultTypeDef:  # (3)
    ...
  1. See ShareTargetTypeDef
  2. See ShareMethodType
  3. See ShareDirectoryResultTypeDef
# share_directory method usage example with argument unpacking

kwargs: ShareDirectoryRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "ShareTarget": ...,
    "ShareMethod": ...,
}

parent.share_directory(**kwargs)
  1. See ShareDirectoryRequestRequestTypeDef

start_schema_extension#

Applies a schema extension to a Microsoft AD directory.

Type annotations and code completion for boto3.client("ds").start_schema_extension method. boto3 documentation

# start_schema_extension method definition

def start_schema_extension(
    self,
    *,
    DirectoryId: str,
    CreateSnapshotBeforeSchemaExtension: bool,
    LdifContent: str,
    Description: str,
) -> StartSchemaExtensionResultTypeDef:  # (1)
    ...
  1. See StartSchemaExtensionResultTypeDef
# start_schema_extension method usage example with argument unpacking

kwargs: StartSchemaExtensionRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "CreateSnapshotBeforeSchemaExtension": ...,
    "LdifContent": ...,
    "Description": ...,
}

parent.start_schema_extension(**kwargs)
  1. See StartSchemaExtensionRequestRequestTypeDef

unshare_directory#

Stops the directory sharing between the directory owner and consumer accounts.

Type annotations and code completion for boto3.client("ds").unshare_directory method. boto3 documentation

# unshare_directory method definition

def unshare_directory(
    self,
    *,
    DirectoryId: str,
    UnshareTarget: UnshareTargetTypeDef,  # (1)
) -> UnshareDirectoryResultTypeDef:  # (2)
    ...
  1. See UnshareTargetTypeDef
  2. See UnshareDirectoryResultTypeDef
# unshare_directory method usage example with argument unpacking

kwargs: UnshareDirectoryRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "UnshareTarget": ...,
}

parent.unshare_directory(**kwargs)
  1. See UnshareDirectoryRequestRequestTypeDef

update_conditional_forwarder#

Updates a conditional forwarder that has been set up for your Amazon Web Services directory.

Type annotations and code completion for boto3.client("ds").update_conditional_forwarder method. boto3 documentation

# update_conditional_forwarder method definition

def update_conditional_forwarder(
    self,
    *,
    DirectoryId: str,
    RemoteDomainName: str,
    DnsIpAddrs: Sequence[str],
) -> Dict[str, Any]:
    ...
# update_conditional_forwarder method usage example with argument unpacking

kwargs: UpdateConditionalForwarderRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "RemoteDomainName": ...,
    "DnsIpAddrs": ...,
}

parent.update_conditional_forwarder(**kwargs)
  1. See UpdateConditionalForwarderRequestRequestTypeDef

update_directory_setup#

Updates the directory for a particular update type.

Type annotations and code completion for boto3.client("ds").update_directory_setup method. boto3 documentation

# update_directory_setup method definition

def update_directory_setup(
    self,
    *,
    DirectoryId: str,
    UpdateType: UpdateTypeType,  # (1)
    OSUpdateSettings: OSUpdateSettingsTypeDef = ...,  # (2)
    CreateSnapshotBeforeUpdate: bool = ...,
) -> Dict[str, Any]:
    ...
  1. See UpdateTypeType
  2. See OSUpdateSettingsTypeDef
# update_directory_setup method usage example with argument unpacking

kwargs: UpdateDirectorySetupRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "UpdateType": ...,
}

parent.update_directory_setup(**kwargs)
  1. See UpdateDirectorySetupRequestRequestTypeDef

update_number_of_domain_controllers#

Adds or removes domain controllers to or from the directory.

Type annotations and code completion for boto3.client("ds").update_number_of_domain_controllers method. boto3 documentation

# update_number_of_domain_controllers method definition

def update_number_of_domain_controllers(
    self,
    *,
    DirectoryId: str,
    DesiredNumber: int,
) -> Dict[str, Any]:
    ...
# update_number_of_domain_controllers method usage example with argument unpacking

kwargs: UpdateNumberOfDomainControllersRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "DesiredNumber": ...,
}

parent.update_number_of_domain_controllers(**kwargs)
  1. See UpdateNumberOfDomainControllersRequestRequestTypeDef

update_radius#

Updates the Remote Authentication Dial In User Service (RADIUS) server information for an AD Connector or Microsoft AD directory.

Type annotations and code completion for boto3.client("ds").update_radius method. boto3 documentation

# update_radius method definition

def update_radius(
    self,
    *,
    DirectoryId: str,
    RadiusSettings: RadiusSettingsTypeDef,  # (1)
) -> Dict[str, Any]:
    ...
  1. See RadiusSettingsTypeDef
# update_radius method usage example with argument unpacking

kwargs: UpdateRadiusRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "RadiusSettings": ...,
}

parent.update_radius(**kwargs)
  1. See UpdateRadiusRequestRequestTypeDef

update_settings#

Updates the configurable settings for the specified directory.

Type annotations and code completion for boto3.client("ds").update_settings method. boto3 documentation

# update_settings method definition

def update_settings(
    self,
    *,
    DirectoryId: str,
    Settings: Sequence[SettingTypeDef],  # (1)
) -> UpdateSettingsResultTypeDef:  # (2)
    ...
  1. See SettingTypeDef
  2. See UpdateSettingsResultTypeDef
# update_settings method usage example with argument unpacking

kwargs: UpdateSettingsRequestRequestTypeDef = {  # (1)
    "DirectoryId": ...,
    "Settings": ...,
}

parent.update_settings(**kwargs)
  1. See UpdateSettingsRequestRequestTypeDef

update_trust#

Updates the trust that has been set up between your Managed Microsoft AD directory and an self-managed Active Directory.

Type annotations and code completion for boto3.client("ds").update_trust method. boto3 documentation

# update_trust method definition

def update_trust(
    self,
    *,
    TrustId: str,
    SelectiveAuth: SelectiveAuthType = ...,  # (1)
) -> UpdateTrustResultTypeDef:  # (2)
    ...
  1. See SelectiveAuthType
  2. See UpdateTrustResultTypeDef
# update_trust method usage example with argument unpacking

kwargs: UpdateTrustRequestRequestTypeDef = {  # (1)
    "TrustId": ...,
}

parent.update_trust(**kwargs)
  1. See UpdateTrustRequestRequestTypeDef

verify_trust#

Directory Service for Microsoft Active Directory allows you to configure and verify trust relationships.

Type annotations and code completion for boto3.client("ds").verify_trust method. boto3 documentation

# verify_trust method definition

def verify_trust(
    self,
    *,
    TrustId: str,
) -> VerifyTrustResultTypeDef:  # (1)
    ...
  1. See VerifyTrustResultTypeDef
# verify_trust method usage example with argument unpacking

kwargs: VerifyTrustRequestRequestTypeDef = {  # (1)
    "TrustId": ...,
}

parent.verify_trust(**kwargs)
  1. See VerifyTrustRequestRequestTypeDef

get_paginator#

Type annotations and code completion for boto3.client("ds").get_paginator method with overloads.