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,494 +0,0 @@
1
- {
2
- "operations": {
3
- "AllocateConnectionOnInterconnect": "<p>Creates a hosted connection on an interconnect.</p> <p>Allocates a VLAN number and a specified amount of bandwidth for use by a hosted connection on the given interconnect.</p>",
4
- "AllocatePrivateVirtualInterface": "<p>Provisions a private virtual interface to be owned by a different customer.</p> <p>The owner of a connection calls this function to provision a private virtual interface which will be owned by another AWS customer.</p> <p>Virtual interfaces created using this function must be confirmed by the virtual interface owner by calling ConfirmPrivateVirtualInterface. Until this step has been completed, the virtual interface will be in 'Confirming' state, and will not be available for handling traffic.</p>",
5
- "AllocatePublicVirtualInterface": "<p>Provisions a public virtual interface to be owned by a different customer.</p> <p>The owner of a connection calls this function to provision a public virtual interface which will be owned by another AWS customer.</p> <p>Virtual interfaces created using this function must be confirmed by the virtual interface owner by calling ConfirmPublicVirtualInterface. Until this step has been completed, the virtual interface will be in 'Confirming' state, and will not be available for handling traffic.</p>",
6
- "ConfirmConnection": "<p>Confirm the creation of a hosted connection on an interconnect.</p> <p>Upon creation, the hosted connection is initially in the 'Ordering' state, and will remain in this state until the owner calls ConfirmConnection to confirm creation of the hosted connection.</p>",
7
- "ConfirmPrivateVirtualInterface": "<p>Accept ownership of a private virtual interface created by another customer.</p> <p>After the virtual interface owner calls this function, the virtual interface will be created and attached to the given virtual private gateway, and will be available for handling traffic.</p>",
8
- "ConfirmPublicVirtualInterface": "<p>Accept ownership of a public virtual interface created by another customer.</p> <p>After the virtual interface owner calls this function, the specified virtual interface will be created and made available for handling traffic.</p>",
9
- "CreateConnection": "<p>Creates a new connection between the customer network and a specific AWS Direct Connect location.</p> <p>A connection links your internal network to an AWS Direct Connect location over a standard 1 gigabit or 10 gigabit Ethernet fiber-optic cable. One end of the cable is connected to your router, the other to an AWS Direct Connect router. An AWS Direct Connect location provides access to Amazon Web Services in the region it is associated with. You can establish connections with AWS Direct Connect locations in multiple regions, but a connection in one region does not provide connectivity to other regions.</p>",
10
- "CreateInterconnect": "<p>Creates a new interconnect between a AWS Direct Connect partner's network and a specific AWS Direct Connect location.</p> <p>An interconnect is a connection which is capable of hosting other connections. The AWS Direct Connect partner can use an interconnect to provide sub-1Gbps AWS Direct Connect service to tier 2 customers who do not have their own connections. Like a standard connection, an interconnect links the AWS Direct Connect partner's network to an AWS Direct Connect location over a standard 1 Gbps or 10 Gbps Ethernet fiber-optic cable. One end is connected to the partner's router, the other to an AWS Direct Connect router.</p> <p>For each end customer, the AWS Direct Connect partner provisions a connection on their interconnect by calling AllocateConnectionOnInterconnect. The end customer can then connect to AWS resources by creating a virtual interface on their connection, using the VLAN assigned to them by the AWS Direct Connect partner.</p>",
11
- "CreatePrivateVirtualInterface": "<p>Creates a new private virtual interface. A virtual interface is the VLAN that transports AWS Direct Connect traffic. A private virtual interface supports sending traffic to a single virtual private cloud (VPC).</p>",
12
- "CreatePublicVirtualInterface": "<p>Creates a new public virtual interface. A virtual interface is the VLAN that transports AWS Direct Connect traffic. A public virtual interface supports sending traffic to public services of AWS such as Amazon Simple Storage Service (Amazon S3).</p>",
13
- "DeleteConnection": "<p>Deletes the connection.</p> <p>Deleting a connection only stops the AWS Direct Connect port hour and data transfer charges. You need to cancel separately with the providers any services or charges for cross-connects or network circuits that connect you to the AWS Direct Connect location.</p>",
14
- "DeleteInterconnect": "<p>Deletes the specified interconnect.</p>",
15
- "DeleteVirtualInterface": "<p>Deletes a virtual interface.</p>",
16
- "DescribeConnections": "<p>Displays all connections in this region.</p> <p>If a connection ID is provided, the call returns only that particular connection.</p>",
17
- "DescribeConnectionsOnInterconnect": "<p>Return a list of connections that have been provisioned on the given interconnect.</p>",
18
- "DescribeInterconnects": "<p>Returns a list of interconnects owned by the AWS account.</p> <p>If an interconnect ID is provided, it will only return this particular interconnect.</p>",
19
- "DescribeLocations": "<p>Returns the list of AWS Direct Connect locations in the current AWS region. These are the locations that may be selected when calling CreateConnection or CreateInterconnect.</p>",
20
- "DescribeVirtualGateways": "<p>Returns a list of virtual private gateways owned by the AWS account.</p> <p>You can create one or more AWS Direct Connect private virtual interfaces linking to a virtual private gateway. A virtual private gateway can be managed via Amazon Virtual Private Cloud (VPC) console or the <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-CreateVpnGateway.html\">EC2 CreateVpnGateway</a> action.</p>",
21
- "DescribeVirtualInterfaces": "<p>Displays all virtual interfaces for an AWS account. Virtual interfaces deleted fewer than 15 minutes before DescribeVirtualInterfaces is called are also returned. If a connection ID is included then only virtual interfaces associated with this connection will be returned. If a virtual interface ID is included then only a single virtual interface will be returned.</p> <p>A virtual interface (VLAN) transmits the traffic between the AWS Direct Connect location and the customer.</p> <p>If a connection ID is provided, only virtual interfaces provisioned on the specified connection will be returned. If a virtual interface ID is provided, only this particular virtual interface will be returned.</p>"
22
- },
23
- "service": "<p>AWS Direct Connect makes it easy to establish a dedicated network connection from your premises to Amazon Web Services (AWS). Using AWS Direct Connect, you can establish private connectivity between AWS and your data center, office, or colocation environment, which in many cases can reduce your network costs, increase bandwidth throughput, and provide a more consistent network experience than Internet-based connections.</p> <p>The AWS Direct Connect API Reference provides descriptions, syntax, and usage examples for each of the actions and data types for AWS Direct Connect. Use the following links to get started using the <i>AWS Direct Connect API Reference</i>:</p> <ul> <li> <a href=\"http://docs.aws.amazon.com/directconnect/latest/APIReference/API_Operations.html\">Actions</a>: An alphabetical list of all AWS Direct Connect actions.</li> <li> <a href=\"http://docs.aws.amazon.com/directconnect/latest/APIReference/API_Types.html\">Data Types</a>: An alphabetical list of all AWS Direct Connect data types.</li> <li> <a href=\"http://docs.aws.amazon.com/directconnect/latest/APIReference/CommonParameters.html\">Common Query Parameters</a>: Parameters that all Query actions can use.</li> <li> <a href=\"http://docs.aws.amazon.com/directconnect/latest/APIReference/CommonErrors.html\">Common Errors</a>: Client and server errors that all actions can return.</li> </ul>",
24
- "shapes": {
25
- "ASN": {
26
- "base": "<p>Autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.</p> <p>Example: 65000</p>",
27
- "refs": {
28
- "NewPrivateVirtualInterface$asn": null,
29
- "NewPrivateVirtualInterfaceAllocation$asn": null,
30
- "NewPublicVirtualInterface$asn": null,
31
- "NewPublicVirtualInterfaceAllocation$asn": null,
32
- "VirtualInterface$asn": null
33
- }
34
- },
35
- "AllocateConnectionOnInterconnectRequest": {
36
- "base": "<p>Container for the parameters to the AllocateConnectionOnInterconnect operation.</p>",
37
- "refs": {
38
- }
39
- },
40
- "AllocatePrivateVirtualInterfaceRequest": {
41
- "base": "<p>Container for the parameters to the AllocatePrivateVirtualInterface operation.</p>",
42
- "refs": {
43
- }
44
- },
45
- "AllocatePublicVirtualInterfaceRequest": {
46
- "base": "<p>Container for the parameters to the AllocatePublicVirtualInterface operation.</p>",
47
- "refs": {
48
- }
49
- },
50
- "AmazonAddress": {
51
- "base": "<p>IP address assigned to the Amazon interface.</p> <p>Example: 192.168.1.1/30</p>",
52
- "refs": {
53
- "NewPrivateVirtualInterface$amazonAddress": null,
54
- "NewPrivateVirtualInterfaceAllocation$amazonAddress": null,
55
- "NewPublicVirtualInterface$amazonAddress": null,
56
- "NewPublicVirtualInterfaceAllocation$amazonAddress": null,
57
- "VirtualInterface$amazonAddress": null
58
- }
59
- },
60
- "BGPAuthKey": {
61
- "base": "<p>Authentication key for BGP configuration.</p> <p>Example: asdf34example</p>",
62
- "refs": {
63
- "NewPrivateVirtualInterface$authKey": null,
64
- "NewPrivateVirtualInterfaceAllocation$authKey": null,
65
- "NewPublicVirtualInterface$authKey": null,
66
- "NewPublicVirtualInterfaceAllocation$authKey": null,
67
- "VirtualInterface$authKey": null
68
- }
69
- },
70
- "Bandwidth": {
71
- "base": "<p>Bandwidth of the connection.</p> <p>Example: 1Gbps</p> <p>Default: None</p>",
72
- "refs": {
73
- "AllocateConnectionOnInterconnectRequest$bandwidth": "<p>Bandwidth of the connection.</p> <p>Example: \"<i>500Mbps</i>\"</p> <p>Default: None</p>",
74
- "Connection$bandwidth": "<p>Bandwidth of the connection.</p> <p>Example: 1Gbps (for regular connections), or 500Mbps (for hosted connections)</p> <p>Default: None</p>",
75
- "CreateConnectionRequest$bandwidth": null,
76
- "CreateInterconnectRequest$bandwidth": "<p>The port bandwidth</p> <p>Example: 1Gbps</p> <p>Default: None</p> <p>Available values: 1Gbps,10Gbps</p>",
77
- "Interconnect$bandwidth": null
78
- }
79
- },
80
- "CIDR": {
81
- "base": null,
82
- "refs": {
83
- "RouteFilterPrefix$cidr": "<p>CIDR notation for the advertised route. Multiple routes are separated by commas.</p> <p>Example: 10.10.10.0/24,10.10.11.0/24</p>"
84
- }
85
- },
86
- "ConfirmConnectionRequest": {
87
- "base": "<p>Container for the parameters to the ConfirmConnection operation.</p>",
88
- "refs": {
89
- }
90
- },
91
- "ConfirmConnectionResponse": {
92
- "base": "<p>The response received when ConfirmConnection is called.</p>",
93
- "refs": {
94
- }
95
- },
96
- "ConfirmPrivateVirtualInterfaceRequest": {
97
- "base": "<p>Container for the parameters to the ConfirmPrivateVirtualInterface operation.</p>",
98
- "refs": {
99
- }
100
- },
101
- "ConfirmPrivateVirtualInterfaceResponse": {
102
- "base": "<p>The response received when ConfirmPrivateVirtualInterface is called.</p>",
103
- "refs": {
104
- }
105
- },
106
- "ConfirmPublicVirtualInterfaceRequest": {
107
- "base": "<p>Container for the parameters to the ConfirmPublicVirtualInterface operation.</p>",
108
- "refs": {
109
- }
110
- },
111
- "ConfirmPublicVirtualInterfaceResponse": {
112
- "base": "<p>The response received when ConfirmPublicVirtualInterface is called.</p>",
113
- "refs": {
114
- }
115
- },
116
- "Connection": {
117
- "base": "<p>A connection represents the physical network connection between the AWS Direct Connect location and the customer.</p>",
118
- "refs": {
119
- "ConnectionList$member": null
120
- }
121
- },
122
- "ConnectionId": {
123
- "base": "<p>ID of the connection.</p> <p>Example: dxcon-fg5678gh</p> <p>Default: None</p>",
124
- "refs": {
125
- "AllocatePrivateVirtualInterfaceRequest$connectionId": "<p>The connection ID on which the private virtual interface is provisioned.</p> <p>Default: None</p>",
126
- "AllocatePublicVirtualInterfaceRequest$connectionId": "<p>The connection ID on which the public virtual interface is provisioned.</p> <p>Default: None</p>",
127
- "ConfirmConnectionRequest$connectionId": null,
128
- "Connection$connectionId": null,
129
- "CreatePrivateVirtualInterfaceRequest$connectionId": null,
130
- "CreatePublicVirtualInterfaceRequest$connectionId": null,
131
- "DeleteConnectionRequest$connectionId": null,
132
- "DescribeConnectionsRequest$connectionId": null,
133
- "DescribeVirtualInterfacesRequest$connectionId": null,
134
- "VirtualInterface$connectionId": null
135
- }
136
- },
137
- "ConnectionList": {
138
- "base": "<p>A list of connections.</p>",
139
- "refs": {
140
- "Connections$connections": "<p>A list of connections.</p>"
141
- }
142
- },
143
- "ConnectionName": {
144
- "base": "<p>The name of the connection.</p> <p>Example: \"<i>My Connection to AWS</i>\"</p> <p>Default: None</p>",
145
- "refs": {
146
- "AllocateConnectionOnInterconnectRequest$connectionName": "<p>Name of the provisioned connection.</p> <p>Example: \"<i>500M Connection to AWS</i>\"</p> <p>Default: None</p>",
147
- "Connection$connectionName": null,
148
- "CreateConnectionRequest$connectionName": null
149
- }
150
- },
151
- "ConnectionState": {
152
- "base": "State of the connection. <ul> <li> <b>Ordering</b>: The initial state of a hosted connection provisioned on an interconnect. The connection stays in the ordering state until the owner of the hosted connection confirms or declines the connection order.</li> <li> <b>Requested</b>: The initial state of a standard connection. The connection stays in the requested state until the Letter of Authorization (LOA) is sent to the customer.</li> <li> <b>Pending</b>: The connection has been approved, and is being initialized.</li> <li> <b>Available</b>: The network link is up, and the connection is ready for use.</li> <li> <b>Down</b>: The network link is down.</li> <li> <b>Deleted</b>: The connection has been deleted.</li> <li> <b>Rejected</b>: A hosted connection in the 'Ordering' state will enter the 'Rejected' state if it is deleted by the end customer.</li> </ul>",
153
- "refs": {
154
- "ConfirmConnectionResponse$connectionState": null,
155
- "Connection$connectionState": null
156
- }
157
- },
158
- "Connections": {
159
- "base": "<p>A structure containing a list of connections.</p>",
160
- "refs": {
161
- }
162
- },
163
- "CreateConnectionRequest": {
164
- "base": "<p>Container for the parameters to the CreateConnection operation.</p>",
165
- "refs": {
166
- }
167
- },
168
- "CreateInterconnectRequest": {
169
- "base": "<p>Container for the parameters to the CreateInterconnect operation.</p>",
170
- "refs": {
171
- }
172
- },
173
- "CreatePrivateVirtualInterfaceRequest": {
174
- "base": "<p>Container for the parameters to the CreatePrivateVirtualInterface operation.</p>",
175
- "refs": {
176
- }
177
- },
178
- "CreatePublicVirtualInterfaceRequest": {
179
- "base": "<p>Container for the parameters to the CreatePublicVirtualInterface operation.</p>",
180
- "refs": {
181
- }
182
- },
183
- "CustomerAddress": {
184
- "base": "<p>IP address assigned to the customer interface.</p> <p>Example: 192.168.1.2/30</p>",
185
- "refs": {
186
- "NewPrivateVirtualInterface$customerAddress": null,
187
- "NewPrivateVirtualInterfaceAllocation$customerAddress": null,
188
- "NewPublicVirtualInterface$customerAddress": null,
189
- "NewPublicVirtualInterfaceAllocation$customerAddress": null,
190
- "VirtualInterface$customerAddress": null
191
- }
192
- },
193
- "DeleteConnectionRequest": {
194
- "base": "<p>Container for the parameters to the DeleteConnection operation.</p>",
195
- "refs": {
196
- }
197
- },
198
- "DeleteInterconnectRequest": {
199
- "base": "<p>Container for the parameters to the DeleteInterconnect operation.</p>",
200
- "refs": {
201
- }
202
- },
203
- "DeleteInterconnectResponse": {
204
- "base": "<p>The response received when DeleteInterconnect is called.</p>",
205
- "refs": {
206
- }
207
- },
208
- "DeleteVirtualInterfaceRequest": {
209
- "base": "<p>Container for the parameters to the DeleteVirtualInterface operation.</p>",
210
- "refs": {
211
- }
212
- },
213
- "DeleteVirtualInterfaceResponse": {
214
- "base": "<p>The response received when DeleteVirtualInterface is called.</p>",
215
- "refs": {
216
- }
217
- },
218
- "DescribeConnectionsOnInterconnectRequest": {
219
- "base": "<p>Container for the parameters to the DescribeConnectionsOnInterconnect operation.</p>",
220
- "refs": {
221
- }
222
- },
223
- "DescribeConnectionsRequest": {
224
- "base": "<p>Container for the parameters to the DescribeConnections operation.</p>",
225
- "refs": {
226
- }
227
- },
228
- "DescribeInterconnectsRequest": {
229
- "base": "<p>Container for the parameters to the DescribeInterconnects operation.</p>",
230
- "refs": {
231
- }
232
- },
233
- "DescribeVirtualInterfacesRequest": {
234
- "base": "<p>Container for the parameters to the DescribeVirtualInterfaces operation.</p>",
235
- "refs": {
236
- }
237
- },
238
- "DirectConnectClientException": {
239
- "base": "<p>The API was called with invalid parameters. The error message will contain additional details about the cause.</p>",
240
- "refs": {
241
- }
242
- },
243
- "DirectConnectServerException": {
244
- "base": "<p>A server-side error occurred during the API call. The error message will contain additional details about the cause.</p>",
245
- "refs": {
246
- }
247
- },
248
- "ErrorMessage": {
249
- "base": null,
250
- "refs": {
251
- "DirectConnectClientException$message": null,
252
- "DirectConnectServerException$message": null
253
- }
254
- },
255
- "Interconnect": {
256
- "base": "<p>An interconnect is a connection that can host other connections.</p> <p>Like a standard AWS Direct Connect connection, an interconnect represents the physical connection between an AWS Direct Connect partner's network and a specific Direct Connect location. An AWS Direct Connect partner who owns an interconnect can provision hosted connections on the interconnect for their end customers, thereby providing the end customers with connectivity to AWS services.</p> <p>The resources of the interconnect, including bandwidth and VLAN numbers, are shared by all of the hosted connections on the interconnect, and the owner of the interconnect determines how these resources are assigned.</p>",
257
- "refs": {
258
- "InterconnectList$member": null
259
- }
260
- },
261
- "InterconnectId": {
262
- "base": "<p>The ID of the interconnect.</p> <p>Example: dxcon-abc123</p>",
263
- "refs": {
264
- "AllocateConnectionOnInterconnectRequest$interconnectId": "<p>ID of the interconnect on which the connection will be provisioned.</p> <p>Example: dxcon-456abc78</p> <p>Default: None</p>",
265
- "DeleteInterconnectRequest$interconnectId": null,
266
- "DescribeConnectionsOnInterconnectRequest$interconnectId": "<p>ID of the interconnect on which a list of connection is provisioned.</p> <p>Example: dxcon-abc123</p> <p>Default: None</p>",
267
- "DescribeInterconnectsRequest$interconnectId": null,
268
- "Interconnect$interconnectId": null
269
- }
270
- },
271
- "InterconnectList": {
272
- "base": "<p>A list of interconnects.</p>",
273
- "refs": {
274
- "Interconnects$interconnects": "<p>A list of interconnects.</p>"
275
- }
276
- },
277
- "InterconnectName": {
278
- "base": "<p>The name of the interconnect.</p> <p>Example: \"<i>1G Interconnect to AWS</i>\"</p>",
279
- "refs": {
280
- "CreateInterconnectRequest$interconnectName": "<p>The name of the interconnect.</p> <p>Example: \"<i>1G Interconnect to AWS</i>\"</p> <p>Default: None</p>",
281
- "Interconnect$interconnectName": null
282
- }
283
- },
284
- "InterconnectState": {
285
- "base": "State of the interconnect. <ul> <li> <b>Requested</b>: The initial state of an interconnect. The interconnect stays in the requested state until the Letter of Authorization (LOA) is sent to the customer.</li> <li> <b>Pending</b>: The interconnect has been approved, and is being initialized.</li> <li> <b>Available</b>: The network link is up, and the interconnect is ready for use.</li> <li> <b>Down</b>: The network link is down.</li> <li> <b>Deleted</b>: The interconnect has been deleted.</li> </ul>",
286
- "refs": {
287
- "DeleteInterconnectResponse$interconnectState": null,
288
- "Interconnect$interconnectState": null
289
- }
290
- },
291
- "Interconnects": {
292
- "base": "<p>A structure containing a list of interconnects.</p>",
293
- "refs": {
294
- }
295
- },
296
- "Location": {
297
- "base": "<p>An AWS Direct Connect location where connections and interconnects can be requested.</p>",
298
- "refs": {
299
- "LocationList$member": null
300
- }
301
- },
302
- "LocationCode": {
303
- "base": "<p>Where the connection is located.</p> <p>Example: EqSV5</p> <p>Default: None</p>",
304
- "refs": {
305
- "Connection$location": null,
306
- "CreateConnectionRequest$location": null,
307
- "CreateInterconnectRequest$location": "<p>Where the interconnect is located</p> <p>Example: EqSV5</p> <p>Default: None</p>",
308
- "Interconnect$location": null,
309
- "Location$locationCode": "<p>The code used to indicate the AWS Direct Connect location.</p>",
310
- "VirtualInterface$location": null
311
- }
312
- },
313
- "LocationList": {
314
- "base": null,
315
- "refs": {
316
- "Locations$locations": null
317
- }
318
- },
319
- "LocationName": {
320
- "base": null,
321
- "refs": {
322
- "Location$locationName": "<p>The name of the AWS Direct Connect location. The name includes the colocation partner name and the physical site of the lit building.</p>"
323
- }
324
- },
325
- "Locations": {
326
- "base": null,
327
- "refs": {
328
- }
329
- },
330
- "NewPrivateVirtualInterface": {
331
- "base": "<p>A structure containing information about a new private virtual interface.</p>",
332
- "refs": {
333
- "CreatePrivateVirtualInterfaceRequest$newPrivateVirtualInterface": "<p>Detailed information for the private virtual interface to be created.</p> <p>Default: None</p>"
334
- }
335
- },
336
- "NewPrivateVirtualInterfaceAllocation": {
337
- "base": "<p>A structure containing information about a private virtual interface that will be provisioned on a connection.</p>",
338
- "refs": {
339
- "AllocatePrivateVirtualInterfaceRequest$newPrivateVirtualInterfaceAllocation": "<p>Detailed information for the private virtual interface to be provisioned.</p> <p>Default: None</p>"
340
- }
341
- },
342
- "NewPublicVirtualInterface": {
343
- "base": "<p>A structure containing information about a new public virtual interface.</p>",
344
- "refs": {
345
- "CreatePublicVirtualInterfaceRequest$newPublicVirtualInterface": "<p>Detailed information for the public virtual interface to be created.</p> <p>Default: None</p>"
346
- }
347
- },
348
- "NewPublicVirtualInterfaceAllocation": {
349
- "base": "<p>A structure containing information about a public virtual interface that will be provisioned on a connection.</p>",
350
- "refs": {
351
- "AllocatePublicVirtualInterfaceRequest$newPublicVirtualInterfaceAllocation": "<p>Detailed information for the public virtual interface to be provisioned.</p> <p>Default: None</p>"
352
- }
353
- },
354
- "OwnerAccount": {
355
- "base": null,
356
- "refs": {
357
- "AllocateConnectionOnInterconnectRequest$ownerAccount": "<p>Numeric account Id of the customer for whom the connection will be provisioned.</p> <p>Example: 123443215678</p> <p>Default: None</p>",
358
- "AllocatePrivateVirtualInterfaceRequest$ownerAccount": "<p>The AWS account that will own the new private virtual interface.</p> <p>Default: None</p>",
359
- "AllocatePublicVirtualInterfaceRequest$ownerAccount": "<p>The AWS account that will own the new public virtual interface.</p> <p>Default: None</p>",
360
- "Connection$ownerAccount": null,
361
- "VirtualInterface$ownerAccount": null
362
- }
363
- },
364
- "PartnerName": {
365
- "base": null,
366
- "refs": {
367
- "Connection$partnerName": null
368
- }
369
- },
370
- "Region": {
371
- "base": "<p>The AWS region where the connection is located.</p> <p>Example: us-east-1</p> <p>Default: None</p>",
372
- "refs": {
373
- "Connection$region": null,
374
- "Interconnect$region": null
375
- }
376
- },
377
- "RouteFilterPrefix": {
378
- "base": "<p>A route filter prefix that the customer can advertise through Border Gateway Protocol (BGP) over a public virtual interface.</p>",
379
- "refs": {
380
- "RouteFilterPrefixList$member": null
381
- }
382
- },
383
- "RouteFilterPrefixList": {
384
- "base": "<p>A list of routes to be advertised to the AWS network in this region (public virtual interface) or your VPC (private virtual interface).</p>",
385
- "refs": {
386
- "NewPublicVirtualInterface$routeFilterPrefixes": null,
387
- "NewPublicVirtualInterfaceAllocation$routeFilterPrefixes": null,
388
- "VirtualInterface$routeFilterPrefixes": null
389
- }
390
- },
391
- "RouterConfig": {
392
- "base": null,
393
- "refs": {
394
- "VirtualInterface$customerRouterConfig": "<p>Information for generating the customer router configuration.</p>"
395
- }
396
- },
397
- "VLAN": {
398
- "base": "<p>The VLAN ID.</p> <p>Example: 101</p>",
399
- "refs": {
400
- "AllocateConnectionOnInterconnectRequest$vlan": "<p>The dedicated VLAN provisioned to the connection.</p> <p>Example: 101</p> <p>Default: None</p>",
401
- "Connection$vlan": null,
402
- "NewPrivateVirtualInterface$vlan": null,
403
- "NewPrivateVirtualInterfaceAllocation$vlan": null,
404
- "NewPublicVirtualInterface$vlan": null,
405
- "NewPublicVirtualInterfaceAllocation$vlan": null,
406
- "VirtualInterface$vlan": null
407
- }
408
- },
409
- "VirtualGateway": {
410
- "base": "<p>You can create one or more AWS Direct Connect private virtual interfaces linking to your virtual private gateway.</p> <p>Virtual private gateways can be managed using the Amazon Virtual Private Cloud (Amazon VPC) console or the <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-CreateVpnGateway.html\">Amazon EC2 CreateVpnGateway action</a>.</p>",
411
- "refs": {
412
- "VirtualGatewayList$member": null
413
- }
414
- },
415
- "VirtualGatewayId": {
416
- "base": "<p>The ID of the virtual private gateway to a VPC. This only applies to private virtual interfaces.</p> <p>Example: vgw-123er56</p>",
417
- "refs": {
418
- "ConfirmPrivateVirtualInterfaceRequest$virtualGatewayId": "<p>ID of the virtual private gateway that will be attached to the virtual interface.</p> <p> A virtual private gateway can be managed via the Amazon Virtual Private Cloud (VPC) console or the <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-CreateVpnGateway.html\">EC2 CreateVpnGateway</a> action.</p> <p>Default: None</p>",
419
- "NewPrivateVirtualInterface$virtualGatewayId": null,
420
- "VirtualGateway$virtualGatewayId": null,
421
- "VirtualInterface$virtualGatewayId": null
422
- }
423
- },
424
- "VirtualGatewayList": {
425
- "base": "<p>A list of virtual private gateways.</p>",
426
- "refs": {
427
- "VirtualGateways$virtualGateways": "<p>A list of virtual private gateways.</p>"
428
- }
429
- },
430
- "VirtualGatewayState": {
431
- "base": "State of the virtual private gateway. <ul> <li> <b>Pending</b>: This is the initial state after calling <i>CreateVpnGateway</i>.</li> <li> <b>Available</b>: Ready for use by a private virtual interface.</li> <li> <b>Deleting</b>: This is the initial state after calling <i>DeleteVpnGateway</i>.</li> <li> <b>Deleted</b>: In this state, a private virtual interface is unable to send traffic over this gateway.</li> </ul>",
432
- "refs": {
433
- "VirtualGateway$virtualGatewayState": null
434
- }
435
- },
436
- "VirtualGateways": {
437
- "base": "<p>A structure containing a list of virtual private gateways.</p>",
438
- "refs": {
439
- }
440
- },
441
- "VirtualInterface": {
442
- "base": "<p>A virtual interface (VLAN) transmits the traffic between the AWS Direct Connect location and the customer.</p>",
443
- "refs": {
444
- "VirtualInterfaceList$member": null
445
- }
446
- },
447
- "VirtualInterfaceId": {
448
- "base": "<p>ID of the virtual interface.</p> <p>Example: dxvif-123dfg56</p> <p>Default: None</p>",
449
- "refs": {
450
- "ConfirmPrivateVirtualInterfaceRequest$virtualInterfaceId": null,
451
- "ConfirmPublicVirtualInterfaceRequest$virtualInterfaceId": null,
452
- "DeleteVirtualInterfaceRequest$virtualInterfaceId": null,
453
- "DescribeVirtualInterfacesRequest$virtualInterfaceId": null,
454
- "VirtualInterface$virtualInterfaceId": null
455
- }
456
- },
457
- "VirtualInterfaceList": {
458
- "base": "<p>A list of virtual interfaces.</p>",
459
- "refs": {
460
- "VirtualInterfaces$virtualInterfaces": "<p>A list of virtual interfaces.</p>"
461
- }
462
- },
463
- "VirtualInterfaceName": {
464
- "base": "<p>The name of the virtual interface assigned by the customer.</p> <p>Example: \"My VPC\"</p>",
465
- "refs": {
466
- "NewPrivateVirtualInterface$virtualInterfaceName": null,
467
- "NewPrivateVirtualInterfaceAllocation$virtualInterfaceName": null,
468
- "NewPublicVirtualInterface$virtualInterfaceName": null,
469
- "NewPublicVirtualInterfaceAllocation$virtualInterfaceName": null,
470
- "VirtualInterface$virtualInterfaceName": null
471
- }
472
- },
473
- "VirtualInterfaceState": {
474
- "base": "State of the virtual interface. <ul> <li> <b>Confirming</b>: The creation of the virtual interface is pending confirmation from the virtual interface owner. If the owner of the virtual interface is different from the owner of the connection on which it is provisioned, then the virtual interface will remain in this state until it is confirmed by the virtual interface owner.</li> <li> <b>Verifying</b>: This state only applies to public virtual interfaces. Each public virtual interface needs validation before the virtual interface can be created.</li> <li> <b>Pending</b>: A virtual interface is in this state from the time that it is created until the virtual interface is ready to forward traffic.</li> <li> <b>Available</b>: A virtual interface that is able to forward traffic.</li> <li> <b>Deleting</b>: A virtual interface is in this state immediately after calling <i>DeleteVirtualInterface</i> until it can no longer forward traffic.</li> <li> <b>Deleted</b>: A virtual interface that cannot forward traffic.</li> <li> <b>Rejected</b>: The virtual interface owner has declined creation of the virtual interface. If a virtual interface in the 'Confirming' state is deleted by the virtual interface owner, the virtual interface will enter the 'Rejected' state.</li> </ul>",
475
- "refs": {
476
- "ConfirmPrivateVirtualInterfaceResponse$virtualInterfaceState": null,
477
- "ConfirmPublicVirtualInterfaceResponse$virtualInterfaceState": null,
478
- "DeleteVirtualInterfaceResponse$virtualInterfaceState": null,
479
- "VirtualInterface$virtualInterfaceState": null
480
- }
481
- },
482
- "VirtualInterfaceType": {
483
- "base": "<p>The type of virtual interface.</p> <p>Example: private (Amazon VPC) or public (Amazon S3, Amazon DynamoDB, and so on.)</p>",
484
- "refs": {
485
- "VirtualInterface$virtualInterfaceType": null
486
- }
487
- },
488
- "VirtualInterfaces": {
489
- "base": "<p>A structure containing a list of virtual interfaces.</p>",
490
- "refs": {
491
- }
492
- }
493
- }
494
- }