aws-sdk-directoryservice 1.41.0 → 1.42.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 22b2d45b437c508815ecfe206eb16bd6b42a3ec2f8b98425131e0a4ad8bbdc33
4
- data.tar.gz: 88131357e4992806744ac0c533436ee832e217efa9235e709a531c417a481199
3
+ metadata.gz: 3d79cf8eff5034756f55e3269f0c361966d10cfeb8c182421a597609dbba8e40
4
+ data.tar.gz: 3f1ccdba4d443e865fe3efa893fb7e16bd639e7e89844e4b95c53d8da02aae2c
5
5
  SHA512:
6
- metadata.gz: 77c8ff1065c7aaa9efdf8112a8bb87d6bff3a02a8acf3b87c6672ea3be0bddd5b75fb2b07ad2952e155ba761cc688a263fb5ea71b1f02bb40c2576e110528739
7
- data.tar.gz: c1d97f56b7093a64ccb6588e8a95d6b40255fd67785146a6faa52ca38ee9a897a24c37b1290635c17e4e9ed680f4eb94f0446cc99a82bb60f44d5530225c5f45
6
+ metadata.gz: 72e49cb931564046a1ce0f6039f543745a87005c0c0c36ee4a9ff792ec012b1501966b3b4276c6215d1ada1319f2a9bef9b8bac5b6a0e8111475ccdcb6d6ca33
7
+ data.tar.gz: 9ef91365d9596e60f501545cda383cd2d702590fabbd83da03d74a55833e57fc60c18e8e991bed2bc103d1b47d15760d998b7970051227a59d862ad666c570cf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2021-08-16)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for describing client authentication settings.
8
+
4
9
  1.41.0 (2021-07-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.42.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-directoryservice/customizations'
48
48
  # @!group service
49
49
  module Aws::DirectoryService
50
50
 
51
- GEM_VERSION = '1.41.0'
51
+ GEM_VERSION = '1.42.0'
52
52
 
53
53
  end
@@ -375,18 +375,18 @@ module Aws::DirectoryService
375
375
  req.send_request(options)
376
376
  end
377
377
 
378
- # If the DNS server for your on-premises domain uses a publicly
378
+ # If the DNS server for your self-managed domain uses a publicly
379
379
  # addressable IP address, you must add a CIDR address block to correctly
380
380
  # route traffic to and from your Microsoft AD on Amazon Web Services.
381
381
  # *AddIpRoutes* adds this address block. You can also use *AddIpRoutes*
382
382
  # to facilitate routing traffic that uses public IP ranges from your
383
- # Microsoft AD on AWS to a peer VPC.
383
+ # Microsoft AD on Amazon Web Services to a peer VPC.
384
384
  #
385
385
  # Before you call *AddIpRoutes*, ensure that all of the required
386
386
  # permissions have been explicitly granted through a policy. For details
387
387
  # about what permissions are required to run the *AddIpRoutes*
388
- # operation, see [AWS Directory Service API Permissions: Actions,
389
- # Resources, and Conditions Reference][1].
388
+ # operation, see [Directory Service API Permissions: Actions, Resources,
389
+ # and Conditions Reference][1].
390
390
  #
391
391
  #
392
392
  #
@@ -397,13 +397,14 @@ module Aws::DirectoryService
397
397
  #
398
398
  # @option params [required, Array<Types::IpRoute>] :ip_routes
399
399
  # IP address blocks, using CIDR format, of the traffic to route. This is
400
- # often the IP address block of the DNS server used for your on-premises
401
- # domain.
400
+ # often the IP address block of the DNS server used for your
401
+ # self-managed domain.
402
402
  #
403
403
  # @option params [Boolean] :update_security_group_for_directory_controllers
404
404
  # If set to true, updates the inbound and outbound rules of the security
405
- # group that has the description: "AWS created security group for
406
- # *directory ID* directory controllers." Following are the new rules:
405
+ # group that has the description: "Amazon Web Services created security
406
+ # group for *directory ID* directory controllers." Following are the
407
+ # new rules:
407
408
  #
408
409
  # Inbound:
409
410
  #
@@ -579,27 +580,27 @@ module Aws::DirectoryService
579
580
  req.send_request(options)
580
581
  end
581
582
 
582
- # Creates an AD Connector to connect to an on-premises directory.
583
+ # Creates an AD Connector to connect to a self-managed directory.
583
584
  #
584
585
  # Before you call `ConnectDirectory`, ensure that all of the required
585
586
  # permissions have been explicitly granted through a policy. For details
586
587
  # about what permissions are required to run the `ConnectDirectory`
587
- # operation, see [AWS Directory Service API Permissions: Actions,
588
- # Resources, and Conditions Reference][1].
588
+ # operation, see [Directory Service API Permissions: Actions, Resources,
589
+ # and Conditions Reference][1].
589
590
  #
590
591
  #
591
592
  #
592
593
  # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html
593
594
  #
594
595
  # @option params [required, String] :name
595
- # The fully qualified name of the on-premises directory, such as
596
+ # The fully qualified name of your self-managed directory, such as
596
597
  # `corp.example.com`.
597
598
  #
598
599
  # @option params [String] :short_name
599
- # The NetBIOS name of the on-premises directory, such as `CORP`.
600
+ # The NetBIOS name of your self-managed directory, such as `CORP`.
600
601
  #
601
602
  # @option params [required, String] :password
602
- # The password for the on-premises user account.
603
+ # The password for your self-managed user account.
603
604
  #
604
605
  # @option params [String] :description
605
606
  # A description for the directory.
@@ -666,9 +667,9 @@ module Aws::DirectoryService
666
667
  # @option params [required, String] :alias
667
668
  # The requested alias.
668
669
  #
669
- # The alias must be unique amongst all aliases in AWS. This operation
670
- # throws an `EntityAlreadyExistsException` error if the alias already
671
- # exists.
670
+ # The alias must be unique amongst all aliases in Amazon Web Services.
671
+ # This operation throws an `EntityAlreadyExistsException` error if the
672
+ # alias already exists.
672
673
  #
673
674
  # @return [Types::CreateAliasResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
674
675
  #
@@ -755,14 +756,14 @@ module Aws::DirectoryService
755
756
  req.send_request(options)
756
757
  end
757
758
 
758
- # Creates a conditional forwarder associated with your AWS directory.
759
- # Conditional forwarders are required in order to set up a trust
760
- # relationship with another domain. The conditional forwarder points to
761
- # the trusted domain.
759
+ # Creates a conditional forwarder associated with your Amazon Web
760
+ # Services directory. Conditional forwarders are required in order to
761
+ # set up a trust relationship with another domain. The conditional
762
+ # forwarder points to the trusted domain.
762
763
  #
763
764
  # @option params [required, String] :directory_id
764
- # The directory ID of the AWS directory for which you are creating the
765
- # conditional forwarder.
765
+ # The directory ID of the Amazon Web Services directory for which you
766
+ # are creating the conditional forwarder.
766
767
  #
767
768
  # @option params [required, String] :remote_domain_name
768
769
  # The fully qualified domain name (FQDN) of the remote domain with which
@@ -792,13 +793,13 @@ module Aws::DirectoryService
792
793
  end
793
794
 
794
795
  # Creates a Simple AD directory. For more information, see [Simple
795
- # Active Directory][1] in the *AWS Directory Service Admin Guide*.
796
+ # Active Directory][1] in the *Directory Service Admin Guide*.
796
797
  #
797
798
  # Before you call `CreateDirectory`, ensure that all of the required
798
799
  # permissions have been explicitly granted through a policy. For details
799
800
  # about what permissions are required to run the `CreateDirectory`
800
- # operation, see [AWS Directory Service API Permissions: Actions,
801
- # Resources, and Conditions Reference][2].
801
+ # operation, see [Directory Service API Permissions: Actions, Resources,
802
+ # and Conditions Reference][2].
802
803
  #
803
804
  #
804
805
  #
@@ -902,7 +903,7 @@ module Aws::DirectoryService
902
903
 
903
904
  # Creates a subscription to forward real-time Directory Service domain
904
905
  # controller security logs to the specified Amazon CloudWatch log group
905
- # in your AWS account.
906
+ # in your Amazon Web Services account.
906
907
  #
907
908
  # @option params [required, String] :directory_id
908
909
  # Identifier of the directory to which you want to subscribe and receive
@@ -930,15 +931,15 @@ module Aws::DirectoryService
930
931
  req.send_request(options)
931
932
  end
932
933
 
933
- # Creates a Microsoft AD directory in the AWS Cloud. For more
934
- # information, see [AWS Managed Microsoft AD][1] in the *AWS Directory
934
+ # Creates a Microsoft AD directory in the Amazon Web Services Cloud. For
935
+ # more information, see [Managed Microsoft AD][1] in the *Directory
935
936
  # Service Admin Guide*.
936
937
  #
937
938
  # Before you call *CreateMicrosoftAD*, ensure that all of the required
938
939
  # permissions have been explicitly granted through a policy. For details
939
940
  # about what permissions are required to run the *CreateMicrosoftAD*
940
- # operation, see [AWS Directory Service API Permissions: Actions,
941
- # Resources, and Conditions Reference][2].
941
+ # operation, see [Directory Service API Permissions: Actions, Resources,
942
+ # and Conditions Reference][2].
942
943
  #
943
944
  #
944
945
  #
@@ -946,7 +947,7 @@ module Aws::DirectoryService
946
947
  # [2]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html
947
948
  #
948
949
  # @option params [required, String] :name
949
- # The fully qualified domain name for the AWS Managed Microsoft AD
950
+ # The fully qualified domain name for the Managed Microsoft AD
950
951
  # directory, such as `corp.example.com`. This name will resolve inside
951
952
  # your VPC only. It does not need to be publicly resolvable.
952
953
  #
@@ -963,19 +964,20 @@ module Aws::DirectoryService
963
964
  # can use the ResetUserPassword API call.
964
965
  #
965
966
  # @option params [String] :description
966
- # A description for the directory. This label will appear on the AWS
967
- # console `Directory Details` page after the directory is created.
967
+ # A description for the directory. This label will appear on the Amazon
968
+ # Web Services console `Directory Details` page after the directory is
969
+ # created.
968
970
  #
969
971
  # @option params [required, Types::DirectoryVpcSettings] :vpc_settings
970
972
  # Contains VPC information for the CreateDirectory or CreateMicrosoftAD
971
973
  # operation.
972
974
  #
973
975
  # @option params [String] :edition
974
- # AWS Managed Microsoft AD is available in two editions: `Standard` and
976
+ # Managed Microsoft AD is available in two editions: `Standard` and
975
977
  # `Enterprise`. `Enterprise` is the default.
976
978
  #
977
979
  # @option params [Array<Types::Tag>] :tags
978
- # The tags to be assigned to the AWS Managed Microsoft AD directory.
980
+ # The tags to be assigned to the Managed Microsoft AD directory.
979
981
  #
980
982
  # @return [Types::CreateMicrosoftADResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
981
983
  #
@@ -1014,8 +1016,8 @@ module Aws::DirectoryService
1014
1016
  req.send_request(options)
1015
1017
  end
1016
1018
 
1017
- # Creates a snapshot of a Simple AD or Microsoft AD directory in the AWS
1018
- # cloud.
1019
+ # Creates a snapshot of a Simple AD or Microsoft AD directory in the
1020
+ # Amazon Web Services cloud.
1019
1021
  #
1020
1022
  # <note markdown="1"> You cannot take snapshots of AD Connector directories.
1021
1023
  #
@@ -1051,21 +1053,21 @@ module Aws::DirectoryService
1051
1053
  req.send_request(options)
1052
1054
  end
1053
1055
 
1054
- # AWS Directory Service for Microsoft Active Directory allows you to
1056
+ # Directory Service for Microsoft Active Directory allows you to
1055
1057
  # configure trust relationships. For example, you can establish a trust
1056
- # between your AWS Managed Microsoft AD directory, and your existing
1057
- # on-premises Microsoft Active Directory. This would allow you to
1058
+ # between your Managed Microsoft AD directory, and your existing
1059
+ # self-managed Microsoft Active Directory. This would allow you to
1058
1060
  # provide users and groups access to resources in either domain, with a
1059
1061
  # single set of credentials.
1060
1062
  #
1061
- # This action initiates the creation of the AWS side of a trust
1062
- # relationship between an AWS Managed Microsoft AD directory and an
1063
+ # This action initiates the creation of the Amazon Web Services side of
1064
+ # a trust relationship between an Managed Microsoft AD directory and an
1063
1065
  # external domain. You can create either a forest trust or an external
1064
1066
  # trust.
1065
1067
  #
1066
1068
  # @option params [required, String] :directory_id
1067
- # The Directory ID of the AWS Managed Microsoft AD directory for which
1068
- # to establish the trust relationship.
1069
+ # The Directory ID of the Managed Microsoft AD directory for which to
1070
+ # establish the trust relationship.
1069
1071
  #
1070
1072
  # @option params [required, String] :remote_domain_name
1071
1073
  # The Fully Qualified Domain Name (FQDN) of the external domain for
@@ -1117,8 +1119,8 @@ module Aws::DirectoryService
1117
1119
  req.send_request(options)
1118
1120
  end
1119
1121
 
1120
- # Deletes a conditional forwarder that has been set up for your AWS
1121
- # directory.
1122
+ # Deletes a conditional forwarder that has been set up for your Amazon
1123
+ # Web Services directory.
1122
1124
  #
1123
1125
  # @option params [required, String] :directory_id
1124
1126
  # The directory ID for which you are deleting the conditional forwarder.
@@ -1145,13 +1147,13 @@ module Aws::DirectoryService
1145
1147
  req.send_request(options)
1146
1148
  end
1147
1149
 
1148
- # Deletes an AWS Directory Service directory.
1150
+ # Deletes an Directory Service directory.
1149
1151
  #
1150
1152
  # Before you call `DeleteDirectory`, ensure that all of the required
1151
1153
  # permissions have been explicitly granted through a policy. For details
1152
1154
  # about what permissions are required to run the `DeleteDirectory`
1153
- # operation, see [AWS Directory Service API Permissions: Actions,
1154
- # Resources, and Conditions Reference][1].
1155
+ # operation, see [Directory Service API Permissions: Actions, Resources,
1156
+ # and Conditions Reference][1].
1155
1157
  #
1156
1158
  #
1157
1159
  #
@@ -1233,8 +1235,8 @@ module Aws::DirectoryService
1233
1235
  req.send_request(options)
1234
1236
  end
1235
1237
 
1236
- # Deletes an existing trust relationship between your AWS Managed
1237
- # Microsoft AD directory and an external domain.
1238
+ # Deletes an existing trust relationship between your Managed Microsoft
1239
+ # AD directory and an external domain.
1238
1240
  #
1239
1241
  # @option params [required, String] :trust_id
1240
1242
  # The Trust ID of the trust relationship to be deleted.
@@ -1293,16 +1295,16 @@ module Aws::DirectoryService
1293
1295
  req.send_request(options)
1294
1296
  end
1295
1297
 
1296
- # Removes the specified directory as a publisher to the specified SNS
1297
- # topic.
1298
+ # Removes the specified directory as a publisher to the specified Amazon
1299
+ # SNS topic.
1298
1300
  #
1299
1301
  # @option params [required, String] :directory_id
1300
1302
  # The Directory ID to remove as a publisher. This directory will no
1301
- # longer send messages to the specified SNS topic.
1303
+ # longer send messages to the specified Amazon SNS topic.
1302
1304
  #
1303
1305
  # @option params [required, String] :topic_name
1304
- # The name of the SNS topic from which to remove the directory as a
1305
- # publisher.
1306
+ # The name of the Amazon SNS topic from which to remove the directory as
1307
+ # a publisher.
1306
1308
  #
1307
1309
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1308
1310
  #
@@ -1362,6 +1364,61 @@ module Aws::DirectoryService
1362
1364
  req.send_request(options)
1363
1365
  end
1364
1366
 
1367
+ # Retrieves information about the type of client authentication for the
1368
+ # specified directory, if the type is specified. If no type is
1369
+ # specified, information about all client authentication types that are
1370
+ # supported for the specified directory is retrieved. Currently, only
1371
+ # `SmartCard` is supported.
1372
+ #
1373
+ # @option params [required, String] :directory_id
1374
+ # The identifier of the directory for which to retrieve information.
1375
+ #
1376
+ # @option params [String] :type
1377
+ # The type of client authentication for which to retrieve information.
1378
+ # If no type is specified, a list of all client authentication types
1379
+ # that are supported for the specified directory is retrieved.
1380
+ #
1381
+ # @option params [String] :next_token
1382
+ # The *DescribeClientAuthenticationSettingsResult.NextToken* value from
1383
+ # a previous call to DescribeClientAuthenticationSettings. Pass null if
1384
+ # this is the first call.
1385
+ #
1386
+ # @option params [Integer] :limit
1387
+ # The maximum number of items to return. If this value is zero, the
1388
+ # maximum number of items is specified by the limitations of the
1389
+ # operation.
1390
+ #
1391
+ # @return [Types::DescribeClientAuthenticationSettingsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1392
+ #
1393
+ # * {Types::DescribeClientAuthenticationSettingsResult#client_authentication_settings_info #client_authentication_settings_info} => Array&lt;Types::ClientAuthenticationSettingInfo&gt;
1394
+ # * {Types::DescribeClientAuthenticationSettingsResult#next_token #next_token} => String
1395
+ #
1396
+ # @example Request syntax with placeholder values
1397
+ #
1398
+ # resp = client.describe_client_authentication_settings({
1399
+ # directory_id: "DirectoryId", # required
1400
+ # type: "SmartCard", # accepts SmartCard
1401
+ # next_token: "NextToken",
1402
+ # limit: 1,
1403
+ # })
1404
+ #
1405
+ # @example Response structure
1406
+ #
1407
+ # resp.client_authentication_settings_info #=> Array
1408
+ # resp.client_authentication_settings_info[0].type #=> String, one of "SmartCard"
1409
+ # resp.client_authentication_settings_info[0].status #=> String, one of "Enabled", "Disabled"
1410
+ # resp.client_authentication_settings_info[0].last_updated_date_time #=> Time
1411
+ # resp.next_token #=> String
1412
+ #
1413
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DescribeClientAuthenticationSettings AWS API Documentation
1414
+ #
1415
+ # @overload describe_client_authentication_settings(params = {})
1416
+ # @param [Hash] params ({})
1417
+ def describe_client_authentication_settings(params = {}, options = {})
1418
+ req = build_request(:describe_client_authentication_settings, params)
1419
+ req.send_request(options)
1420
+ end
1421
+
1365
1422
  # Obtains information about the conditional forwarders for this account.
1366
1423
  #
1367
1424
  # If no input parameters are provided for RemoteDomainNames, this
@@ -1588,21 +1645,21 @@ module Aws::DirectoryService
1588
1645
  req.send_request(options)
1589
1646
  end
1590
1647
 
1591
- # Obtains information about which SNS topics receive status messages
1592
- # from the specified directory.
1648
+ # Obtains information about which Amazon SNS topics receive status
1649
+ # messages from the specified directory.
1593
1650
  #
1594
1651
  # If no input parameters are provided, such as DirectoryId or TopicName,
1595
1652
  # this request describes all of the associations in the account.
1596
1653
  #
1597
1654
  # @option params [String] :directory_id
1598
- # The Directory ID for which to get the list of associated SNS topics.
1599
- # If this member is null, associations for all Directory IDs are
1655
+ # The Directory ID for which to get the list of associated Amazon SNS
1656
+ # topics. If this member is null, associations for all Directory IDs are
1600
1657
  # returned.
1601
1658
  #
1602
1659
  # @option params [Array<String>] :topic_names
1603
- # A list of SNS topic names for which to obtain the information. If this
1604
- # member is null, all associations for the specified Directory ID are
1605
- # returned.
1660
+ # A list of Amazon SNS topic names for which to obtain the information.
1661
+ # If this member is null, all associations for the specified Directory
1662
+ # ID are returned.
1606
1663
  #
1607
1664
  # An empty list results in an `InvalidParameterException` being thrown.
1608
1665
  #
@@ -1854,8 +1911,8 @@ module Aws::DirectoryService
1854
1911
  # account.
1855
1912
  #
1856
1913
  # @option params [String] :directory_id
1857
- # The Directory ID of the AWS directory that is a part of the requested
1858
- # trust relationship.
1914
+ # The Directory ID of the Amazon Web Services directory that is a part
1915
+ # of the requested trust relationship.
1859
1916
  #
1860
1917
  # @option params [Array<String>] :trust_ids
1861
1918
  # A list of identifiers of the trust relationships for which to obtain
@@ -2039,7 +2096,7 @@ module Aws::DirectoryService
2039
2096
  # The type of client authentication to enable. Currently only the value
2040
2097
  # `SmartCard` is supported. Smart card authentication in AD Connector
2041
2098
  # requires that you enable Kerberos Constrained Delegation for the
2042
- # Service User to the LDAP service in the on-premises AD.
2099
+ # Service User to the LDAP service in your self-managed AD.
2043
2100
  #
2044
2101
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2045
2102
  #
@@ -2126,8 +2183,9 @@ module Aws::DirectoryService
2126
2183
  end
2127
2184
 
2128
2185
  # Enables single sign-on for a directory. Single sign-on allows users in
2129
- # your directory to access certain AWS services from a computer joined
2130
- # to the directory without having to enter their credentials separately.
2186
+ # your directory to access certain Amazon Web Services services from a
2187
+ # computer joined to the directory without having to enter their
2188
+ # credentials separately.
2131
2189
  #
2132
2190
  # @option params [required, String] :directory_id
2133
2191
  # The identifier of the directory for which to enable single-sign on.
@@ -2318,14 +2376,15 @@ module Aws::DirectoryService
2318
2376
  req.send_request(options)
2319
2377
  end
2320
2378
 
2321
- # Lists the active log subscriptions for the AWS account.
2379
+ # Lists the active log subscriptions for the Amazon Web Services
2380
+ # account.
2322
2381
  #
2323
2382
  # @option params [String] :directory_id
2324
2383
  # If a *DirectoryID* is provided, lists only the log subscription
2325
2384
  # associated with that directory. If no *DirectoryId* is provided, lists
2326
- # all log subscriptions associated with your AWS account. If there are
2327
- # no log subscriptions for the AWS account or the directory, an empty
2328
- # list will be returned.
2385
+ # all log subscriptions associated with your Amazon Web Services
2386
+ # account. If there are no log subscriptions for the Amazon Web Services
2387
+ # account or the directory, an empty list will be returned.
2329
2388
  #
2330
2389
  # @option params [String] :next_token
2331
2390
  # The token for the next set of items to return.
@@ -2496,20 +2555,21 @@ module Aws::DirectoryService
2496
2555
  req.send_request(options)
2497
2556
  end
2498
2557
 
2499
- # Associates a directory with an SNS topic. This establishes the
2500
- # directory as a publisher to the specified SNS topic. You can then
2501
- # receive email or text (SMS) messages when the status of your directory
2502
- # changes. You get notified if your directory goes from an Active status
2503
- # to an Impaired or Inoperable status. You also receive a notification
2504
- # when the directory returns to an Active status.
2558
+ # Associates a directory with an Amazon SNS topic. This establishes the
2559
+ # directory as a publisher to the specified Amazon SNS topic. You can
2560
+ # then receive email or text (SMS) messages when the status of your
2561
+ # directory changes. You get notified if your directory goes from an
2562
+ # Active status to an Impaired or Inoperable status. You also receive a
2563
+ # notification when the directory returns to an Active status.
2505
2564
  #
2506
2565
  # @option params [required, String] :directory_id
2507
- # The Directory ID that will publish status messages to the SNS topic.
2566
+ # The Directory ID that will publish status messages to the Amazon SNS
2567
+ # topic.
2508
2568
  #
2509
2569
  # @option params [required, String] :topic_name
2510
- # The SNS topic name to which the directory will publish status
2511
- # messages. This SNS topic must be in the same region as the specified
2512
- # Directory ID.
2570
+ # The Amazon SNS topic name to which the directory will publish status
2571
+ # messages. This Amazon SNS topic must be in the same region as the
2572
+ # specified Directory ID.
2513
2573
  #
2514
2574
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2515
2575
  #
@@ -2637,7 +2697,7 @@ module Aws::DirectoryService
2637
2697
  req.send_request(options)
2638
2698
  end
2639
2699
 
2640
- # Resets the password for any user in your AWS Managed Microsoft AD or
2700
+ # Resets the password for any user in your Managed Microsoft AD or
2641
2701
  # Simple AD directory.
2642
2702
  #
2643
2703
  # You can reset the password for any user in your directory with the
@@ -2647,12 +2707,12 @@ module Aws::DirectoryService
2647
2707
  # member of either the **Domain Admins** or **Enterprise Admins**
2648
2708
  # group except for the administrator user.
2649
2709
  #
2650
- # * For AWS Managed Microsoft AD, you can only reset the password for a
2651
- # user that is in an OU based off of the NetBIOS name that you typed
2652
- # when you created your directory. For example, you cannot reset the
2653
- # password for a user in the **AWS Reserved** OU. For more information
2654
- # about the OU structure for an AWS Managed Microsoft AD directory,
2655
- # see [What Gets Created][1] in the *AWS Directory Service
2710
+ # * For Managed Microsoft AD, you can only reset the password for a user
2711
+ # that is in an OU based off of the NetBIOS name that you typed when
2712
+ # you created your directory. For example, you cannot reset the
2713
+ # password for a user in the **Amazon Web Services Reserved** OU. For
2714
+ # more information about the OU structure for an Managed Microsoft AD
2715
+ # directory, see [What Gets Created][1] in the *Directory Service
2656
2716
  # Administration Guide*.
2657
2717
  #
2658
2718
  #
@@ -2660,8 +2720,8 @@ module Aws::DirectoryService
2660
2720
  # [1]: https://docs.aws.amazon.com/directoryservice/latest/admin-guide/ms_ad_getting_started_what_gets_created.html
2661
2721
  #
2662
2722
  # @option params [required, String] :directory_id
2663
- # Identifier of the AWS Managed Microsoft AD or Simple AD directory in
2664
- # which the user resides.
2723
+ # Identifier of the Managed Microsoft AD or Simple AD directory in which
2724
+ # the user resides.
2665
2725
  #
2666
2726
  # @option params [required, String] :user_name
2667
2727
  # The user name of the user whose password will be reset.
@@ -2719,29 +2779,30 @@ module Aws::DirectoryService
2719
2779
  req.send_request(options)
2720
2780
  end
2721
2781
 
2722
- # Shares a specified directory (`DirectoryId`) in your AWS account
2723
- # (directory owner) with another AWS account (directory consumer). With
2724
- # this operation you can use your directory from any AWS account and
2725
- # from any Amazon VPC within an AWS Region.
2782
+ # Shares a specified directory (`DirectoryId`) in your Amazon Web
2783
+ # Services account (directory owner) with another Amazon Web Services
2784
+ # account (directory consumer). With this operation you can use your
2785
+ # directory from any Amazon Web Services account and from any Amazon VPC
2786
+ # within an Amazon Web Services Region.
2726
2787
  #
2727
- # When you share your AWS Managed Microsoft AD directory, AWS Directory
2728
- # Service creates a shared directory in the directory consumer account.
2729
- # This shared directory contains the metadata to provide access to the
2788
+ # When you share your Managed Microsoft AD directory, Directory Service
2789
+ # creates a shared directory in the directory consumer account. This
2790
+ # shared directory contains the metadata to provide access to the
2730
2791
  # directory within the directory owner account. The shared directory is
2731
2792
  # visible in all VPCs in the directory consumer account.
2732
2793
  #
2733
2794
  # The `ShareMethod` parameter determines whether the specified directory
2734
- # can be shared between AWS accounts inside the same AWS organization
2735
- # (`ORGANIZATIONS`). It also determines whether you can share the
2736
- # directory with any other AWS account either inside or outside of the
2737
- # organization (`HANDSHAKE`).
2795
+ # can be shared between Amazon Web Services accounts inside the same
2796
+ # Amazon Web Services organization (`ORGANIZATIONS`). It also determines
2797
+ # whether you can share the directory with any other Amazon Web Services
2798
+ # account either inside or outside of the organization (`HANDSHAKE`).
2738
2799
  #
2739
2800
  # The `ShareNotes` parameter is only used when `HANDSHAKE` is called,
2740
2801
  # which sends a directory sharing request to the directory consumer.
2741
2802
  #
2742
2803
  # @option params [required, String] :directory_id
2743
- # Identifier of the AWS Managed Microsoft AD directory that you want to
2744
- # share with other AWS accounts.
2804
+ # Identifier of the Managed Microsoft AD directory that you want to
2805
+ # share with other Amazon Web Services accounts.
2745
2806
  #
2746
2807
  # @option params [String] :share_notes
2747
2808
  # A directory share request that is sent by the directory owner to the
@@ -2755,9 +2816,9 @@ module Aws::DirectoryService
2755
2816
  #
2756
2817
  # @option params [required, String] :share_method
2757
2818
  # The method used when sharing a directory to determine whether the
2758
- # directory should be shared within your AWS organization
2759
- # (`ORGANIZATIONS`) or with any AWS account by sending a directory
2760
- # sharing request (`HANDSHAKE`).
2819
+ # directory should be shared within your Amazon Web Services
2820
+ # organization (`ORGANIZATIONS`) or with any Amazon Web Services account
2821
+ # by sending a directory sharing request (`HANDSHAKE`).
2761
2822
  #
2762
2823
  # @return [Types::ShareDirectoryResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2763
2824
  #
@@ -2837,8 +2898,8 @@ module Aws::DirectoryService
2837
2898
  # accounts.
2838
2899
  #
2839
2900
  # @option params [required, String] :directory_id
2840
- # The identifier of the AWS Managed Microsoft AD directory that you want
2841
- # to stop sharing.
2901
+ # The identifier of the Managed Microsoft AD directory that you want to
2902
+ # stop sharing.
2842
2903
  #
2843
2904
  # @option params [required, Types::UnshareTarget] :unshare_target
2844
2905
  # Identifier for the directory consumer account with whom the directory
@@ -2871,12 +2932,12 @@ module Aws::DirectoryService
2871
2932
  req.send_request(options)
2872
2933
  end
2873
2934
 
2874
- # Updates a conditional forwarder that has been set up for your AWS
2875
- # directory.
2935
+ # Updates a conditional forwarder that has been set up for your Amazon
2936
+ # Web Services directory.
2876
2937
  #
2877
2938
  # @option params [required, String] :directory_id
2878
- # The directory ID of the AWS directory for which to update the
2879
- # conditional forwarder.
2939
+ # The directory ID of the Amazon Web Services directory for which to
2940
+ # update the conditional forwarder.
2880
2941
  #
2881
2942
  # @option params [required, String] :remote_domain_name
2882
2943
  # The fully qualified domain name (FQDN) of the remote domain with which
@@ -2975,8 +3036,8 @@ module Aws::DirectoryService
2975
3036
  req.send_request(options)
2976
3037
  end
2977
3038
 
2978
- # Updates the trust that has been set up between your AWS Managed
2979
- # Microsoft AD directory and an on-premises Active Directory.
3039
+ # Updates the trust that has been set up between your Managed Microsoft
3040
+ # AD directory and an self-managed Active Directory.
2980
3041
  #
2981
3042
  # @option params [required, String] :trust_id
2982
3043
  # Identifier of the trust relationship.
@@ -3010,10 +3071,10 @@ module Aws::DirectoryService
3010
3071
  req.send_request(options)
3011
3072
  end
3012
3073
 
3013
- # AWS Directory Service for Microsoft Active Directory allows you to
3074
+ # Directory Service for Microsoft Active Directory allows you to
3014
3075
  # configure and verify trust relationships.
3015
3076
  #
3016
- # This action verifies a trust relationship between your AWS Managed
3077
+ # This action verifies a trust relationship between your Managed
3017
3078
  # Microsoft AD directory and an external domain.
3018
3079
  #
3019
3080
  # @option params [required, String] :trust_id
@@ -3055,7 +3116,7 @@ module Aws::DirectoryService
3055
3116
  params: params,
3056
3117
  config: config)
3057
3118
  context[:gem_name] = 'aws-sdk-directoryservice'
3058
- context[:gem_version] = '1.41.0'
3119
+ context[:gem_version] = '1.42.0'
3059
3120
  Seahorse::Client::Request.new(handlers, context)
3060
3121
  end
3061
3122