aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,753 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "ConnectDirectory": "<p>Creates an AD Connector to connect an on-premises directory.</p>",
5
- "CreateAlias": "<p>Creates an alias for a directory and assigns the alias to the directory. The alias is used to construct the access URL for the directory, such as <code>http://&#x3C;alias&#x3E;.awsapps.com</code>.</p> <important> <p>After an alias has been created, it cannot be deleted or reused, so this operation should only be used when absolutely necessary.</p> </important>",
6
- "CreateComputer": "<p>Creates a computer account in the specified directory, and joins the computer to the directory.</p>",
7
- "CreateDirectory": "<p>Creates a Simple AD directory.</p>",
8
- "CreateSnapshot": "<p>Creates a snapshot of an existing directory.</p> <p>You cannot take snapshots of extended or connected directories.</p>",
9
- "DeleteDirectory": "<p>Deletes an AWS Directory Service directory.</p>",
10
- "DeleteSnapshot": "<p>Deletes a directory snapshot.</p>",
11
- "DescribeDirectories": "<p>Obtains information about the directories that belong to this account.</p> <p>You can retrieve information about specific directories by passing the directory identifiers in the <i>DirectoryIds</i> parameter. Otherwise, all directories that belong to the current account are returned.</p> <p>This operation supports pagination with the use of the <i>NextToken</i> request and response parameters. If more results are available, the <i>DescribeDirectoriesResult.NextToken</i> member contains a token that you pass in the next call to <a>DescribeDirectories</a> to retrieve the next set of items.</p> <p>You can also specify a maximum number of return results with the <i>Limit</i> parameter.</p>",
12
- "DescribeSnapshots": "<p>Obtains information about the directory snapshots that belong to this account.</p> <p>This operation supports pagination with the use of the <i>NextToken</i> request and response parameters. If more results are available, the <i>DescribeSnapshots.NextToken</i> member contains a token that you pass in the next call to <a>DescribeSnapshots</a> to retrieve the next set of items.</p> <p>You can also specify a maximum number of return results with the <i>Limit</i> parameter.</p>",
13
- "DisableRadius": "<p>Disables multi-factor authentication (MFA) with Remote Authentication Dial In User Service (RADIUS) for an AD Connector directory.</p>",
14
- "DisableSso": "<p>Disables single-sign on for a directory.</p>",
15
- "EnableRadius": "<p>Enables multi-factor authentication (MFA) with Remote Authentication Dial In User Service (RADIUS) for an AD Connector directory.</p>",
16
- "EnableSso": "<p>Enables single-sign on for a directory.</p>",
17
- "GetDirectoryLimits": "<p>Obtains directory limit information for the current region.</p>",
18
- "GetSnapshotLimits": "<p>Obtains the manual snapshot limits for a directory.</p>",
19
- "RestoreFromSnapshot": "<p>Restores a directory using an existing directory snapshot.</p> <p>When you restore a directory from a snapshot, any changes made to the directory after the snapshot date are overwritten.</p> <p>This action returns as soon as the restore operation is initiated. You can monitor the progress of the restore operation by calling the <a>DescribeDirectories</a> operation with the directory identifier. When the <b>DirectoryDescription.Stage</b> value changes to <code>Active</code>, the restore operation is complete.</p>",
20
- "UpdateRadius": "<p>Updates the Remote Authentication Dial In User Service (RADIUS) server information for an AD Connector directory.</p>"
21
- },
22
- "service": "<fullname>AWS Directory Service</fullname> <p>This is the <i>AWS Directory Service API Reference</i>. This guide provides detailed information about AWS Directory Service operations, data types, parameters, and errors.</p>",
23
- "shapes": {
24
- "AccessUrl": {
25
- "base": null,
26
- "refs": {
27
- "DirectoryDescription$AccessUrl": "<p>The access URL for the directory, such as <code>http://&#x3C;alias&#x3E;.awsapps.com</code>.</p>"
28
- }
29
- },
30
- "AliasName": {
31
- "base": null,
32
- "refs": {
33
- "CreateAliasRequest$Alias": "<p>The requested alias.</p> <p>The alias must be unique amongst all aliases in AWS. This operation will throw an <code>EntityAlreadyExistsException</code> if this alias already exists.</p>",
34
- "CreateAliasResult$Alias": "<p>The alias for the directory.</p>",
35
- "DirectoryDescription$Alias": "<p>The alias for the directory.</p>"
36
- }
37
- },
38
- "Attribute": {
39
- "base": "<p>Represents a named directory attribute.</p>",
40
- "refs": {
41
- "Attributes$member": null
42
- }
43
- },
44
- "AttributeName": {
45
- "base": null,
46
- "refs": {
47
- "Attribute$Name": "<p>The name of the attribute.</p>"
48
- }
49
- },
50
- "AttributeValue": {
51
- "base": null,
52
- "refs": {
53
- "Attribute$Value": "<p>The value of the attribute.</p>"
54
- }
55
- },
56
- "Attributes": {
57
- "base": null,
58
- "refs": {
59
- "Computer$ComputerAttributes": "<p>An array of <a>Attribute</a> objects that contain the LDAP attributes that belong to the computer account.</p>",
60
- "CreateComputerRequest$ComputerAttributes": "<p>An array of <a>Attribute</a> objects that contain any LDAP attributes to apply to the computer account.</p>"
61
- }
62
- },
63
- "AuthenticationFailedException": {
64
- "base": "<p>An authentication error occurred.</p>",
65
- "refs": {
66
- }
67
- },
68
- "AvailabilityZone": {
69
- "base": null,
70
- "refs": {
71
- "AvailabilityZones$member": null
72
- }
73
- },
74
- "AvailabilityZones": {
75
- "base": null,
76
- "refs": {
77
- "DirectoryConnectSettingsDescription$AvailabilityZones": "<p>A list of the Availability Zones that the directory is in.</p>",
78
- "DirectoryVpcSettingsDescription$AvailabilityZones": "<p>The list of Availability Zones that the directory is in.</p>"
79
- }
80
- },
81
- "ClientException": {
82
- "base": "<p>A client exception has occurred.</p>",
83
- "refs": {
84
- }
85
- },
86
- "CloudOnlyDirectoriesLimitReached": {
87
- "base": null,
88
- "refs": {
89
- "DirectoryLimits$CloudOnlyDirectoriesLimitReached": "<p>Indicates if the cloud directory limit has been reached.</p>"
90
- }
91
- },
92
- "Computer": {
93
- "base": "<p>Contains information about a computer account in a directory.</p>",
94
- "refs": {
95
- "CreateComputerResult$Computer": "<p>A Computer object the represents the computer account.</p>"
96
- }
97
- },
98
- "ComputerName": {
99
- "base": null,
100
- "refs": {
101
- "Computer$ComputerName": "<p>The computer name.</p>",
102
- "CreateComputerRequest$ComputerName": "<p>The name of the computer account.</p>"
103
- }
104
- },
105
- "ComputerPassword": {
106
- "base": null,
107
- "refs": {
108
- "CreateComputerRequest$Password": "<p>A one-time password that is used to join the computer to the directory. You should generate a random, strong password to use for this parameter.</p>"
109
- }
110
- },
111
- "ConnectDirectoryRequest": {
112
- "base": "<p>Contains the inputs for the <a>ConnectDirectory</a> operation.</p>",
113
- "refs": {
114
- }
115
- },
116
- "ConnectDirectoryResult": {
117
- "base": "<p>Contains the results of the <a>ConnectDirectory</a> operation.</p>",
118
- "refs": {
119
- }
120
- },
121
- "ConnectPassword": {
122
- "base": null,
123
- "refs": {
124
- "ConnectDirectoryRequest$Password": "<p>The password for the on-premises user account.</p>",
125
- "DisableSsoRequest$Password": "<p>The password of an alternate account to use to disable single-sign on. This is only used for AD Connector directories. See the <i>UserName</i> parameter for more information.</p>",
126
- "EnableSsoRequest$Password": "<p>The password of an alternate account to use to enable single-sign on. This is only used for AD Connector directories. See the <i>UserName</i> parameter for more information.</p>"
127
- }
128
- },
129
- "ConnectedDirectoriesLimitReached": {
130
- "base": null,
131
- "refs": {
132
- "DirectoryLimits$ConnectedDirectoriesLimitReached": "<p>Indicates if the connected directory limit has been reached.</p>"
133
- }
134
- },
135
- "CreateAliasRequest": {
136
- "base": "<p>Contains the inputs for the <a>CreateAlias</a> operation.</p>",
137
- "refs": {
138
- }
139
- },
140
- "CreateAliasResult": {
141
- "base": "<p>Contains the results of the <a>CreateAlias</a> operation.</p>",
142
- "refs": {
143
- }
144
- },
145
- "CreateComputerRequest": {
146
- "base": "<p>Contains the inputs for the <a>CreateComputer</a> operation.</p>",
147
- "refs": {
148
- }
149
- },
150
- "CreateComputerResult": {
151
- "base": "<p>Contains the results for the <a>CreateComputer</a> operation.</p>",
152
- "refs": {
153
- }
154
- },
155
- "CreateDirectoryRequest": {
156
- "base": "<p>Contains the inputs for the <a>CreateDirectory</a> operation. </p>",
157
- "refs": {
158
- }
159
- },
160
- "CreateDirectoryResult": {
161
- "base": "<p>Contains the results of the <a>CreateDirectory</a> operation.</p>",
162
- "refs": {
163
- }
164
- },
165
- "CreateSnapshotRequest": {
166
- "base": "<p>Contains the inputs for the <a>CreateSnapshot</a> operation.</p>",
167
- "refs": {
168
- }
169
- },
170
- "CreateSnapshotResult": {
171
- "base": "<p>Contains the results of the <a>CreateSnapshot</a> operation.</p>",
172
- "refs": {
173
- }
174
- },
175
- "DeleteDirectoryRequest": {
176
- "base": "<p>Contains the inputs for the <a>DeleteDirectory</a> operation.</p>",
177
- "refs": {
178
- }
179
- },
180
- "DeleteDirectoryResult": {
181
- "base": "<p>Contains the results of the <a>DeleteDirectory</a> operation.</p>",
182
- "refs": {
183
- }
184
- },
185
- "DeleteSnapshotRequest": {
186
- "base": "<p>Contains the inputs for the <a>DeleteSnapshot</a> operation.</p>",
187
- "refs": {
188
- }
189
- },
190
- "DeleteSnapshotResult": {
191
- "base": "<p>Contains the results of the <a>DeleteSnapshot</a> operation.</p>",
192
- "refs": {
193
- }
194
- },
195
- "DescribeDirectoriesRequest": {
196
- "base": "<p>Contains the inputs for the <a>DescribeDirectories</a> operation.</p>",
197
- "refs": {
198
- }
199
- },
200
- "DescribeDirectoriesResult": {
201
- "base": "<p>Contains the results of the <a>DescribeDirectories</a> operation.</p>",
202
- "refs": {
203
- }
204
- },
205
- "DescribeSnapshotsRequest": {
206
- "base": "<p>Contains the inputs for the <a>DescribeSnapshots</a> operation.</p>",
207
- "refs": {
208
- }
209
- },
210
- "DescribeSnapshotsResult": {
211
- "base": "<p>Contains the results of the <a>DescribeSnapshots</a> operation.</p>",
212
- "refs": {
213
- }
214
- },
215
- "Description": {
216
- "base": null,
217
- "refs": {
218
- "ConnectDirectoryRequest$Description": "<p>A textual description for the directory.</p>",
219
- "CreateDirectoryRequest$Description": "<p>A textual description for the directory.</p>",
220
- "DirectoryDescription$Description": "<p>The textual description for the directory.</p>"
221
- }
222
- },
223
- "DirectoryConnectSettings": {
224
- "base": "<p>Contains information for the <a>ConnectDirectory</a> operation when an AD Connector directory is being created.</p>",
225
- "refs": {
226
- "ConnectDirectoryRequest$ConnectSettings": "<p>A <a>DirectoryConnectSettings</a> object that contains additional information for the operation.</p>"
227
- }
228
- },
229
- "DirectoryConnectSettingsDescription": {
230
- "base": "<p>Contains information about an AD Connector directory.</p>",
231
- "refs": {
232
- "DirectoryDescription$ConnectSettings": "<p>A <a>DirectoryConnectSettingsDescription</a> object that contains additional information about an AD Connector directory. This member is only present if the directory is an AD Connector directory.</p>"
233
- }
234
- },
235
- "DirectoryDescription": {
236
- "base": "<p>Contains information about an AWS Directory Service directory.</p>",
237
- "refs": {
238
- "DirectoryDescriptions$member": null
239
- }
240
- },
241
- "DirectoryDescriptions": {
242
- "base": "<p>A list of directory descriptions.</p>",
243
- "refs": {
244
- "DescribeDirectoriesResult$DirectoryDescriptions": "<p>The list of <a>DirectoryDescription</a> objects that were retrieved.</p> <p>It is possible that this list contains less than the number of items specified in the <i>Limit</i> member of the request. This occurs if there are less than the requested number of items left to retrieve, or if the limitations of the operation have been exceeded.</p>"
245
- }
246
- },
247
- "DirectoryId": {
248
- "base": null,
249
- "refs": {
250
- "ConnectDirectoryResult$DirectoryId": "<p>The identifier of the new directory.</p>",
251
- "CreateAliasRequest$DirectoryId": "<p>The identifier of the directory to create the alias for.</p>",
252
- "CreateAliasResult$DirectoryId": "<p>The identifier of the directory.</p>",
253
- "CreateComputerRequest$DirectoryId": "<p>The identifier of the directory to create the computer account in.</p>",
254
- "CreateDirectoryResult$DirectoryId": "<p>The identifier of the directory that was created.</p>",
255
- "CreateSnapshotRequest$DirectoryId": "<p>The identifier of the directory to take a snapshot of.</p>",
256
- "DeleteDirectoryRequest$DirectoryId": "<p>The identifier of the directory to delete.</p>",
257
- "DeleteDirectoryResult$DirectoryId": "<p>The directory identifier.</p>",
258
- "DescribeSnapshotsRequest$DirectoryId": "<p>The identifier of the directory to retrieve snapshot information for.</p>",
259
- "DirectoryDescription$DirectoryId": "<p>The directory identifier.</p>",
260
- "DirectoryIds$member": null,
261
- "DisableRadiusRequest$DirectoryId": "<p>The identifier of the directory to disable MFA for.</p>",
262
- "DisableSsoRequest$DirectoryId": "<p>The identifier of the directory to disable single-sign on for.</p>",
263
- "EnableRadiusRequest$DirectoryId": "<p>The identifier of the directory to enable MFA for.</p>",
264
- "EnableSsoRequest$DirectoryId": "<p>The identifier of the directory to enable single-sign on for.</p>",
265
- "GetSnapshotLimitsRequest$DirectoryId": "<p>Contains the identifier of the directory to obtain the limits for.</p>",
266
- "Snapshot$DirectoryId": "<p>The directory identifier.</p>",
267
- "UpdateRadiusRequest$DirectoryId": "<p>The identifier of the directory to update the RADIUS server information for.</p>"
268
- }
269
- },
270
- "DirectoryIds": {
271
- "base": "<p>A list of directory identifiers.</p>",
272
- "refs": {
273
- "DescribeDirectoriesRequest$DirectoryIds": "<p>A list of identifiers of the directories to obtain the information for. If this member is null, all directories that belong to the current account are returned.</p> <p>An empty list results in an <code>InvalidParameterException</code> being thrown.</p>"
274
- }
275
- },
276
- "DirectoryLimitExceededException": {
277
- "base": "<p>The maximum number of directories in the region has been reached. You can use the <a>GetDirectoryLimits</a> operation to determine your directory limits in the region.</p>",
278
- "refs": {
279
- }
280
- },
281
- "DirectoryLimits": {
282
- "base": "<p>Contains directory limit information for a region.</p>",
283
- "refs": {
284
- "GetDirectoryLimitsResult$DirectoryLimits": "<p>A <a>DirectoryLimits</a> object that contains the directory limits for the current region.</p>"
285
- }
286
- },
287
- "DirectoryName": {
288
- "base": null,
289
- "refs": {
290
- "ConnectDirectoryRequest$Name": "<p>The fully-qualified name of the on-premises directory, such as <code>corp.example.com</code>.</p>",
291
- "CreateDirectoryRequest$Name": "<p>The fully qualified name for the directory, such as <code>corp.example.com</code>.</p>",
292
- "DirectoryDescription$Name": "<p>The fully-qualified name of the directory.</p>"
293
- }
294
- },
295
- "DirectoryShortName": {
296
- "base": null,
297
- "refs": {
298
- "ConnectDirectoryRequest$ShortName": "<p>The NetBIOS name of the on-premises directory, such as <code>CORP</code>.</p>",
299
- "CreateDirectoryRequest$ShortName": "<p>The short name of the directory, such as <code>CORP</code>.</p>",
300
- "DirectoryDescription$ShortName": "<p>The short name of the directory.</p>"
301
- }
302
- },
303
- "DirectorySize": {
304
- "base": null,
305
- "refs": {
306
- "ConnectDirectoryRequest$Size": "<p>The size of the directory.</p>",
307
- "CreateDirectoryRequest$Size": "<p>The size of the directory.</p>",
308
- "DirectoryDescription$Size": "<p>The directory size.</p>"
309
- }
310
- },
311
- "DirectoryStage": {
312
- "base": null,
313
- "refs": {
314
- "DirectoryDescription$Stage": "<p>The current stage of the directory.</p>"
315
- }
316
- },
317
- "DirectoryType": {
318
- "base": null,
319
- "refs": {
320
- "DirectoryDescription$Type": "<p>The directory size.</p>"
321
- }
322
- },
323
- "DirectoryUnavailableException": {
324
- "base": "<p>The specified directory is unavailable or could not be found.</p>",
325
- "refs": {
326
- }
327
- },
328
- "DirectoryVpcSettings": {
329
- "base": "<p>Contains information for the <a>CreateDirectory</a> operation when a Simple AD directory is being created.</p>",
330
- "refs": {
331
- "CreateDirectoryRequest$VpcSettings": "<p>A <a>DirectoryVpcSettings</a> object that contains additional information for the operation.</p>"
332
- }
333
- },
334
- "DirectoryVpcSettingsDescription": {
335
- "base": "<p>Contains information about a Simple AD directory.</p>",
336
- "refs": {
337
- "DirectoryDescription$VpcSettings": "<p>A <a>DirectoryVpcSettingsDescription</a> object that contains additional information about a Simple AD directory. This member is only present if the directory is a Simple AD directory.</p>"
338
- }
339
- },
340
- "DisableRadiusRequest": {
341
- "base": "<p>Contains the inputs for the <a>DisableRadius</a> operation.</p>",
342
- "refs": {
343
- }
344
- },
345
- "DisableRadiusResult": {
346
- "base": "<p>Contains the results of the <a>DisableRadius</a> operation.</p>",
347
- "refs": {
348
- }
349
- },
350
- "DisableSsoRequest": {
351
- "base": "<p>Contains the inputs for the <a>DisableSso</a> operation.</p>",
352
- "refs": {
353
- }
354
- },
355
- "DisableSsoResult": {
356
- "base": "<p>Contains the results of the <a>DisableSso</a> operation.</p>",
357
- "refs": {
358
- }
359
- },
360
- "DnsIpAddrs": {
361
- "base": null,
362
- "refs": {
363
- "DirectoryConnectSettings$CustomerDnsIps": "<p>A list of one or more IP addresses of DNS servers or domain controllers in the on-premises directory.</p>",
364
- "DirectoryDescription$DnsIpAddrs": "<p>The IP addresses of the DNS servers for the directory. For a Simple AD directory, these are the IP addresses of the Simple AD directory servers. For an AD Connector directory, these are the IP addresses of the DNS servers or domain controllers in the on-premises directory that the AD Connector is connected to.</p>"
365
- }
366
- },
367
- "EnableRadiusRequest": {
368
- "base": "<p>Contains the inputs for the <a>EnableRadius</a> operation.</p>",
369
- "refs": {
370
- }
371
- },
372
- "EnableRadiusResult": {
373
- "base": "<p>Contains the results of the <a>EnableRadius</a> operation.</p>",
374
- "refs": {
375
- }
376
- },
377
- "EnableSsoRequest": {
378
- "base": "<p>Contains the inputs for the <a>EnableSso</a> operation.</p>",
379
- "refs": {
380
- }
381
- },
382
- "EnableSsoResult": {
383
- "base": "<p>Contains the results of the <a>EnableSso</a> operation.</p>",
384
- "refs": {
385
- }
386
- },
387
- "EntityAlreadyExistsException": {
388
- "base": "<p>The specified entity already exists.</p>",
389
- "refs": {
390
- }
391
- },
392
- "EntityDoesNotExistException": {
393
- "base": "<p>The specified entity could not be found.</p>",
394
- "refs": {
395
- }
396
- },
397
- "ExceptionMessage": {
398
- "base": "<p>The descriptive message for the exception.</p>",
399
- "refs": {
400
- "AuthenticationFailedException$Message": "<p>The textual message for the exception.</p>",
401
- "ClientException$Message": null,
402
- "DirectoryLimitExceededException$Message": null,
403
- "DirectoryUnavailableException$Message": null,
404
- "EntityAlreadyExistsException$Message": null,
405
- "EntityDoesNotExistException$Message": null,
406
- "InsufficientPermissionsException$Message": null,
407
- "InvalidNextTokenException$Message": null,
408
- "InvalidParameterException$Message": null,
409
- "ServiceException$Message": null,
410
- "SnapshotLimitExceededException$Message": null,
411
- "UnsupportedOperationException$Message": null
412
- }
413
- },
414
- "GetDirectoryLimitsRequest": {
415
- "base": "<p>Contains the inputs for the <a>GetDirectoryLimits</a> operation.</p>",
416
- "refs": {
417
- }
418
- },
419
- "GetDirectoryLimitsResult": {
420
- "base": "<p>Contains the results of the <a>GetDirectoryLimits</a> operation.</p>",
421
- "refs": {
422
- }
423
- },
424
- "GetSnapshotLimitsRequest": {
425
- "base": "<p>Contains the inputs for the <a>GetSnapshotLimits</a> operation.</p>",
426
- "refs": {
427
- }
428
- },
429
- "GetSnapshotLimitsResult": {
430
- "base": "<p>Contains the results of the <a>GetSnapshotLimits</a> operation.</p>",
431
- "refs": {
432
- }
433
- },
434
- "InsufficientPermissionsException": {
435
- "base": "<p>The account does not have sufficient permission to perform the operation.</p>",
436
- "refs": {
437
- }
438
- },
439
- "InvalidNextTokenException": {
440
- "base": "<p>The <i>NextToken</i> value is not valid.</p>",
441
- "refs": {
442
- }
443
- },
444
- "InvalidParameterException": {
445
- "base": "<p>One or more parameters are not valid.</p>",
446
- "refs": {
447
- }
448
- },
449
- "IpAddr": {
450
- "base": null,
451
- "refs": {
452
- "DnsIpAddrs$member": null,
453
- "IpAddrs$member": null
454
- }
455
- },
456
- "IpAddrs": {
457
- "base": null,
458
- "refs": {
459
- "DirectoryConnectSettingsDescription$ConnectIps": "<p>The IP addresses of the AD Connector servers.</p>"
460
- }
461
- },
462
- "LastUpdatedDateTime": {
463
- "base": null,
464
- "refs": {
465
- "DirectoryDescription$StageLastUpdatedDateTime": "<p>The date and time that the stage was last updated.</p>"
466
- }
467
- },
468
- "LaunchTime": {
469
- "base": null,
470
- "refs": {
471
- "DirectoryDescription$LaunchTime": "<p>Specifies when the directory was created.</p>"
472
- }
473
- },
474
- "Limit": {
475
- "base": null,
476
- "refs": {
477
- "DescribeDirectoriesRequest$Limit": "<p>The maximum number of items to return. If this value is zero, the maximum number of items is specified by the limitations of the operation.</p>",
478
- "DescribeSnapshotsRequest$Limit": "<p>The maximum number of objects to return.</p>",
479
- "DirectoryLimits$CloudOnlyDirectoriesLimit": "<p>The maximum number of cloud directories allowed in the region.</p>",
480
- "DirectoryLimits$CloudOnlyDirectoriesCurrentCount": "<p>The current number of cloud directories in the region.</p>",
481
- "DirectoryLimits$ConnectedDirectoriesLimit": "<p>The maximum number of connected directories allowed in the region.</p>",
482
- "DirectoryLimits$ConnectedDirectoriesCurrentCount": "<p>The current number of connected directories in the region.</p>",
483
- "SnapshotLimits$ManualSnapshotsLimit": "<p>The maximum number of manual snapshots allowed.</p>",
484
- "SnapshotLimits$ManualSnapshotsCurrentCount": "<p>The current number of manual snapshots of the directory.</p>"
485
- }
486
- },
487
- "ManualSnapshotsLimitReached": {
488
- "base": null,
489
- "refs": {
490
- "SnapshotLimits$ManualSnapshotsLimitReached": "<p>Indicates if the manual snapshot limit has been reached.</p>"
491
- }
492
- },
493
- "NextToken": {
494
- "base": null,
495
- "refs": {
496
- "DescribeDirectoriesRequest$NextToken": "<p>The <i>DescribeDirectoriesResult.NextToken</i> value from a previous call to <a>DescribeDirectories</a>. Pass null if this is the first call.</p>",
497
- "DescribeDirectoriesResult$NextToken": "<p>If not null, more results are available. Pass this value for the <i>NextToken</i> parameter in a subsequent call to <a>DescribeDirectories</a> to retrieve the next set of items.</p>",
498
- "DescribeSnapshotsRequest$NextToken": "<p>The <i>DescribeSnapshotsResult.NextToken</i> value from a previous call to <a>DescribeSnapshots</a>. Pass null if this is the first call.</p>",
499
- "DescribeSnapshotsResult$NextToken": "<p>If not null, more results are available. Pass this value in the <i>NextToken</i> member of a subsequent call to <a>DescribeSnapshots</a>.</p>"
500
- }
501
- },
502
- "OrganizationalUnitDN": {
503
- "base": null,
504
- "refs": {
505
- "CreateComputerRequest$OrganizationalUnitDistinguishedName": "<p>The fully-qualified distinguished name of the organizational unit to place the computer account in.</p>"
506
- }
507
- },
508
- "Password": {
509
- "base": null,
510
- "refs": {
511
- "CreateDirectoryRequest$Password": "<p>The password for the directory administrator. The directory creation process creates a directory administrator account with the username <code>Administrator</code> and this password.</p>"
512
- }
513
- },
514
- "PortNumber": {
515
- "base": null,
516
- "refs": {
517
- "RadiusSettings$RadiusPort": "<p>The port that your RADIUS server is using for communications. Your on-premises network must allow inbound traffic over this port from the AWS Directory Service servers.</p>"
518
- }
519
- },
520
- "RadiusAuthenticationProtocol": {
521
- "base": null,
522
- "refs": {
523
- "RadiusSettings$AuthenticationProtocol": "<p>The protocol specified for your RADIUS endpoints.</p>"
524
- }
525
- },
526
- "RadiusDisplayLabel": {
527
- "base": null,
528
- "refs": {
529
- "RadiusSettings$DisplayLabel": "<p>Not currently used.</p>"
530
- }
531
- },
532
- "RadiusRetries": {
533
- "base": null,
534
- "refs": {
535
- "RadiusSettings$RadiusRetries": "<p>The maximum number of times that communication with the RADIUS server is attempted. </p>"
536
- }
537
- },
538
- "RadiusSettings": {
539
- "base": "<p>Contains information about a Remote Authentication Dial In User Service (RADIUS) server.</p>",
540
- "refs": {
541
- "DirectoryDescription$RadiusSettings": "<p>A <a>RadiusSettings</a> object that contains information about the RADIUS server configured for this directory.</p>",
542
- "EnableRadiusRequest$RadiusSettings": "<p>A <a>RadiusSettings</a> object that contains information about the RADIUS server.</p>",
543
- "UpdateRadiusRequest$RadiusSettings": "<p>A <a>RadiusSettings</a> object that contains information about the RADIUS server.</p>"
544
- }
545
- },
546
- "RadiusSharedSecret": {
547
- "base": null,
548
- "refs": {
549
- "RadiusSettings$SharedSecret": "<p>The shared secret code that was specified when your RADIUS endpoints were created.</p>"
550
- }
551
- },
552
- "RadiusStatus": {
553
- "base": null,
554
- "refs": {
555
- "DirectoryDescription$RadiusStatus": "<p>The status of the RADIUS MFA server connection.</p>"
556
- }
557
- },
558
- "RadiusTimeout": {
559
- "base": null,
560
- "refs": {
561
- "RadiusSettings$RadiusTimeout": "<p>The amount of time, in seconds, to wait for the RADIUS server to respond.</p>"
562
- }
563
- },
564
- "RequestId": {
565
- "base": "<p>The AWS request identifier.</p>",
566
- "refs": {
567
- "AuthenticationFailedException$RequestId": "<p>The identifier of the request that caused the exception.</p>",
568
- "ClientException$RequestId": null,
569
- "DirectoryLimitExceededException$RequestId": null,
570
- "DirectoryUnavailableException$RequestId": null,
571
- "EntityAlreadyExistsException$RequestId": null,
572
- "EntityDoesNotExistException$RequestId": null,
573
- "InsufficientPermissionsException$RequestId": null,
574
- "InvalidNextTokenException$RequestId": null,
575
- "InvalidParameterException$RequestId": null,
576
- "ServiceException$RequestId": null,
577
- "SnapshotLimitExceededException$RequestId": null,
578
- "UnsupportedOperationException$RequestId": null
579
- }
580
- },
581
- "RestoreFromSnapshotRequest": {
582
- "base": "<p>An object representing the inputs for the <a>RestoreFromSnapshot</a> operation.</p>",
583
- "refs": {
584
- }
585
- },
586
- "RestoreFromSnapshotResult": {
587
- "base": "<p>Contains the results of the <a>RestoreFromSnapshot</a> operation.</p>",
588
- "refs": {
589
- }
590
- },
591
- "SID": {
592
- "base": null,
593
- "refs": {
594
- "Computer$ComputerId": "<p>The identifier of the computer.</p>"
595
- }
596
- },
597
- "SecurityGroupId": {
598
- "base": null,
599
- "refs": {
600
- "DirectoryConnectSettingsDescription$SecurityGroupId": "<p>The security group identifier for the AD Connector directory.</p>",
601
- "DirectoryVpcSettingsDescription$SecurityGroupId": "<p>The security group identifier for the directory.</p>"
602
- }
603
- },
604
- "Server": {
605
- "base": null,
606
- "refs": {
607
- "Servers$member": null
608
- }
609
- },
610
- "Servers": {
611
- "base": null,
612
- "refs": {
613
- "RadiusSettings$RadiusServers": "<p>An array of strings that contains the IP addresses of the RADIUS server endpoints, or the IP addresses of your RADIUS server load balancer.</p>"
614
- }
615
- },
616
- "ServiceException": {
617
- "base": "<p>An exception has occurred in AWS Directory Service.</p>",
618
- "refs": {
619
- }
620
- },
621
- "Snapshot": {
622
- "base": "<p>Describes a directory snapshot.</p>",
623
- "refs": {
624
- "Snapshots$member": null
625
- }
626
- },
627
- "SnapshotId": {
628
- "base": null,
629
- "refs": {
630
- "CreateSnapshotResult$SnapshotId": "<p>The identifier of the snapshot that was created.</p>",
631
- "DeleteSnapshotRequest$SnapshotId": "<p>The identifier of the directory snapshot to be deleted.</p>",
632
- "DeleteSnapshotResult$SnapshotId": "<p>The identifier of the directory snapshot that was deleted.</p>",
633
- "RestoreFromSnapshotRequest$SnapshotId": "<p>The identifier of the snapshot to restore from.</p>",
634
- "Snapshot$SnapshotId": "<p>The snapshot identifier.</p>",
635
- "SnapshotIds$member": null
636
- }
637
- },
638
- "SnapshotIds": {
639
- "base": "<p>A list of directory snapshot identifiers.</p>",
640
- "refs": {
641
- "DescribeSnapshotsRequest$SnapshotIds": "<p>A list of identifiers of the snapshots to obtain the information for. If this member is null or empty, all snapshots are returned using the <i>Limit</i> and <i>NextToken</i> members.</p>"
642
- }
643
- },
644
- "SnapshotLimitExceededException": {
645
- "base": "<p>The maximum number of manual snapshots for the directory has been reached. You can use the <a>GetSnapshotLimits</a> operation to determine the snapshot limits for a directory.</p>",
646
- "refs": {
647
- }
648
- },
649
- "SnapshotLimits": {
650
- "base": "<p>Contains manual snapshot limit information for a directory.</p>",
651
- "refs": {
652
- "GetSnapshotLimitsResult$SnapshotLimits": "<p>A <a>SnapshotLimits</a> object that contains the manual snapshot limits for the specified directory.</p>"
653
- }
654
- },
655
- "SnapshotName": {
656
- "base": null,
657
- "refs": {
658
- "CreateSnapshotRequest$Name": "<p>The descriptive name to apply to the snapshot.</p>",
659
- "Snapshot$Name": "<p>The descriptive name of the snapshot.</p>"
660
- }
661
- },
662
- "SnapshotStatus": {
663
- "base": null,
664
- "refs": {
665
- "Snapshot$Status": "<p>The snapshot status.</p>"
666
- }
667
- },
668
- "SnapshotType": {
669
- "base": null,
670
- "refs": {
671
- "Snapshot$Type": "<p>The snapshot type.</p>"
672
- }
673
- },
674
- "Snapshots": {
675
- "base": "<p>A list of descriptions of directory snapshots.</p>",
676
- "refs": {
677
- "DescribeSnapshotsResult$Snapshots": "<p>The list of <a>Snapshot</a> objects that were retrieved.</p> <p>It is possible that this list contains less than the number of items specified in the <i>Limit</i> member of the request. This occurs if there are less than the requested number of items left to retrieve, or if the limitations of the operation have been exceeded.</p>"
678
- }
679
- },
680
- "SsoEnabled": {
681
- "base": null,
682
- "refs": {
683
- "DirectoryDescription$SsoEnabled": "<p>Indicates if single-sign on is enabled for the directory. For more information, see <a>EnableSso</a> and <a>DisableSso</a>.</p>"
684
- }
685
- },
686
- "StageReason": {
687
- "base": null,
688
- "refs": {
689
- "DirectoryDescription$StageReason": "<p>Additional information about the directory stage.</p>"
690
- }
691
- },
692
- "StartTime": {
693
- "base": null,
694
- "refs": {
695
- "Snapshot$StartTime": "<p>The date and time that the snapshot was taken.</p>"
696
- }
697
- },
698
- "SubnetId": {
699
- "base": null,
700
- "refs": {
701
- "SubnetIds$member": null
702
- }
703
- },
704
- "SubnetIds": {
705
- "base": null,
706
- "refs": {
707
- "DirectoryConnectSettings$SubnetIds": "<p>A list of subnet identifiers in the VPC that the AD Connector is created in.</p>",
708
- "DirectoryConnectSettingsDescription$SubnetIds": "<p>A list of subnet identifiers in the VPC that the AD connector is in.</p>",
709
- "DirectoryVpcSettings$SubnetIds": "<p>The identifiers of the subnets for the directory servers. The two subnets must be in different Availability Zones. AWS Directory Service creates a directory server and a DNS server in each of these subnets.</p>",
710
- "DirectoryVpcSettingsDescription$SubnetIds": "<p>The identifiers of the subnets for the directory servers.</p>"
711
- }
712
- },
713
- "UnsupportedOperationException": {
714
- "base": "<p>The operation is not supported.</p>",
715
- "refs": {
716
- }
717
- },
718
- "UpdateRadiusRequest": {
719
- "base": "<p>Contains the inputs for the <a>UpdateRadius</a> operation.</p>",
720
- "refs": {
721
- }
722
- },
723
- "UpdateRadiusResult": {
724
- "base": "<p>Contains the results of the <a>UpdateRadius</a> operation.</p>",
725
- "refs": {
726
- }
727
- },
728
- "UseSameUsername": {
729
- "base": null,
730
- "refs": {
731
- "RadiusSettings$UseSameUsername": "<p>Not currently used.</p>"
732
- }
733
- },
734
- "UserName": {
735
- "base": null,
736
- "refs": {
737
- "DirectoryConnectSettings$CustomerUserName": "<p>The username of an account in the on-premises directory that is used to connect to the directory. This account must have the following privileges:</p> <ul> <li>Read users and groups</li> <li>Create computer objects</li> <li>Join computers to the domain</li> </ul>",
738
- "DirectoryConnectSettingsDescription$CustomerUserName": "<p>The username of the service account in the on-premises directory.</p>",
739
- "DisableSsoRequest$UserName": "<p>The username of an alternate account to use to disable single-sign on. This is only used for AD Connector directories. This account must have privileges to remove a service principle name. </p> <p>If the AD Connector service account does not have privileges to remove a service principle name, you can specify an alternate account with the <i>UserName</i> and <i>Password</i> parameters. These credentials are only used to disable single sign-on and are not stored by the service. The AD Connector service account is not changed.</p>",
740
- "EnableSsoRequest$UserName": "<p>The username of an alternate account to use to enable single-sign on. This is only used for AD Connector directories. This account must have privileges to add a service principle name. </p> <p>If the AD Connector service account does not have privileges to add a service principle name, you can specify an alternate account with the <i>UserName</i> and <i>Password</i> parameters. These credentials are only used to enable single sign-on and are not stored by the service. The AD Connector service account is not changed.</p>"
741
- }
742
- },
743
- "VpcId": {
744
- "base": null,
745
- "refs": {
746
- "DirectoryConnectSettings$VpcId": "<p>The identifier of the VPC that the AD Connector is created in.</p>",
747
- "DirectoryConnectSettingsDescription$VpcId": "<p>The identifier of the VPC that the AD Connector is in.</p>",
748
- "DirectoryVpcSettings$VpcId": "<p>The identifier of the VPC to create the Simple AD directory in.</p>",
749
- "DirectoryVpcSettingsDescription$VpcId": "<p>The identifier of the VPC that the directory is in.</p>"
750
- }
751
- }
752
- }
753
- }