aws-sdk 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.yardopts +6 -0
- data/LICENSE.txt +171 -0
- data/NOTICE.txt +2 -0
- data/README.rdoc +189 -0
- data/lib/aws-sdk.rb +14 -0
- data/lib/aws.rb +63 -0
- data/lib/aws/api_config.rb +45 -0
- data/lib/aws/api_config/.document +0 -0
- data/lib/aws/api_config/EC2-2011-02-28.yml +2314 -0
- data/lib/aws/api_config/SNS-2010-03-31.yml +171 -0
- data/lib/aws/api_config/SQS-2009-02-01.yml +161 -0
- data/lib/aws/api_config/SimpleDB-2009-04-15.yml +278 -0
- data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +147 -0
- data/lib/aws/api_config_transform.rb +32 -0
- data/lib/aws/async_handle.rb +90 -0
- data/lib/aws/authorize_v2.rb +37 -0
- data/lib/aws/authorize_v3.rb +37 -0
- data/lib/aws/base_client.rb +524 -0
- data/lib/aws/cacheable.rb +92 -0
- data/lib/aws/common.rb +228 -0
- data/lib/aws/configurable.rb +36 -0
- data/lib/aws/configuration.rb +272 -0
- data/lib/aws/configured_client_methods.rb +81 -0
- data/lib/aws/configured_grammars.rb +65 -0
- data/lib/aws/configured_option_grammars.rb +46 -0
- data/lib/aws/configured_xml_grammars.rb +47 -0
- data/lib/aws/default_signer.rb +38 -0
- data/lib/aws/ec2.rb +321 -0
- data/lib/aws/ec2/attachment.rb +149 -0
- data/lib/aws/ec2/attachment_collection.rb +57 -0
- data/lib/aws/ec2/availability_zone.rb +80 -0
- data/lib/aws/ec2/availability_zone_collection.rb +47 -0
- data/lib/aws/ec2/block_device_mappings.rb +53 -0
- data/lib/aws/ec2/client.rb +54 -0
- data/lib/aws/ec2/client/xml.rb +127 -0
- data/lib/aws/ec2/collection.rb +39 -0
- data/lib/aws/ec2/config_transform.rb +63 -0
- data/lib/aws/ec2/elastic_ip.rb +107 -0
- data/lib/aws/ec2/elastic_ip_collection.rb +85 -0
- data/lib/aws/ec2/errors.rb +29 -0
- data/lib/aws/ec2/filtered_collection.rb +65 -0
- data/lib/aws/ec2/has_permissions.rb +46 -0
- data/lib/aws/ec2/image.rb +245 -0
- data/lib/aws/ec2/image_collection.rb +235 -0
- data/lib/aws/ec2/instance.rb +515 -0
- data/lib/aws/ec2/instance_collection.rb +276 -0
- data/lib/aws/ec2/key_pair.rb +86 -0
- data/lib/aws/ec2/key_pair_collection.rb +102 -0
- data/lib/aws/ec2/permission_collection.rb +177 -0
- data/lib/aws/ec2/region.rb +81 -0
- data/lib/aws/ec2/region_collection.rb +55 -0
- data/lib/aws/ec2/request.rb +27 -0
- data/lib/aws/ec2/reserved_instances.rb +50 -0
- data/lib/aws/ec2/reserved_instances_collection.rb +44 -0
- data/lib/aws/ec2/reserved_instances_offering.rb +55 -0
- data/lib/aws/ec2/reserved_instances_offering_collection.rb +43 -0
- data/lib/aws/ec2/resource.rb +340 -0
- data/lib/aws/ec2/resource_tag_collection.rb +218 -0
- data/lib/aws/ec2/security_group.rb +246 -0
- data/lib/aws/ec2/security_group/ip_permission.rb +70 -0
- data/lib/aws/ec2/security_group/ip_permission_collection.rb +59 -0
- data/lib/aws/ec2/security_group_collection.rb +132 -0
- data/lib/aws/ec2/snapshot.rb +138 -0
- data/lib/aws/ec2/snapshot_collection.rb +90 -0
- data/lib/aws/ec2/tag.rb +88 -0
- data/lib/aws/ec2/tag_collection.rb +114 -0
- data/lib/aws/ec2/tagged_collection.rb +48 -0
- data/lib/aws/ec2/tagged_item.rb +87 -0
- data/lib/aws/ec2/volume.rb +190 -0
- data/lib/aws/ec2/volume_collection.rb +95 -0
- data/lib/aws/errors.rb +129 -0
- data/lib/aws/http/builtin_handler.rb +69 -0
- data/lib/aws/http/curb_handler.rb +123 -0
- data/lib/aws/http/handler.rb +77 -0
- data/lib/aws/http/httparty_handler.rb +61 -0
- data/lib/aws/http/request.rb +136 -0
- data/lib/aws/http/request_param.rb +63 -0
- data/lib/aws/http/response.rb +75 -0
- data/lib/aws/ignore_result_element.rb +38 -0
- data/lib/aws/indifferent_hash.rb +86 -0
- data/lib/aws/inflection.rb +46 -0
- data/lib/aws/lazy_error_classes.rb +64 -0
- data/lib/aws/meta_utils.rb +43 -0
- data/lib/aws/model.rb +57 -0
- data/lib/aws/naming.rb +32 -0
- data/lib/aws/option_grammar.rb +544 -0
- data/lib/aws/policy.rb +912 -0
- data/lib/aws/rails.rb +209 -0
- data/lib/aws/record.rb +79 -0
- data/lib/aws/record/attribute.rb +94 -0
- data/lib/aws/record/attribute_macros.rb +288 -0
- data/lib/aws/record/attributes/boolean.rb +49 -0
- data/lib/aws/record/attributes/datetime.rb +86 -0
- data/lib/aws/record/attributes/float.rb +48 -0
- data/lib/aws/record/attributes/integer.rb +68 -0
- data/lib/aws/record/attributes/sortable_float.rb +60 -0
- data/lib/aws/record/attributes/sortable_integer.rb +95 -0
- data/lib/aws/record/attributes/string.rb +69 -0
- data/lib/aws/record/base.rb +728 -0
- data/lib/aws/record/conversion.rb +38 -0
- data/lib/aws/record/dirty_tracking.rb +286 -0
- data/lib/aws/record/errors.rb +153 -0
- data/lib/aws/record/exceptions.rb +48 -0
- data/lib/aws/record/finder_methods.rb +262 -0
- data/lib/aws/record/naming.rb +31 -0
- data/lib/aws/record/scope.rb +157 -0
- data/lib/aws/record/validations.rb +653 -0
- data/lib/aws/record/validator.rb +237 -0
- data/lib/aws/record/validators/acceptance.rb +51 -0
- data/lib/aws/record/validators/block.rb +38 -0
- data/lib/aws/record/validators/confirmation.rb +43 -0
- data/lib/aws/record/validators/count.rb +108 -0
- data/lib/aws/record/validators/exclusion.rb +43 -0
- data/lib/aws/record/validators/format.rb +57 -0
- data/lib/aws/record/validators/inclusion.rb +56 -0
- data/lib/aws/record/validators/length.rb +107 -0
- data/lib/aws/record/validators/numericality.rb +138 -0
- data/lib/aws/record/validators/presence.rb +45 -0
- data/lib/aws/resource_cache.rb +39 -0
- data/lib/aws/response.rb +113 -0
- data/lib/aws/response_cache.rb +50 -0
- data/lib/aws/s3.rb +109 -0
- data/lib/aws/s3/access_control_list.rb +252 -0
- data/lib/aws/s3/acl_object.rb +266 -0
- data/lib/aws/s3/bucket.rb +320 -0
- data/lib/aws/s3/bucket_collection.rb +122 -0
- data/lib/aws/s3/bucket_version_collection.rb +85 -0
- data/lib/aws/s3/client.rb +999 -0
- data/lib/aws/s3/client/xml.rb +190 -0
- data/lib/aws/s3/data_options.rb +99 -0
- data/lib/aws/s3/errors.rb +43 -0
- data/lib/aws/s3/multipart_upload.rb +318 -0
- data/lib/aws/s3/multipart_upload_collection.rb +78 -0
- data/lib/aws/s3/object_collection.rb +159 -0
- data/lib/aws/s3/object_metadata.rb +67 -0
- data/lib/aws/s3/object_upload_collection.rb +83 -0
- data/lib/aws/s3/object_version.rb +141 -0
- data/lib/aws/s3/object_version_collection.rb +78 -0
- data/lib/aws/s3/paginated_collection.rb +94 -0
- data/lib/aws/s3/policy.rb +76 -0
- data/lib/aws/s3/prefix_and_delimiter_collection.rb +56 -0
- data/lib/aws/s3/prefixed_collection.rb +84 -0
- data/lib/aws/s3/presigned_post.rb +504 -0
- data/lib/aws/s3/request.rb +198 -0
- data/lib/aws/s3/s3_object.rb +794 -0
- data/lib/aws/s3/tree.rb +116 -0
- data/lib/aws/s3/tree/branch_node.rb +71 -0
- data/lib/aws/s3/tree/child_collection.rb +108 -0
- data/lib/aws/s3/tree/leaf_node.rb +99 -0
- data/lib/aws/s3/tree/node.rb +22 -0
- data/lib/aws/s3/tree/parent.rb +90 -0
- data/lib/aws/s3/uploaded_part.rb +82 -0
- data/lib/aws/s3/uploaded_part_collection.rb +86 -0
- data/lib/aws/service_interface.rb +60 -0
- data/lib/aws/simple_db.rb +202 -0
- data/lib/aws/simple_db/attribute.rb +159 -0
- data/lib/aws/simple_db/attribute_collection.rb +227 -0
- data/lib/aws/simple_db/client.rb +52 -0
- data/lib/aws/simple_db/client/options.rb +34 -0
- data/lib/aws/simple_db/client/xml.rb +68 -0
- data/lib/aws/simple_db/consistent_read_option.rb +42 -0
- data/lib/aws/simple_db/delete_attributes.rb +64 -0
- data/lib/aws/simple_db/domain.rb +118 -0
- data/lib/aws/simple_db/domain_collection.rb +116 -0
- data/lib/aws/simple_db/domain_metadata.rb +112 -0
- data/lib/aws/simple_db/errors.rb +46 -0
- data/lib/aws/simple_db/expect_condition_option.rb +45 -0
- data/lib/aws/simple_db/item.rb +84 -0
- data/lib/aws/simple_db/item_collection.rb +594 -0
- data/lib/aws/simple_db/item_data.rb +70 -0
- data/lib/aws/simple_db/put_attributes.rb +62 -0
- data/lib/aws/simple_db/request.rb +27 -0
- data/lib/aws/simple_email_service.rb +373 -0
- data/lib/aws/simple_email_service/client.rb +39 -0
- data/lib/aws/simple_email_service/client/options.rb +24 -0
- data/lib/aws/simple_email_service/client/xml.rb +38 -0
- data/lib/aws/simple_email_service/email_address_collection.rb +66 -0
- data/lib/aws/simple_email_service/errors.rb +29 -0
- data/lib/aws/simple_email_service/quotas.rb +64 -0
- data/lib/aws/simple_email_service/request.rb +27 -0
- data/lib/aws/sns.rb +69 -0
- data/lib/aws/sns/client.rb +37 -0
- data/lib/aws/sns/client/options.rb +24 -0
- data/lib/aws/sns/client/xml.rb +38 -0
- data/lib/aws/sns/errors.rb +29 -0
- data/lib/aws/sns/policy.rb +49 -0
- data/lib/aws/sns/request.rb +27 -0
- data/lib/aws/sns/subscription.rb +100 -0
- data/lib/aws/sns/subscription_collection.rb +84 -0
- data/lib/aws/sns/topic.rb +384 -0
- data/lib/aws/sns/topic_collection.rb +70 -0
- data/lib/aws/sns/topic_subscription_collection.rb +58 -0
- data/lib/aws/sqs.rb +70 -0
- data/lib/aws/sqs/client.rb +38 -0
- data/lib/aws/sqs/client/xml.rb +36 -0
- data/lib/aws/sqs/errors.rb +33 -0
- data/lib/aws/sqs/policy.rb +50 -0
- data/lib/aws/sqs/queue.rb +507 -0
- data/lib/aws/sqs/queue_collection.rb +105 -0
- data/lib/aws/sqs/received_message.rb +184 -0
- data/lib/aws/sqs/received_sns_message.rb +112 -0
- data/lib/aws/sqs/request.rb +44 -0
- data/lib/aws/xml_grammar.rb +923 -0
- data/rails/init.rb +15 -0
- metadata +298 -0
@@ -0,0 +1,45 @@
|
|
1
|
+
# Copyright 2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
require 'aws/naming'
|
15
|
+
|
16
|
+
require 'pathname'
|
17
|
+
require 'yaml'
|
18
|
+
|
19
|
+
module AWS
|
20
|
+
|
21
|
+
# @private
|
22
|
+
module ApiConfig
|
23
|
+
|
24
|
+
include Naming
|
25
|
+
|
26
|
+
protected
|
27
|
+
def api_config
|
28
|
+
|
29
|
+
config_file = $:.map do |load_path|
|
30
|
+
if config_dir = Pathname.new(load_path) +
|
31
|
+
"aws" + "api_config" and
|
32
|
+
config_dir.directory?
|
33
|
+
config_dir.children.select do |child|
|
34
|
+
child.basename.to_s =~ /^#{service_name}/
|
35
|
+
end.sort.last
|
36
|
+
end
|
37
|
+
end.compact.sort.last
|
38
|
+
|
39
|
+
YAML.load(config_file.read)
|
40
|
+
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
File without changes
|
@@ -0,0 +1,2314 @@
|
|
1
|
+
# Copyright 2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
---
|
15
|
+
:operations:
|
16
|
+
AllocateAddress:
|
17
|
+
:input:
|
18
|
+
Domain:
|
19
|
+
- :string
|
20
|
+
:output: []
|
21
|
+
|
22
|
+
AssociateAddress:
|
23
|
+
:input:
|
24
|
+
InstanceId:
|
25
|
+
- :string
|
26
|
+
- :required
|
27
|
+
PublicIp:
|
28
|
+
- :string
|
29
|
+
- :required
|
30
|
+
AllocationId:
|
31
|
+
- :string
|
32
|
+
:output: []
|
33
|
+
|
34
|
+
AssociateDhcpOptions:
|
35
|
+
:input:
|
36
|
+
DhcpOptionsId:
|
37
|
+
- :string
|
38
|
+
- :required
|
39
|
+
VpcId:
|
40
|
+
- :string
|
41
|
+
- :required
|
42
|
+
:output: []
|
43
|
+
|
44
|
+
AttachVolume:
|
45
|
+
:input:
|
46
|
+
VolumeId:
|
47
|
+
- :string
|
48
|
+
- :required
|
49
|
+
InstanceId:
|
50
|
+
- :string
|
51
|
+
- :required
|
52
|
+
Device:
|
53
|
+
- :string
|
54
|
+
- :required
|
55
|
+
:output:
|
56
|
+
- attachTime:
|
57
|
+
- :timestamp
|
58
|
+
- deleteOnTermination:
|
59
|
+
- :boolean
|
60
|
+
AttachVpnGateway:
|
61
|
+
:input:
|
62
|
+
VpnGatewayId:
|
63
|
+
- :string
|
64
|
+
- :required
|
65
|
+
VpcId:
|
66
|
+
- :string
|
67
|
+
- :required
|
68
|
+
:output: []
|
69
|
+
|
70
|
+
AuthorizeSecurityGroupIngress:
|
71
|
+
:input:
|
72
|
+
GroupName:
|
73
|
+
- :string
|
74
|
+
GroupId:
|
75
|
+
- :string
|
76
|
+
SourceSecurityGroupName:
|
77
|
+
- :string
|
78
|
+
SourceSecurityGroupOwnerId:
|
79
|
+
- :string
|
80
|
+
IpProtocol:
|
81
|
+
- :string
|
82
|
+
FromPort:
|
83
|
+
- :integer
|
84
|
+
ToPort:
|
85
|
+
- :integer
|
86
|
+
CidrIp:
|
87
|
+
- :string
|
88
|
+
IpPermissions:
|
89
|
+
- :list:
|
90
|
+
- :structure:
|
91
|
+
IpProtocol:
|
92
|
+
- :string
|
93
|
+
- :rename: IpProtocol
|
94
|
+
FromPort:
|
95
|
+
- :integer
|
96
|
+
- :rename: FromPort
|
97
|
+
ToPort:
|
98
|
+
- :integer
|
99
|
+
- :rename: ToPort
|
100
|
+
Groups:
|
101
|
+
- :list:
|
102
|
+
- :structure:
|
103
|
+
UserId:
|
104
|
+
- :string
|
105
|
+
- :rename: UserId
|
106
|
+
GroupName:
|
107
|
+
- :string
|
108
|
+
- :rename: GroupName
|
109
|
+
GroupId:
|
110
|
+
- :string
|
111
|
+
- :rename: GroupId
|
112
|
+
- :rename: UserIdGroupPairs
|
113
|
+
IpRanges:
|
114
|
+
- :list:
|
115
|
+
- :structure:
|
116
|
+
CidrIp:
|
117
|
+
- :string
|
118
|
+
- :rename: CidrIp
|
119
|
+
- :rename: IpRanges
|
120
|
+
:output: []
|
121
|
+
|
122
|
+
BundleInstance:
|
123
|
+
:input:
|
124
|
+
InstanceId:
|
125
|
+
- :string
|
126
|
+
- :required
|
127
|
+
Storage:
|
128
|
+
- :structure:
|
129
|
+
S3:
|
130
|
+
- :structure:
|
131
|
+
Bucket:
|
132
|
+
- :string
|
133
|
+
- :rename: Bucket
|
134
|
+
Prefix:
|
135
|
+
- :string
|
136
|
+
- :rename: Prefix
|
137
|
+
AWSAccessKeyId:
|
138
|
+
- :string
|
139
|
+
UploadPolicy:
|
140
|
+
- :string
|
141
|
+
- :rename: UploadPolicy
|
142
|
+
UploadPolicySignature:
|
143
|
+
- :string
|
144
|
+
- :rename: UploadPolicySignature
|
145
|
+
- :required
|
146
|
+
:output:
|
147
|
+
- bundleInstanceTask:
|
148
|
+
- startTime:
|
149
|
+
- :timestamp
|
150
|
+
- updateTime:
|
151
|
+
- :timestamp
|
152
|
+
CancelBundleTask:
|
153
|
+
:input:
|
154
|
+
BundleId:
|
155
|
+
- :string
|
156
|
+
- :required
|
157
|
+
:output:
|
158
|
+
- bundleInstanceTask:
|
159
|
+
- startTime:
|
160
|
+
- :timestamp
|
161
|
+
- updateTime:
|
162
|
+
- :timestamp
|
163
|
+
ConfirmProductInstance:
|
164
|
+
:input:
|
165
|
+
ProductCode:
|
166
|
+
- :string
|
167
|
+
- :required
|
168
|
+
InstanceId:
|
169
|
+
- :string
|
170
|
+
- :required
|
171
|
+
:output: []
|
172
|
+
|
173
|
+
CreateCustomerGateway:
|
174
|
+
:input:
|
175
|
+
Type:
|
176
|
+
- :string
|
177
|
+
- :required
|
178
|
+
IpAddress:
|
179
|
+
- :string
|
180
|
+
- :required
|
181
|
+
- :rename: PublicIp
|
182
|
+
BgpAsn:
|
183
|
+
- :integer
|
184
|
+
- :required
|
185
|
+
:output:
|
186
|
+
- customerGateway:
|
187
|
+
- tagSet:
|
188
|
+
- :list: item
|
189
|
+
CreateDhcpOptions:
|
190
|
+
:input:
|
191
|
+
DhcpConfiguration:
|
192
|
+
- :list:
|
193
|
+
- :structure:
|
194
|
+
Key:
|
195
|
+
- :string
|
196
|
+
- :rename: Key
|
197
|
+
ValueSet:
|
198
|
+
- :list:
|
199
|
+
- :string
|
200
|
+
- :rename: Values
|
201
|
+
- :required
|
202
|
+
- :rename: DhcpConfigurations
|
203
|
+
:output:
|
204
|
+
- dhcpOptions:
|
205
|
+
- dhcpConfigurationSet:
|
206
|
+
- :list: item
|
207
|
+
- item:
|
208
|
+
- valueSet:
|
209
|
+
- :list: item
|
210
|
+
- tagSet:
|
211
|
+
- :list: item
|
212
|
+
CreateKeyPair:
|
213
|
+
:input:
|
214
|
+
KeyName:
|
215
|
+
- :string
|
216
|
+
- :required
|
217
|
+
:output: []
|
218
|
+
|
219
|
+
CreateSecurityGroup:
|
220
|
+
:input:
|
221
|
+
GroupName:
|
222
|
+
- :string
|
223
|
+
- :required
|
224
|
+
GroupDescription:
|
225
|
+
- :string
|
226
|
+
- :required
|
227
|
+
- :rename: Description
|
228
|
+
VpcId:
|
229
|
+
- :string
|
230
|
+
:output: []
|
231
|
+
|
232
|
+
CreateSnapshot:
|
233
|
+
:input:
|
234
|
+
VolumeId:
|
235
|
+
- :string
|
236
|
+
- :required
|
237
|
+
Description:
|
238
|
+
- :string
|
239
|
+
:output:
|
240
|
+
- startTime:
|
241
|
+
- :timestamp
|
242
|
+
- volumeSize:
|
243
|
+
- :integer
|
244
|
+
- tagSet:
|
245
|
+
- :list: item
|
246
|
+
CreateSubnet:
|
247
|
+
:input:
|
248
|
+
VpcId:
|
249
|
+
- :string
|
250
|
+
- :required
|
251
|
+
CidrBlock:
|
252
|
+
- :string
|
253
|
+
- :required
|
254
|
+
AvailabilityZone:
|
255
|
+
- :string
|
256
|
+
:output:
|
257
|
+
- subnet:
|
258
|
+
- availableIpAddressCount:
|
259
|
+
- :integer
|
260
|
+
- tagSet:
|
261
|
+
- :list: item
|
262
|
+
CreateVolume:
|
263
|
+
:input:
|
264
|
+
Size:
|
265
|
+
- :integer
|
266
|
+
SnapshotId:
|
267
|
+
- :string
|
268
|
+
AvailabilityZone:
|
269
|
+
- :string
|
270
|
+
- :required
|
271
|
+
:output:
|
272
|
+
- size:
|
273
|
+
- :integer
|
274
|
+
- createTime:
|
275
|
+
- :timestamp
|
276
|
+
- attachmentSet:
|
277
|
+
- :list: item
|
278
|
+
- item:
|
279
|
+
- attachTime:
|
280
|
+
- :timestamp
|
281
|
+
- deleteOnTermination:
|
282
|
+
- :boolean
|
283
|
+
- tagSet:
|
284
|
+
- :list: item
|
285
|
+
CreateVpc:
|
286
|
+
:input:
|
287
|
+
CidrBlock:
|
288
|
+
- :string
|
289
|
+
- :required
|
290
|
+
InstanceTenancy:
|
291
|
+
- :string
|
292
|
+
:output:
|
293
|
+
- vpc:
|
294
|
+
- tagSet:
|
295
|
+
- :list: item
|
296
|
+
CreateVpnConnection:
|
297
|
+
:input:
|
298
|
+
Type:
|
299
|
+
- :string
|
300
|
+
- :required
|
301
|
+
CustomerGatewayId:
|
302
|
+
- :string
|
303
|
+
- :required
|
304
|
+
VpnGatewayId:
|
305
|
+
- :string
|
306
|
+
- :required
|
307
|
+
:output:
|
308
|
+
- vpnConnection:
|
309
|
+
- tagSet:
|
310
|
+
- :list: item
|
311
|
+
CreateVpnGateway:
|
312
|
+
:input:
|
313
|
+
Type:
|
314
|
+
- :string
|
315
|
+
- :required
|
316
|
+
AvailabilityZone:
|
317
|
+
- :string
|
318
|
+
:output:
|
319
|
+
- vpnGateway:
|
320
|
+
- attachments:
|
321
|
+
- :list: item
|
322
|
+
- tagSet:
|
323
|
+
- :list: item
|
324
|
+
DeleteCustomerGateway:
|
325
|
+
:input:
|
326
|
+
CustomerGatewayId:
|
327
|
+
- :string
|
328
|
+
- :required
|
329
|
+
:output: []
|
330
|
+
|
331
|
+
DeleteDhcpOptions:
|
332
|
+
:input:
|
333
|
+
DhcpOptionsId:
|
334
|
+
- :string
|
335
|
+
- :required
|
336
|
+
:output: []
|
337
|
+
|
338
|
+
DeleteKeyPair:
|
339
|
+
:input:
|
340
|
+
KeyName:
|
341
|
+
- :string
|
342
|
+
- :required
|
343
|
+
:output: []
|
344
|
+
|
345
|
+
DeleteSecurityGroup:
|
346
|
+
:input:
|
347
|
+
GroupName:
|
348
|
+
- :string
|
349
|
+
GroupId:
|
350
|
+
- :string
|
351
|
+
:output: []
|
352
|
+
|
353
|
+
DeleteSnapshot:
|
354
|
+
:input:
|
355
|
+
SnapshotId:
|
356
|
+
- :string
|
357
|
+
- :required
|
358
|
+
:output: []
|
359
|
+
|
360
|
+
DeleteSubnet:
|
361
|
+
:input:
|
362
|
+
SubnetId:
|
363
|
+
- :string
|
364
|
+
- :required
|
365
|
+
:output: []
|
366
|
+
|
367
|
+
DeleteVolume:
|
368
|
+
:input:
|
369
|
+
VolumeId:
|
370
|
+
- :string
|
371
|
+
- :required
|
372
|
+
:output: []
|
373
|
+
|
374
|
+
DeleteVpc:
|
375
|
+
:input:
|
376
|
+
VpcId:
|
377
|
+
- :string
|
378
|
+
- :required
|
379
|
+
:output: []
|
380
|
+
|
381
|
+
DeleteVpnConnection:
|
382
|
+
:input:
|
383
|
+
VpnConnectionId:
|
384
|
+
- :string
|
385
|
+
- :required
|
386
|
+
:output: []
|
387
|
+
|
388
|
+
DeleteVpnGateway:
|
389
|
+
:input:
|
390
|
+
VpnGatewayId:
|
391
|
+
- :string
|
392
|
+
- :required
|
393
|
+
:output: []
|
394
|
+
|
395
|
+
DeregisterImage:
|
396
|
+
:input:
|
397
|
+
ImageId:
|
398
|
+
- :string
|
399
|
+
- :required
|
400
|
+
:output: []
|
401
|
+
|
402
|
+
DescribeAddresses:
|
403
|
+
:input:
|
404
|
+
PublicIp:
|
405
|
+
- :list:
|
406
|
+
- :string
|
407
|
+
- :rename: PublicIps
|
408
|
+
Filter:
|
409
|
+
- :list:
|
410
|
+
- :structure:
|
411
|
+
Name:
|
412
|
+
- :string
|
413
|
+
Value:
|
414
|
+
- :list:
|
415
|
+
- :string
|
416
|
+
- :rename: Values
|
417
|
+
- :rename: filters
|
418
|
+
AllocationId:
|
419
|
+
- :list:
|
420
|
+
- :string
|
421
|
+
- :rename: allocationIds
|
422
|
+
:output:
|
423
|
+
- addressesSet:
|
424
|
+
- :list: item
|
425
|
+
DescribeAvailabilityZones:
|
426
|
+
:input:
|
427
|
+
ZoneName:
|
428
|
+
- :list:
|
429
|
+
- :string
|
430
|
+
- :rename: ZoneNames
|
431
|
+
Filter:
|
432
|
+
- :list:
|
433
|
+
- :structure:
|
434
|
+
Name:
|
435
|
+
- :string
|
436
|
+
Value:
|
437
|
+
- :list:
|
438
|
+
- :string
|
439
|
+
- :rename: Values
|
440
|
+
- :rename: filters
|
441
|
+
:output:
|
442
|
+
- availabilityZoneInfo:
|
443
|
+
- :list: item
|
444
|
+
DescribeBundleTasks:
|
445
|
+
:input:
|
446
|
+
BundleId:
|
447
|
+
- :list:
|
448
|
+
- :string
|
449
|
+
- :rename: BundleIds
|
450
|
+
Filter:
|
451
|
+
- :list:
|
452
|
+
- :structure:
|
453
|
+
Name:
|
454
|
+
- :string
|
455
|
+
Value:
|
456
|
+
- :list:
|
457
|
+
- :string
|
458
|
+
- :rename: Values
|
459
|
+
- :rename: filters
|
460
|
+
:output:
|
461
|
+
- bundleInstanceTasksSet:
|
462
|
+
- :list: item
|
463
|
+
- item:
|
464
|
+
- startTime:
|
465
|
+
- :timestamp
|
466
|
+
- updateTime:
|
467
|
+
- :timestamp
|
468
|
+
DescribeCustomerGateways:
|
469
|
+
:input:
|
470
|
+
CustomerGatewayId:
|
471
|
+
- :list:
|
472
|
+
- :string
|
473
|
+
- :rename: CustomerGatewayIds
|
474
|
+
Filter:
|
475
|
+
- :list:
|
476
|
+
- :structure:
|
477
|
+
Name:
|
478
|
+
- :string
|
479
|
+
Value:
|
480
|
+
- :list:
|
481
|
+
- :string
|
482
|
+
- :rename: Values
|
483
|
+
- :rename: Filters
|
484
|
+
:output:
|
485
|
+
- customerGatewaySet:
|
486
|
+
- :list: item
|
487
|
+
- item:
|
488
|
+
- tagSet:
|
489
|
+
- :list: item
|
490
|
+
DescribeDhcpOptions:
|
491
|
+
:input:
|
492
|
+
DhcpOptionsId:
|
493
|
+
- :list:
|
494
|
+
- :string
|
495
|
+
- :rename: DhcpOptionsIds
|
496
|
+
Filter:
|
497
|
+
- :list:
|
498
|
+
- :structure:
|
499
|
+
Name:
|
500
|
+
- :string
|
501
|
+
Value:
|
502
|
+
- :list:
|
503
|
+
- :string
|
504
|
+
- :rename: Values
|
505
|
+
- :rename: filters
|
506
|
+
:output:
|
507
|
+
- dhcpOptionsSet:
|
508
|
+
- :list: item
|
509
|
+
- item:
|
510
|
+
- dhcpConfigurationSet:
|
511
|
+
- :list: item
|
512
|
+
- item:
|
513
|
+
- valueSet:
|
514
|
+
- :list: item
|
515
|
+
- tagSet:
|
516
|
+
- :list: item
|
517
|
+
DescribeImageAttribute:
|
518
|
+
:input:
|
519
|
+
ImageId:
|
520
|
+
- :string
|
521
|
+
- :required
|
522
|
+
Attribute:
|
523
|
+
- :string
|
524
|
+
- :required
|
525
|
+
:output:
|
526
|
+
- launchPermission:
|
527
|
+
- :list: item
|
528
|
+
- productCodes:
|
529
|
+
- :list: item
|
530
|
+
- blockDeviceMapping:
|
531
|
+
- :list: item
|
532
|
+
- item:
|
533
|
+
- ebs:
|
534
|
+
- volumeSize:
|
535
|
+
- :integer
|
536
|
+
- deleteOnTermination:
|
537
|
+
- :boolean
|
538
|
+
DescribeImages:
|
539
|
+
:input:
|
540
|
+
ImageId:
|
541
|
+
- :list:
|
542
|
+
- :string
|
543
|
+
- :rename: ImageIds
|
544
|
+
Owner:
|
545
|
+
- :list:
|
546
|
+
- :string
|
547
|
+
- :rename: Owners
|
548
|
+
ExecutableBy:
|
549
|
+
- :list:
|
550
|
+
- :string
|
551
|
+
- :rename: ExecutableUsers
|
552
|
+
Filter:
|
553
|
+
- :list:
|
554
|
+
- :structure:
|
555
|
+
Name:
|
556
|
+
- :string
|
557
|
+
Value:
|
558
|
+
- :list:
|
559
|
+
- :string
|
560
|
+
- :rename: Values
|
561
|
+
- :rename: filters
|
562
|
+
:output:
|
563
|
+
- imagesSet:
|
564
|
+
- :list: item
|
565
|
+
- item:
|
566
|
+
- isPublic:
|
567
|
+
- :boolean
|
568
|
+
- productCodes:
|
569
|
+
- :list: item
|
570
|
+
- blockDeviceMapping:
|
571
|
+
- :list: item
|
572
|
+
- item:
|
573
|
+
- ebs:
|
574
|
+
- volumeSize:
|
575
|
+
- :integer
|
576
|
+
- deleteOnTermination:
|
577
|
+
- :boolean
|
578
|
+
- tagSet:
|
579
|
+
- :list: item
|
580
|
+
DescribeInstances:
|
581
|
+
:input:
|
582
|
+
InstanceId:
|
583
|
+
- :list:
|
584
|
+
- :string
|
585
|
+
- :rename: InstanceIds
|
586
|
+
Filter:
|
587
|
+
- :list:
|
588
|
+
- :structure:
|
589
|
+
Name:
|
590
|
+
- :string
|
591
|
+
Value:
|
592
|
+
- :list:
|
593
|
+
- :string
|
594
|
+
- :rename: Values
|
595
|
+
- :rename: filters
|
596
|
+
:output:
|
597
|
+
- reservationSet:
|
598
|
+
- :list: item
|
599
|
+
- item:
|
600
|
+
- groupSet:
|
601
|
+
- :list: item
|
602
|
+
- instancesSet:
|
603
|
+
- :list: item
|
604
|
+
- item:
|
605
|
+
- instanceState:
|
606
|
+
- code:
|
607
|
+
- :integer
|
608
|
+
- amiLaunchIndex:
|
609
|
+
- :integer
|
610
|
+
- productCodes:
|
611
|
+
- :list: item
|
612
|
+
- launchTime:
|
613
|
+
- :timestamp
|
614
|
+
- blockDeviceMapping:
|
615
|
+
- :list: item
|
616
|
+
- item:
|
617
|
+
- ebs:
|
618
|
+
- attachTime:
|
619
|
+
- :timestamp
|
620
|
+
- deleteOnTermination:
|
621
|
+
- :boolean
|
622
|
+
- tagSet:
|
623
|
+
- :list: item
|
624
|
+
- groupSet:
|
625
|
+
- :list: item
|
626
|
+
- sourceDestCheck:
|
627
|
+
- :boolean
|
628
|
+
DescribeKeyPairs:
|
629
|
+
:input:
|
630
|
+
KeyName:
|
631
|
+
- :list:
|
632
|
+
- :string
|
633
|
+
- :rename: KeyNames
|
634
|
+
Filter:
|
635
|
+
- :list:
|
636
|
+
- :structure:
|
637
|
+
Name:
|
638
|
+
- :string
|
639
|
+
Value:
|
640
|
+
- :list:
|
641
|
+
- :string
|
642
|
+
- :rename: Values
|
643
|
+
- :rename: filters
|
644
|
+
:output:
|
645
|
+
- keySet:
|
646
|
+
- :list: item
|
647
|
+
DescribeRegions:
|
648
|
+
:input:
|
649
|
+
RegionName:
|
650
|
+
- :list:
|
651
|
+
- :string
|
652
|
+
- :rename: RegionNames
|
653
|
+
Filter:
|
654
|
+
- :list:
|
655
|
+
- :structure:
|
656
|
+
Name:
|
657
|
+
- :string
|
658
|
+
Value:
|
659
|
+
- :list:
|
660
|
+
- :string
|
661
|
+
- :rename: Values
|
662
|
+
- :rename: filters
|
663
|
+
:output:
|
664
|
+
- regionInfo:
|
665
|
+
- :list: item
|
666
|
+
DescribeReservedInstances:
|
667
|
+
:input:
|
668
|
+
ReservedInstancesId:
|
669
|
+
- :list:
|
670
|
+
- :string
|
671
|
+
- :rename: ReservedInstancesIds
|
672
|
+
Filter:
|
673
|
+
- :list:
|
674
|
+
- :structure:
|
675
|
+
Name:
|
676
|
+
- :string
|
677
|
+
Value:
|
678
|
+
- :list:
|
679
|
+
- :string
|
680
|
+
- :rename: Values
|
681
|
+
- :rename: filters
|
682
|
+
:output:
|
683
|
+
- reservedInstancesSet:
|
684
|
+
- :list: item
|
685
|
+
- item:
|
686
|
+
- start:
|
687
|
+
- :timestamp
|
688
|
+
- duration:
|
689
|
+
- :long
|
690
|
+
- usagePrice:
|
691
|
+
- :float
|
692
|
+
- fixedPrice:
|
693
|
+
- :float
|
694
|
+
- instanceCount:
|
695
|
+
- :integer
|
696
|
+
- tagSet:
|
697
|
+
- :list: item
|
698
|
+
DescribeReservedInstancesOfferings:
|
699
|
+
:input:
|
700
|
+
ReservedInstancesOfferingId:
|
701
|
+
- :list:
|
702
|
+
- :string
|
703
|
+
- :rename: ReservedInstancesOfferingIds
|
704
|
+
InstanceType:
|
705
|
+
- :string
|
706
|
+
AvailabilityZone:
|
707
|
+
- :string
|
708
|
+
ProductDescription:
|
709
|
+
- :string
|
710
|
+
Filter:
|
711
|
+
- :list:
|
712
|
+
- :structure:
|
713
|
+
Name:
|
714
|
+
- :string
|
715
|
+
Value:
|
716
|
+
- :list:
|
717
|
+
- :string
|
718
|
+
- :rename: Values
|
719
|
+
- :rename: filters
|
720
|
+
InstanceTenancy:
|
721
|
+
- :string
|
722
|
+
:output:
|
723
|
+
- reservedInstancesOfferingsSet:
|
724
|
+
- :list: item
|
725
|
+
- item:
|
726
|
+
- duration:
|
727
|
+
- :long
|
728
|
+
- usagePrice:
|
729
|
+
- :float
|
730
|
+
- fixedPrice:
|
731
|
+
- :float
|
732
|
+
DescribeSecurityGroups:
|
733
|
+
:input:
|
734
|
+
GroupName:
|
735
|
+
- :list:
|
736
|
+
- :string
|
737
|
+
- :rename: GroupNames
|
738
|
+
GroupId:
|
739
|
+
- :list:
|
740
|
+
- :string
|
741
|
+
- :rename: GroupIds
|
742
|
+
Filter:
|
743
|
+
- :list:
|
744
|
+
- :structure:
|
745
|
+
Name:
|
746
|
+
- :string
|
747
|
+
Value:
|
748
|
+
- :list:
|
749
|
+
- :string
|
750
|
+
- :rename: Values
|
751
|
+
- :rename: filters
|
752
|
+
:output:
|
753
|
+
- securityGroupInfo:
|
754
|
+
- :list: item
|
755
|
+
- item:
|
756
|
+
- ipPermissions:
|
757
|
+
- :list: item
|
758
|
+
- item:
|
759
|
+
- fromPort:
|
760
|
+
- :integer
|
761
|
+
- toPort:
|
762
|
+
- :integer
|
763
|
+
- groups:
|
764
|
+
- :list: item
|
765
|
+
- ipRanges:
|
766
|
+
- :list: item
|
767
|
+
- ipPermissionsEgress:
|
768
|
+
- :list: item
|
769
|
+
- item:
|
770
|
+
- fromPort:
|
771
|
+
- :integer
|
772
|
+
- toPort:
|
773
|
+
- :integer
|
774
|
+
- groups:
|
775
|
+
- :list: item
|
776
|
+
- ipRanges:
|
777
|
+
- :list: item
|
778
|
+
- tagSet:
|
779
|
+
- :list: item
|
780
|
+
DescribeSnapshotAttribute:
|
781
|
+
:input:
|
782
|
+
SnapshotId:
|
783
|
+
- :string
|
784
|
+
- :required
|
785
|
+
Attribute:
|
786
|
+
- :string
|
787
|
+
- :required
|
788
|
+
:output:
|
789
|
+
- createVolumePermission:
|
790
|
+
- :list: item
|
791
|
+
DescribeSnapshots:
|
792
|
+
:input:
|
793
|
+
SnapshotId:
|
794
|
+
- :list:
|
795
|
+
- :string
|
796
|
+
- :rename: SnapshotIds
|
797
|
+
Owner:
|
798
|
+
- :list:
|
799
|
+
- :string
|
800
|
+
- :rename: OwnerIds
|
801
|
+
RestorableBy:
|
802
|
+
- :list:
|
803
|
+
- :string
|
804
|
+
- :rename: RestorableByUserIds
|
805
|
+
Filter:
|
806
|
+
- :list:
|
807
|
+
- :structure:
|
808
|
+
Name:
|
809
|
+
- :string
|
810
|
+
Value:
|
811
|
+
- :list:
|
812
|
+
- :string
|
813
|
+
- :rename: Values
|
814
|
+
- :rename: filters
|
815
|
+
:output:
|
816
|
+
- snapshotSet:
|
817
|
+
- :list: item
|
818
|
+
- item:
|
819
|
+
- startTime:
|
820
|
+
- :timestamp
|
821
|
+
- volumeSize:
|
822
|
+
- :integer
|
823
|
+
- tagSet:
|
824
|
+
- :list: item
|
825
|
+
DescribeSubnets:
|
826
|
+
:input:
|
827
|
+
SubnetId:
|
828
|
+
- :list:
|
829
|
+
- :string
|
830
|
+
- :rename: SubnetIds
|
831
|
+
Filter:
|
832
|
+
- :list:
|
833
|
+
- :structure:
|
834
|
+
Name:
|
835
|
+
- :string
|
836
|
+
Value:
|
837
|
+
- :list:
|
838
|
+
- :string
|
839
|
+
- :rename: Values
|
840
|
+
- :rename: Filters
|
841
|
+
:output:
|
842
|
+
- subnetSet:
|
843
|
+
- :list: item
|
844
|
+
- item:
|
845
|
+
- availableIpAddressCount:
|
846
|
+
- :integer
|
847
|
+
- tagSet:
|
848
|
+
- :list: item
|
849
|
+
DescribeVolumes:
|
850
|
+
:input:
|
851
|
+
VolumeId:
|
852
|
+
- :list:
|
853
|
+
- :string
|
854
|
+
- :rename: VolumeIds
|
855
|
+
Filter:
|
856
|
+
- :list:
|
857
|
+
- :structure:
|
858
|
+
Name:
|
859
|
+
- :string
|
860
|
+
Value:
|
861
|
+
- :list:
|
862
|
+
- :string
|
863
|
+
- :rename: Values
|
864
|
+
- :rename: filters
|
865
|
+
:output:
|
866
|
+
- volumeSet:
|
867
|
+
- :list: item
|
868
|
+
- item:
|
869
|
+
- size:
|
870
|
+
- :integer
|
871
|
+
- createTime:
|
872
|
+
- :timestamp
|
873
|
+
- attachmentSet:
|
874
|
+
- :list: item
|
875
|
+
- item:
|
876
|
+
- attachTime:
|
877
|
+
- :timestamp
|
878
|
+
- deleteOnTermination:
|
879
|
+
- :boolean
|
880
|
+
- tagSet:
|
881
|
+
- :list: item
|
882
|
+
DescribeVpcs:
|
883
|
+
:input:
|
884
|
+
VpcId:
|
885
|
+
- :list:
|
886
|
+
- :string
|
887
|
+
- :rename: VpcIds
|
888
|
+
Filter:
|
889
|
+
- :list:
|
890
|
+
- :structure:
|
891
|
+
Name:
|
892
|
+
- :string
|
893
|
+
Value:
|
894
|
+
- :list:
|
895
|
+
- :string
|
896
|
+
- :rename: Values
|
897
|
+
- :rename: Filters
|
898
|
+
:output:
|
899
|
+
- vpcSet:
|
900
|
+
- :list: item
|
901
|
+
- item:
|
902
|
+
- tagSet:
|
903
|
+
- :list: item
|
904
|
+
DescribeVpnConnections:
|
905
|
+
:input:
|
906
|
+
VpnConnectionId:
|
907
|
+
- :list:
|
908
|
+
- :string
|
909
|
+
- :rename: VpnConnectionIds
|
910
|
+
Filter:
|
911
|
+
- :list:
|
912
|
+
- :structure:
|
913
|
+
Name:
|
914
|
+
- :string
|
915
|
+
Value:
|
916
|
+
- :list:
|
917
|
+
- :string
|
918
|
+
- :rename: Values
|
919
|
+
- :rename: Filters
|
920
|
+
:output:
|
921
|
+
- vpnConnectionSet:
|
922
|
+
- :list: item
|
923
|
+
- item:
|
924
|
+
- tagSet:
|
925
|
+
- :list: item
|
926
|
+
DescribeVpnGateways:
|
927
|
+
:input:
|
928
|
+
VpnGatewayId:
|
929
|
+
- :list:
|
930
|
+
- :string
|
931
|
+
- :rename: VpnGatewayIds
|
932
|
+
Filter:
|
933
|
+
- :list:
|
934
|
+
- :structure:
|
935
|
+
Name:
|
936
|
+
- :string
|
937
|
+
Value:
|
938
|
+
- :list:
|
939
|
+
- :string
|
940
|
+
- :rename: Values
|
941
|
+
- :rename: Filters
|
942
|
+
:output:
|
943
|
+
- vpnGatewaySet:
|
944
|
+
- :list: item
|
945
|
+
- item:
|
946
|
+
- attachments:
|
947
|
+
- :list: item
|
948
|
+
- tagSet:
|
949
|
+
- :list: item
|
950
|
+
DetachVolume:
|
951
|
+
:input:
|
952
|
+
VolumeId:
|
953
|
+
- :string
|
954
|
+
- :required
|
955
|
+
InstanceId:
|
956
|
+
- :string
|
957
|
+
Device:
|
958
|
+
- :string
|
959
|
+
Force:
|
960
|
+
- :boolean
|
961
|
+
:output:
|
962
|
+
- attachTime:
|
963
|
+
- :timestamp
|
964
|
+
- deleteOnTermination:
|
965
|
+
- :boolean
|
966
|
+
DetachVpnGateway:
|
967
|
+
:input:
|
968
|
+
VpnGatewayId:
|
969
|
+
- :string
|
970
|
+
- :required
|
971
|
+
VpcId:
|
972
|
+
- :string
|
973
|
+
- :required
|
974
|
+
:output: []
|
975
|
+
|
976
|
+
DisassociateAddress:
|
977
|
+
:input:
|
978
|
+
PublicIp:
|
979
|
+
- :string
|
980
|
+
- :required
|
981
|
+
AssociationId:
|
982
|
+
- :string
|
983
|
+
:output: []
|
984
|
+
|
985
|
+
GetConsoleOutput:
|
986
|
+
:input:
|
987
|
+
InstanceId:
|
988
|
+
- :string
|
989
|
+
- :required
|
990
|
+
:output:
|
991
|
+
- timestamp:
|
992
|
+
- :timestamp
|
993
|
+
GetPasswordData:
|
994
|
+
:input:
|
995
|
+
InstanceId:
|
996
|
+
- :string
|
997
|
+
- :required
|
998
|
+
:output:
|
999
|
+
- timestamp:
|
1000
|
+
- :timestamp
|
1001
|
+
ImportKeyPair:
|
1002
|
+
:input:
|
1003
|
+
KeyName:
|
1004
|
+
- :string
|
1005
|
+
- :required
|
1006
|
+
PublicKeyMaterial:
|
1007
|
+
- :string
|
1008
|
+
- :required
|
1009
|
+
:output: []
|
1010
|
+
|
1011
|
+
ModifyImageAttribute:
|
1012
|
+
:input:
|
1013
|
+
ImageId:
|
1014
|
+
- :string
|
1015
|
+
- :required
|
1016
|
+
Attribute:
|
1017
|
+
- :string
|
1018
|
+
OperationType:
|
1019
|
+
- :string
|
1020
|
+
UserId:
|
1021
|
+
- :list:
|
1022
|
+
- :string
|
1023
|
+
- :rename: UserIds
|
1024
|
+
UserGroup:
|
1025
|
+
- :list:
|
1026
|
+
- :string
|
1027
|
+
- :rename: UserGroups
|
1028
|
+
ProductCode:
|
1029
|
+
- :list:
|
1030
|
+
- :string
|
1031
|
+
- :rename: ProductCodes
|
1032
|
+
Value:
|
1033
|
+
- :string
|
1034
|
+
LaunchPermission:
|
1035
|
+
- :structure:
|
1036
|
+
Add:
|
1037
|
+
- :list:
|
1038
|
+
- :structure:
|
1039
|
+
UserId:
|
1040
|
+
- :string
|
1041
|
+
- :rename: UserId
|
1042
|
+
Group:
|
1043
|
+
- :string
|
1044
|
+
- :rename: Group
|
1045
|
+
Remove:
|
1046
|
+
- :list:
|
1047
|
+
- :structure:
|
1048
|
+
UserId:
|
1049
|
+
- :string
|
1050
|
+
- :rename: UserId
|
1051
|
+
Group:
|
1052
|
+
- :string
|
1053
|
+
- :rename: Group
|
1054
|
+
Description:
|
1055
|
+
- :structure:
|
1056
|
+
Value:
|
1057
|
+
- :string
|
1058
|
+
:output: []
|
1059
|
+
|
1060
|
+
ModifySnapshotAttribute:
|
1061
|
+
:input:
|
1062
|
+
SnapshotId:
|
1063
|
+
- :string
|
1064
|
+
- :required
|
1065
|
+
Attribute:
|
1066
|
+
- :string
|
1067
|
+
OperationType:
|
1068
|
+
- :string
|
1069
|
+
UserId:
|
1070
|
+
- :list:
|
1071
|
+
- :string
|
1072
|
+
- :rename: UserIds
|
1073
|
+
UserGroup:
|
1074
|
+
- :list:
|
1075
|
+
- :string
|
1076
|
+
- :rename: GroupNames
|
1077
|
+
CreateVolumePermission:
|
1078
|
+
- :structure:
|
1079
|
+
Add:
|
1080
|
+
- :list:
|
1081
|
+
- :structure:
|
1082
|
+
UserId:
|
1083
|
+
- :string
|
1084
|
+
- :rename: UserId
|
1085
|
+
Group:
|
1086
|
+
- :string
|
1087
|
+
- :rename: Group
|
1088
|
+
Remove:
|
1089
|
+
- :list:
|
1090
|
+
- :structure:
|
1091
|
+
UserId:
|
1092
|
+
- :string
|
1093
|
+
- :rename: UserId
|
1094
|
+
Group:
|
1095
|
+
- :string
|
1096
|
+
- :rename: Group
|
1097
|
+
:output: []
|
1098
|
+
|
1099
|
+
MonitorInstances:
|
1100
|
+
:input:
|
1101
|
+
InstanceId:
|
1102
|
+
- :list:
|
1103
|
+
- :string
|
1104
|
+
- :required
|
1105
|
+
- :rename: InstanceIds
|
1106
|
+
:output:
|
1107
|
+
- instancesSet:
|
1108
|
+
- :list: item
|
1109
|
+
PurchaseReservedInstancesOffering:
|
1110
|
+
:input:
|
1111
|
+
ReservedInstancesOfferingId:
|
1112
|
+
- :string
|
1113
|
+
- :required
|
1114
|
+
InstanceCount:
|
1115
|
+
- :integer
|
1116
|
+
- :required
|
1117
|
+
:output: []
|
1118
|
+
|
1119
|
+
RebootInstances:
|
1120
|
+
:input:
|
1121
|
+
InstanceId:
|
1122
|
+
- :list:
|
1123
|
+
- :string
|
1124
|
+
- :required
|
1125
|
+
- :rename: InstanceIds
|
1126
|
+
:output: []
|
1127
|
+
|
1128
|
+
RegisterImage:
|
1129
|
+
:input:
|
1130
|
+
ImageLocation:
|
1131
|
+
- :string
|
1132
|
+
Name:
|
1133
|
+
- :string
|
1134
|
+
Description:
|
1135
|
+
- :string
|
1136
|
+
Architecture:
|
1137
|
+
- :string
|
1138
|
+
KernelId:
|
1139
|
+
- :string
|
1140
|
+
RamdiskId:
|
1141
|
+
- :string
|
1142
|
+
RootDeviceName:
|
1143
|
+
- :string
|
1144
|
+
BlockDeviceMapping:
|
1145
|
+
- :list:
|
1146
|
+
- :structure:
|
1147
|
+
VirtualName:
|
1148
|
+
- :string
|
1149
|
+
- :rename: VirtualName
|
1150
|
+
DeviceName:
|
1151
|
+
- :string
|
1152
|
+
- :rename: DeviceName
|
1153
|
+
Ebs:
|
1154
|
+
- :structure:
|
1155
|
+
SnapshotId:
|
1156
|
+
- :string
|
1157
|
+
VolumeSize:
|
1158
|
+
- :integer
|
1159
|
+
DeleteOnTermination:
|
1160
|
+
- :boolean
|
1161
|
+
NoDevice:
|
1162
|
+
- :string
|
1163
|
+
- :rename: blockDeviceMappings
|
1164
|
+
:output: []
|
1165
|
+
|
1166
|
+
ReleaseAddress:
|
1167
|
+
:input:
|
1168
|
+
PublicIp:
|
1169
|
+
- :string
|
1170
|
+
AllocationId:
|
1171
|
+
- :string
|
1172
|
+
:output: []
|
1173
|
+
|
1174
|
+
ResetImageAttribute:
|
1175
|
+
:input:
|
1176
|
+
ImageId:
|
1177
|
+
- :string
|
1178
|
+
- :required
|
1179
|
+
Attribute:
|
1180
|
+
- :string
|
1181
|
+
- :required
|
1182
|
+
:output: []
|
1183
|
+
|
1184
|
+
ResetSnapshotAttribute:
|
1185
|
+
:input:
|
1186
|
+
SnapshotId:
|
1187
|
+
- :string
|
1188
|
+
- :required
|
1189
|
+
Attribute:
|
1190
|
+
- :string
|
1191
|
+
- :required
|
1192
|
+
:output: []
|
1193
|
+
|
1194
|
+
RevokeSecurityGroupIngress:
|
1195
|
+
:input:
|
1196
|
+
GroupName:
|
1197
|
+
- :string
|
1198
|
+
GroupId:
|
1199
|
+
- :string
|
1200
|
+
SourceSecurityGroupName:
|
1201
|
+
- :string
|
1202
|
+
SourceSecurityGroupOwnerId:
|
1203
|
+
- :string
|
1204
|
+
IpProtocol:
|
1205
|
+
- :string
|
1206
|
+
FromPort:
|
1207
|
+
- :integer
|
1208
|
+
ToPort:
|
1209
|
+
- :integer
|
1210
|
+
CidrIp:
|
1211
|
+
- :string
|
1212
|
+
IpPermissions:
|
1213
|
+
- :list:
|
1214
|
+
- :structure:
|
1215
|
+
IpProtocol:
|
1216
|
+
- :string
|
1217
|
+
- :rename: IpProtocol
|
1218
|
+
FromPort:
|
1219
|
+
- :integer
|
1220
|
+
- :rename: FromPort
|
1221
|
+
ToPort:
|
1222
|
+
- :integer
|
1223
|
+
- :rename: ToPort
|
1224
|
+
Groups:
|
1225
|
+
- :list:
|
1226
|
+
- :structure:
|
1227
|
+
UserId:
|
1228
|
+
- :string
|
1229
|
+
- :rename: UserId
|
1230
|
+
GroupName:
|
1231
|
+
- :string
|
1232
|
+
- :rename: GroupName
|
1233
|
+
GroupId:
|
1234
|
+
- :string
|
1235
|
+
- :rename: GroupId
|
1236
|
+
- :rename: UserIdGroupPairs
|
1237
|
+
IpRanges:
|
1238
|
+
- :list:
|
1239
|
+
- :structure:
|
1240
|
+
CidrIp:
|
1241
|
+
- :string
|
1242
|
+
- :rename: CidrIp
|
1243
|
+
- :rename: IpRanges
|
1244
|
+
:output: []
|
1245
|
+
|
1246
|
+
RunInstances:
|
1247
|
+
:input:
|
1248
|
+
ImageId:
|
1249
|
+
- :string
|
1250
|
+
- :required
|
1251
|
+
MinCount:
|
1252
|
+
- :integer
|
1253
|
+
- :required
|
1254
|
+
MaxCount:
|
1255
|
+
- :integer
|
1256
|
+
- :required
|
1257
|
+
KeyName:
|
1258
|
+
- :string
|
1259
|
+
SecurityGroup:
|
1260
|
+
- :list:
|
1261
|
+
- :string
|
1262
|
+
- :rename: SecurityGroups
|
1263
|
+
SecurityGroupId:
|
1264
|
+
- :list:
|
1265
|
+
- :string
|
1266
|
+
- :rename: SecurityGroupIds
|
1267
|
+
UserData:
|
1268
|
+
- :string
|
1269
|
+
InstanceType:
|
1270
|
+
- :string
|
1271
|
+
Placement:
|
1272
|
+
- :structure:
|
1273
|
+
AvailabilityZone:
|
1274
|
+
- :string
|
1275
|
+
- :rename: AvailabilityZone
|
1276
|
+
GroupName:
|
1277
|
+
- :string
|
1278
|
+
Tenancy:
|
1279
|
+
- :string
|
1280
|
+
KernelId:
|
1281
|
+
- :string
|
1282
|
+
RamdiskId:
|
1283
|
+
- :string
|
1284
|
+
BlockDeviceMapping:
|
1285
|
+
- :list:
|
1286
|
+
- :structure:
|
1287
|
+
VirtualName:
|
1288
|
+
- :string
|
1289
|
+
- :rename: VirtualName
|
1290
|
+
DeviceName:
|
1291
|
+
- :string
|
1292
|
+
- :rename: DeviceName
|
1293
|
+
Ebs:
|
1294
|
+
- :structure:
|
1295
|
+
SnapshotId:
|
1296
|
+
- :string
|
1297
|
+
VolumeSize:
|
1298
|
+
- :integer
|
1299
|
+
DeleteOnTermination:
|
1300
|
+
- :boolean
|
1301
|
+
NoDevice:
|
1302
|
+
- :string
|
1303
|
+
- :rename: BlockDeviceMappings
|
1304
|
+
Monitoring:
|
1305
|
+
- :structure:
|
1306
|
+
Enabled:
|
1307
|
+
- :boolean
|
1308
|
+
- :required
|
1309
|
+
SubnetId:
|
1310
|
+
- :string
|
1311
|
+
DisableApiTermination:
|
1312
|
+
- :boolean
|
1313
|
+
InstanceInitiatedShutdownBehavior:
|
1314
|
+
- :string
|
1315
|
+
License:
|
1316
|
+
- :structure:
|
1317
|
+
Pool:
|
1318
|
+
- :string
|
1319
|
+
PrivateIpAddress:
|
1320
|
+
- :string
|
1321
|
+
ClientToken:
|
1322
|
+
- :string
|
1323
|
+
AdditionalInfo:
|
1324
|
+
- :string
|
1325
|
+
:output:
|
1326
|
+
- groupSet:
|
1327
|
+
- :list: item
|
1328
|
+
- instancesSet:
|
1329
|
+
- :list: item
|
1330
|
+
- item:
|
1331
|
+
- instanceState:
|
1332
|
+
- code:
|
1333
|
+
- :integer
|
1334
|
+
- amiLaunchIndex:
|
1335
|
+
- :integer
|
1336
|
+
- productCodes:
|
1337
|
+
- :list: item
|
1338
|
+
- launchTime:
|
1339
|
+
- :timestamp
|
1340
|
+
- blockDeviceMapping:
|
1341
|
+
- :list: item
|
1342
|
+
- item:
|
1343
|
+
- ebs:
|
1344
|
+
- attachTime:
|
1345
|
+
- :timestamp
|
1346
|
+
- deleteOnTermination:
|
1347
|
+
- :boolean
|
1348
|
+
- tagSet:
|
1349
|
+
- :list: item
|
1350
|
+
- groupSet:
|
1351
|
+
- :list: item
|
1352
|
+
- sourceDestCheck:
|
1353
|
+
- :boolean
|
1354
|
+
TerminateInstances:
|
1355
|
+
:input:
|
1356
|
+
InstanceId:
|
1357
|
+
- :list:
|
1358
|
+
- :string
|
1359
|
+
- :required
|
1360
|
+
- :rename: InstanceIds
|
1361
|
+
:output:
|
1362
|
+
- instancesSet:
|
1363
|
+
- :list: item
|
1364
|
+
- item:
|
1365
|
+
- currentState:
|
1366
|
+
- code:
|
1367
|
+
- :integer
|
1368
|
+
- previousState:
|
1369
|
+
- code:
|
1370
|
+
- :integer
|
1371
|
+
UnmonitorInstances:
|
1372
|
+
:input:
|
1373
|
+
InstanceId:
|
1374
|
+
- :list:
|
1375
|
+
- :string
|
1376
|
+
- :required
|
1377
|
+
- :rename: InstanceIds
|
1378
|
+
:output:
|
1379
|
+
- instancesSet:
|
1380
|
+
- :list: item
|
1381
|
+
CreateImage:
|
1382
|
+
:input:
|
1383
|
+
InstanceId:
|
1384
|
+
- :string
|
1385
|
+
- :required
|
1386
|
+
Name:
|
1387
|
+
- :string
|
1388
|
+
- :required
|
1389
|
+
Description:
|
1390
|
+
- :string
|
1391
|
+
NoReboot:
|
1392
|
+
- :boolean
|
1393
|
+
:output: []
|
1394
|
+
|
1395
|
+
StartInstances:
|
1396
|
+
:input:
|
1397
|
+
InstanceId:
|
1398
|
+
- :list:
|
1399
|
+
- :string
|
1400
|
+
- :required
|
1401
|
+
- :rename: InstanceIds
|
1402
|
+
:output:
|
1403
|
+
- instancesSet:
|
1404
|
+
- :list: item
|
1405
|
+
- item:
|
1406
|
+
- currentState:
|
1407
|
+
- code:
|
1408
|
+
- :integer
|
1409
|
+
- previousState:
|
1410
|
+
- code:
|
1411
|
+
- :integer
|
1412
|
+
StopInstances:
|
1413
|
+
:input:
|
1414
|
+
InstanceId:
|
1415
|
+
- :list:
|
1416
|
+
- :string
|
1417
|
+
- :required
|
1418
|
+
- :rename: InstanceIds
|
1419
|
+
Force:
|
1420
|
+
- :boolean
|
1421
|
+
:output:
|
1422
|
+
- instancesSet:
|
1423
|
+
- :list: item
|
1424
|
+
- item:
|
1425
|
+
- currentState:
|
1426
|
+
- code:
|
1427
|
+
- :integer
|
1428
|
+
- previousState:
|
1429
|
+
- code:
|
1430
|
+
- :integer
|
1431
|
+
DescribeInstanceAttribute:
|
1432
|
+
:input:
|
1433
|
+
InstanceId:
|
1434
|
+
- :string
|
1435
|
+
- :required
|
1436
|
+
Attribute:
|
1437
|
+
- :string
|
1438
|
+
- :required
|
1439
|
+
:output:
|
1440
|
+
- disableApiTermination:
|
1441
|
+
- value:
|
1442
|
+
- :boolean
|
1443
|
+
- blockDeviceMapping:
|
1444
|
+
- :list: item
|
1445
|
+
- item:
|
1446
|
+
- ebs:
|
1447
|
+
- attachTime:
|
1448
|
+
- :timestamp
|
1449
|
+
- deleteOnTermination:
|
1450
|
+
- :boolean
|
1451
|
+
ModifyInstanceAttribute:
|
1452
|
+
:input:
|
1453
|
+
InstanceId:
|
1454
|
+
- :string
|
1455
|
+
- :required
|
1456
|
+
Attribute:
|
1457
|
+
- :string
|
1458
|
+
Value:
|
1459
|
+
- :string
|
1460
|
+
BlockDeviceMapping:
|
1461
|
+
- :list:
|
1462
|
+
- :structure:
|
1463
|
+
DeviceName:
|
1464
|
+
- :string
|
1465
|
+
Ebs:
|
1466
|
+
- :structure:
|
1467
|
+
VolumeId:
|
1468
|
+
- :string
|
1469
|
+
DeleteOnTermination:
|
1470
|
+
- :boolean
|
1471
|
+
VirtualName:
|
1472
|
+
- :string
|
1473
|
+
NoDevice:
|
1474
|
+
- :string
|
1475
|
+
- :rename: blockDeviceMappings
|
1476
|
+
SourceDestCheck:
|
1477
|
+
- :structure:
|
1478
|
+
Value:
|
1479
|
+
- :boolean
|
1480
|
+
DisableApiTermination:
|
1481
|
+
- :structure:
|
1482
|
+
Value:
|
1483
|
+
- :boolean
|
1484
|
+
InstanceType:
|
1485
|
+
- :structure:
|
1486
|
+
Value:
|
1487
|
+
- :string
|
1488
|
+
Kernel:
|
1489
|
+
- :structure:
|
1490
|
+
Value:
|
1491
|
+
- :string
|
1492
|
+
Ramdisk:
|
1493
|
+
- :structure:
|
1494
|
+
Value:
|
1495
|
+
- :string
|
1496
|
+
UserData:
|
1497
|
+
- :structure:
|
1498
|
+
Value:
|
1499
|
+
- :string
|
1500
|
+
InstanceInitiatedShutdownBehavior:
|
1501
|
+
- :structure:
|
1502
|
+
Value:
|
1503
|
+
- :string
|
1504
|
+
GroupId:
|
1505
|
+
- :list:
|
1506
|
+
- :string
|
1507
|
+
- :rename: groups
|
1508
|
+
:output: []
|
1509
|
+
|
1510
|
+
ResetInstanceAttribute:
|
1511
|
+
:input:
|
1512
|
+
InstanceId:
|
1513
|
+
- :string
|
1514
|
+
- :required
|
1515
|
+
Attribute:
|
1516
|
+
- :string
|
1517
|
+
- :required
|
1518
|
+
:output: []
|
1519
|
+
|
1520
|
+
RequestSpotInstances:
|
1521
|
+
:input:
|
1522
|
+
SpotPrice:
|
1523
|
+
- :string
|
1524
|
+
- :required
|
1525
|
+
InstanceCount:
|
1526
|
+
- :integer
|
1527
|
+
Type:
|
1528
|
+
- :string
|
1529
|
+
ValidFrom:
|
1530
|
+
- :timestamp
|
1531
|
+
ValidUntil:
|
1532
|
+
- :timestamp
|
1533
|
+
LaunchGroup:
|
1534
|
+
- :string
|
1535
|
+
AvailabilityZoneGroup:
|
1536
|
+
- :string
|
1537
|
+
LaunchSpecification:
|
1538
|
+
- :structure:
|
1539
|
+
ImageId:
|
1540
|
+
- :string
|
1541
|
+
KeyName:
|
1542
|
+
- :string
|
1543
|
+
GroupSet:
|
1544
|
+
- :list:
|
1545
|
+
- :structure:
|
1546
|
+
GroupName:
|
1547
|
+
- :string
|
1548
|
+
- :rename: GroupName
|
1549
|
+
GroupId:
|
1550
|
+
- :string
|
1551
|
+
- :rename: SecurityGroups
|
1552
|
+
UserData:
|
1553
|
+
- :string
|
1554
|
+
AddressingType:
|
1555
|
+
- :string
|
1556
|
+
InstanceType:
|
1557
|
+
- :string
|
1558
|
+
Placement:
|
1559
|
+
- :structure:
|
1560
|
+
AvailabilityZone:
|
1561
|
+
- :string
|
1562
|
+
GroupName:
|
1563
|
+
- :string
|
1564
|
+
KernelId:
|
1565
|
+
- :string
|
1566
|
+
RamdiskId:
|
1567
|
+
- :string
|
1568
|
+
BlockDeviceMapping:
|
1569
|
+
- :list:
|
1570
|
+
- :structure:
|
1571
|
+
VirtualName:
|
1572
|
+
- :string
|
1573
|
+
- :rename: VirtualName
|
1574
|
+
DeviceName:
|
1575
|
+
- :string
|
1576
|
+
- :rename: DeviceName
|
1577
|
+
Ebs:
|
1578
|
+
- :structure:
|
1579
|
+
SnapshotId:
|
1580
|
+
- :string
|
1581
|
+
VolumeSize:
|
1582
|
+
- :integer
|
1583
|
+
DeleteOnTermination:
|
1584
|
+
- :boolean
|
1585
|
+
NoDevice:
|
1586
|
+
- :string
|
1587
|
+
- :rename: blockDeviceMappings
|
1588
|
+
MonitoringEnabled:
|
1589
|
+
- :boolean
|
1590
|
+
SubnetId:
|
1591
|
+
- :string
|
1592
|
+
:output:
|
1593
|
+
- spotInstanceRequestSet:
|
1594
|
+
- :list: item
|
1595
|
+
- item:
|
1596
|
+
- validFrom:
|
1597
|
+
- :timestamp
|
1598
|
+
- validUntil:
|
1599
|
+
- :timestamp
|
1600
|
+
- launchSpecification:
|
1601
|
+
- groupSet:
|
1602
|
+
- :list: item
|
1603
|
+
- blockDeviceMapping:
|
1604
|
+
- :list: item
|
1605
|
+
- item:
|
1606
|
+
- ebs:
|
1607
|
+
- volumeSize:
|
1608
|
+
- :integer
|
1609
|
+
- deleteOnTermination:
|
1610
|
+
- :boolean
|
1611
|
+
- monitoringEnabled:
|
1612
|
+
- :boolean
|
1613
|
+
- createTime:
|
1614
|
+
- :timestamp
|
1615
|
+
- tagSet:
|
1616
|
+
- :list: item
|
1617
|
+
DescribeSpotInstanceRequests:
|
1618
|
+
:input:
|
1619
|
+
SpotInstanceRequestId:
|
1620
|
+
- :list:
|
1621
|
+
- :string
|
1622
|
+
- :rename: spotInstanceRequestIds
|
1623
|
+
Filter:
|
1624
|
+
- :list:
|
1625
|
+
- :structure:
|
1626
|
+
Name:
|
1627
|
+
- :string
|
1628
|
+
Value:
|
1629
|
+
- :list:
|
1630
|
+
- :string
|
1631
|
+
- :rename: Values
|
1632
|
+
- :rename: filters
|
1633
|
+
:output:
|
1634
|
+
- spotInstanceRequestSet:
|
1635
|
+
- :list: item
|
1636
|
+
- item:
|
1637
|
+
- validFrom:
|
1638
|
+
- :timestamp
|
1639
|
+
- validUntil:
|
1640
|
+
- :timestamp
|
1641
|
+
- launchSpecification:
|
1642
|
+
- groupSet:
|
1643
|
+
- :list: item
|
1644
|
+
- blockDeviceMapping:
|
1645
|
+
- :list: item
|
1646
|
+
- item:
|
1647
|
+
- ebs:
|
1648
|
+
- volumeSize:
|
1649
|
+
- :integer
|
1650
|
+
- deleteOnTermination:
|
1651
|
+
- :boolean
|
1652
|
+
- monitoringEnabled:
|
1653
|
+
- :boolean
|
1654
|
+
- createTime:
|
1655
|
+
- :timestamp
|
1656
|
+
- tagSet:
|
1657
|
+
- :list: item
|
1658
|
+
CancelSpotInstanceRequests:
|
1659
|
+
:input:
|
1660
|
+
SpotInstanceRequestId:
|
1661
|
+
- :list:
|
1662
|
+
- :string
|
1663
|
+
- :required
|
1664
|
+
- :rename: spotInstanceRequestIds
|
1665
|
+
:output:
|
1666
|
+
- spotInstanceRequestSet:
|
1667
|
+
- :list: item
|
1668
|
+
DescribeSpotPriceHistory:
|
1669
|
+
:input:
|
1670
|
+
StartTime:
|
1671
|
+
- :timestamp
|
1672
|
+
EndTime:
|
1673
|
+
- :timestamp
|
1674
|
+
InstanceType:
|
1675
|
+
- :list:
|
1676
|
+
- :string
|
1677
|
+
- :rename: instanceTypes
|
1678
|
+
ProductDescription:
|
1679
|
+
- :list:
|
1680
|
+
- :string
|
1681
|
+
- :rename: productDescriptions
|
1682
|
+
Filter:
|
1683
|
+
- :list:
|
1684
|
+
- :structure:
|
1685
|
+
Name:
|
1686
|
+
- :string
|
1687
|
+
Value:
|
1688
|
+
- :list:
|
1689
|
+
- :string
|
1690
|
+
- :rename: Values
|
1691
|
+
- :rename: filters
|
1692
|
+
AvailabilityZone:
|
1693
|
+
- :string
|
1694
|
+
MaxResults:
|
1695
|
+
- :integer
|
1696
|
+
NextToken:
|
1697
|
+
- :string
|
1698
|
+
:output:
|
1699
|
+
- spotPriceHistorySet:
|
1700
|
+
- :list: item
|
1701
|
+
- item:
|
1702
|
+
- timestamp:
|
1703
|
+
- :timestamp
|
1704
|
+
CreateSpotDatafeedSubscription:
|
1705
|
+
:input:
|
1706
|
+
Bucket:
|
1707
|
+
- :string
|
1708
|
+
- :required
|
1709
|
+
Prefix:
|
1710
|
+
- :string
|
1711
|
+
:output: []
|
1712
|
+
|
1713
|
+
DescribeSpotDatafeedSubscription:
|
1714
|
+
:input: {}
|
1715
|
+
|
1716
|
+
:output: []
|
1717
|
+
|
1718
|
+
DeleteSpotDatafeedSubscription:
|
1719
|
+
:input: {}
|
1720
|
+
|
1721
|
+
:output: []
|
1722
|
+
|
1723
|
+
DescribeLicenses:
|
1724
|
+
:input:
|
1725
|
+
LicenseId:
|
1726
|
+
- :list:
|
1727
|
+
- :string
|
1728
|
+
- :rename: licenseIds
|
1729
|
+
Filter:
|
1730
|
+
- :list:
|
1731
|
+
- :structure:
|
1732
|
+
Name:
|
1733
|
+
- :string
|
1734
|
+
Value:
|
1735
|
+
- :list:
|
1736
|
+
- :string
|
1737
|
+
- :rename: Values
|
1738
|
+
- :rename: filters
|
1739
|
+
:output:
|
1740
|
+
- licenseSet:
|
1741
|
+
- :list: item
|
1742
|
+
- item:
|
1743
|
+
- capacitySet:
|
1744
|
+
- :list: item
|
1745
|
+
- item:
|
1746
|
+
- capacity:
|
1747
|
+
- :integer
|
1748
|
+
- instanceCapacity:
|
1749
|
+
- :integer
|
1750
|
+
- earliestAllowedDeactivationTime:
|
1751
|
+
- :timestamp
|
1752
|
+
- tagSet:
|
1753
|
+
- :list: item
|
1754
|
+
ActivateLicense:
|
1755
|
+
:input:
|
1756
|
+
LicenseId:
|
1757
|
+
- :string
|
1758
|
+
- :required
|
1759
|
+
Capacity:
|
1760
|
+
- :integer
|
1761
|
+
- :required
|
1762
|
+
:output: []
|
1763
|
+
|
1764
|
+
DeactivateLicense:
|
1765
|
+
:input:
|
1766
|
+
LicenseId:
|
1767
|
+
- :string
|
1768
|
+
- :required
|
1769
|
+
Capacity:
|
1770
|
+
- :integer
|
1771
|
+
- :required
|
1772
|
+
:output: []
|
1773
|
+
|
1774
|
+
CreatePlacementGroup:
|
1775
|
+
:input:
|
1776
|
+
GroupName:
|
1777
|
+
- :string
|
1778
|
+
- :required
|
1779
|
+
Strategy:
|
1780
|
+
- :string
|
1781
|
+
- :required
|
1782
|
+
:output: []
|
1783
|
+
|
1784
|
+
DeletePlacementGroup:
|
1785
|
+
:input:
|
1786
|
+
GroupName:
|
1787
|
+
- :string
|
1788
|
+
- :required
|
1789
|
+
:output: []
|
1790
|
+
|
1791
|
+
DescribePlacementGroups:
|
1792
|
+
:input:
|
1793
|
+
GroupName:
|
1794
|
+
- :list:
|
1795
|
+
- :string
|
1796
|
+
- :rename: groupNames
|
1797
|
+
Filter:
|
1798
|
+
- :list:
|
1799
|
+
- :structure:
|
1800
|
+
Name:
|
1801
|
+
- :string
|
1802
|
+
Value:
|
1803
|
+
- :list:
|
1804
|
+
- :string
|
1805
|
+
- :rename: Values
|
1806
|
+
- :rename: filters
|
1807
|
+
:output:
|
1808
|
+
- placementGroupSet:
|
1809
|
+
- :list: item
|
1810
|
+
CreateTags:
|
1811
|
+
:input:
|
1812
|
+
ResourceId:
|
1813
|
+
- :list:
|
1814
|
+
- :string
|
1815
|
+
- :required
|
1816
|
+
- :rename: resources
|
1817
|
+
Tag:
|
1818
|
+
- :list:
|
1819
|
+
- :structure:
|
1820
|
+
Key:
|
1821
|
+
- :string
|
1822
|
+
Value:
|
1823
|
+
- :string
|
1824
|
+
- :required
|
1825
|
+
- :rename: tags
|
1826
|
+
:output: []
|
1827
|
+
|
1828
|
+
DescribeTags:
|
1829
|
+
:input:
|
1830
|
+
Filter:
|
1831
|
+
- :list:
|
1832
|
+
- :structure:
|
1833
|
+
Name:
|
1834
|
+
- :string
|
1835
|
+
Value:
|
1836
|
+
- :list:
|
1837
|
+
- :string
|
1838
|
+
- :rename: Values
|
1839
|
+
- :rename: filters
|
1840
|
+
:output:
|
1841
|
+
- tagSet:
|
1842
|
+
- :list: item
|
1843
|
+
DeleteTags:
|
1844
|
+
:input:
|
1845
|
+
ResourceId:
|
1846
|
+
- :list:
|
1847
|
+
- :string
|
1848
|
+
- :required
|
1849
|
+
- :rename: resources
|
1850
|
+
Tag:
|
1851
|
+
- :list:
|
1852
|
+
- :structure:
|
1853
|
+
Key:
|
1854
|
+
- :string
|
1855
|
+
Value:
|
1856
|
+
- :string
|
1857
|
+
- :rename: tags
|
1858
|
+
:output: []
|
1859
|
+
|
1860
|
+
AuthorizeSecurityGroupEgress:
|
1861
|
+
:input:
|
1862
|
+
GroupId:
|
1863
|
+
- :string
|
1864
|
+
- :required
|
1865
|
+
SourceSecurityGroupName:
|
1866
|
+
- :string
|
1867
|
+
SourceSecurityGroupOwnerId:
|
1868
|
+
- :string
|
1869
|
+
IpProtocol:
|
1870
|
+
- :string
|
1871
|
+
FromPort:
|
1872
|
+
- :integer
|
1873
|
+
ToPort:
|
1874
|
+
- :integer
|
1875
|
+
CidrIp:
|
1876
|
+
- :string
|
1877
|
+
IpPermissions:
|
1878
|
+
- :list:
|
1879
|
+
- :structure:
|
1880
|
+
IpProtocol:
|
1881
|
+
- :string
|
1882
|
+
- :rename: IpProtocol
|
1883
|
+
FromPort:
|
1884
|
+
- :integer
|
1885
|
+
- :rename: FromPort
|
1886
|
+
ToPort:
|
1887
|
+
- :integer
|
1888
|
+
- :rename: ToPort
|
1889
|
+
Groups:
|
1890
|
+
- :list:
|
1891
|
+
- :structure:
|
1892
|
+
UserId:
|
1893
|
+
- :string
|
1894
|
+
- :rename: UserId
|
1895
|
+
GroupName:
|
1896
|
+
- :string
|
1897
|
+
- :rename: GroupName
|
1898
|
+
GroupId:
|
1899
|
+
- :string
|
1900
|
+
- :rename: GroupId
|
1901
|
+
- :rename: UserIdGroupPairs
|
1902
|
+
IpRanges:
|
1903
|
+
- :list:
|
1904
|
+
- :structure:
|
1905
|
+
CidrIp:
|
1906
|
+
- :string
|
1907
|
+
- :rename: CidrIp
|
1908
|
+
- :rename: IpRanges
|
1909
|
+
:output: []
|
1910
|
+
|
1911
|
+
RevokeSecurityGroupEgress:
|
1912
|
+
:input:
|
1913
|
+
GroupId:
|
1914
|
+
- :string
|
1915
|
+
- :required
|
1916
|
+
SourceSecurityGroupName:
|
1917
|
+
- :string
|
1918
|
+
SourceSecurityGroupOwnerId:
|
1919
|
+
- :string
|
1920
|
+
IpProtocol:
|
1921
|
+
- :string
|
1922
|
+
FromPort:
|
1923
|
+
- :integer
|
1924
|
+
ToPort:
|
1925
|
+
- :integer
|
1926
|
+
CidrIp:
|
1927
|
+
- :string
|
1928
|
+
IpPermissions:
|
1929
|
+
- :list:
|
1930
|
+
- :structure:
|
1931
|
+
IpProtocol:
|
1932
|
+
- :string
|
1933
|
+
- :rename: IpProtocol
|
1934
|
+
FromPort:
|
1935
|
+
- :integer
|
1936
|
+
- :rename: FromPort
|
1937
|
+
ToPort:
|
1938
|
+
- :integer
|
1939
|
+
- :rename: ToPort
|
1940
|
+
Groups:
|
1941
|
+
- :list:
|
1942
|
+
- :structure:
|
1943
|
+
UserId:
|
1944
|
+
- :string
|
1945
|
+
- :rename: UserId
|
1946
|
+
GroupName:
|
1947
|
+
- :string
|
1948
|
+
- :rename: GroupName
|
1949
|
+
GroupId:
|
1950
|
+
- :string
|
1951
|
+
- :rename: GroupId
|
1952
|
+
- :rename: UserIdGroupPairs
|
1953
|
+
IpRanges:
|
1954
|
+
- :list:
|
1955
|
+
- :structure:
|
1956
|
+
CidrIp:
|
1957
|
+
- :string
|
1958
|
+
- :rename: CidrIp
|
1959
|
+
- :rename: IpRanges
|
1960
|
+
:output: []
|
1961
|
+
|
1962
|
+
CreateInternetGateway:
|
1963
|
+
:input: {}
|
1964
|
+
|
1965
|
+
:output:
|
1966
|
+
- internetGateway:
|
1967
|
+
- attachmentSet:
|
1968
|
+
- :list: item
|
1969
|
+
- tagSet:
|
1970
|
+
- :list: item
|
1971
|
+
DescribeInternetGateways:
|
1972
|
+
:input:
|
1973
|
+
InternetGatewayId:
|
1974
|
+
- :list:
|
1975
|
+
- :string
|
1976
|
+
- :rename: internetGatewayIds
|
1977
|
+
Filter:
|
1978
|
+
- :list:
|
1979
|
+
- :structure:
|
1980
|
+
Name:
|
1981
|
+
- :string
|
1982
|
+
Value:
|
1983
|
+
- :list:
|
1984
|
+
- :string
|
1985
|
+
- :rename: Values
|
1986
|
+
- :rename: filters
|
1987
|
+
:output:
|
1988
|
+
- internetGatewaySet:
|
1989
|
+
- :list: item
|
1990
|
+
- item:
|
1991
|
+
- attachmentSet:
|
1992
|
+
- :list: item
|
1993
|
+
- tagSet:
|
1994
|
+
- :list: item
|
1995
|
+
DeleteInternetGateway:
|
1996
|
+
:input:
|
1997
|
+
InternetGatewayId:
|
1998
|
+
- :string
|
1999
|
+
- :required
|
2000
|
+
:output: []
|
2001
|
+
|
2002
|
+
AttachInternetGateway:
|
2003
|
+
:input:
|
2004
|
+
InternetGatewayId:
|
2005
|
+
- :string
|
2006
|
+
- :required
|
2007
|
+
VpcId:
|
2008
|
+
- :string
|
2009
|
+
- :required
|
2010
|
+
:output: []
|
2011
|
+
|
2012
|
+
DetachInternetGateway:
|
2013
|
+
:input:
|
2014
|
+
InternetGatewayId:
|
2015
|
+
- :string
|
2016
|
+
- :required
|
2017
|
+
VpcId:
|
2018
|
+
- :string
|
2019
|
+
- :required
|
2020
|
+
:output: []
|
2021
|
+
|
2022
|
+
CreateRouteTable:
|
2023
|
+
:input:
|
2024
|
+
VpcId:
|
2025
|
+
- :string
|
2026
|
+
- :required
|
2027
|
+
:output:
|
2028
|
+
- routeTable:
|
2029
|
+
- routeSet:
|
2030
|
+
- :list: item
|
2031
|
+
- associationSet:
|
2032
|
+
- :list: item
|
2033
|
+
- item:
|
2034
|
+
- main:
|
2035
|
+
- :boolean
|
2036
|
+
- tagSet:
|
2037
|
+
- :list: item
|
2038
|
+
DescribeRouteTables:
|
2039
|
+
:input:
|
2040
|
+
RouteTableId:
|
2041
|
+
- :list:
|
2042
|
+
- :string
|
2043
|
+
- :rename: routeTableIds
|
2044
|
+
Filter:
|
2045
|
+
- :list:
|
2046
|
+
- :structure:
|
2047
|
+
Name:
|
2048
|
+
- :string
|
2049
|
+
Value:
|
2050
|
+
- :list:
|
2051
|
+
- :string
|
2052
|
+
- :rename: Values
|
2053
|
+
- :rename: filters
|
2054
|
+
:output:
|
2055
|
+
- routeTableSet:
|
2056
|
+
- :list: item
|
2057
|
+
- item:
|
2058
|
+
- routeSet:
|
2059
|
+
- :list: item
|
2060
|
+
- associationSet:
|
2061
|
+
- :list: item
|
2062
|
+
- item:
|
2063
|
+
- main:
|
2064
|
+
- :boolean
|
2065
|
+
- tagSet:
|
2066
|
+
- :list: item
|
2067
|
+
DeleteRouteTable:
|
2068
|
+
:input:
|
2069
|
+
RouteTableId:
|
2070
|
+
- :string
|
2071
|
+
- :required
|
2072
|
+
:output: []
|
2073
|
+
|
2074
|
+
AssociateRouteTable:
|
2075
|
+
:input:
|
2076
|
+
SubnetId:
|
2077
|
+
- :string
|
2078
|
+
- :required
|
2079
|
+
RouteTableId:
|
2080
|
+
- :string
|
2081
|
+
- :required
|
2082
|
+
:output: []
|
2083
|
+
|
2084
|
+
ReplaceRouteTableAssociation:
|
2085
|
+
:input:
|
2086
|
+
AssociationId:
|
2087
|
+
- :string
|
2088
|
+
- :required
|
2089
|
+
RouteTableId:
|
2090
|
+
- :string
|
2091
|
+
- :required
|
2092
|
+
:output: []
|
2093
|
+
|
2094
|
+
DisassociateRouteTable:
|
2095
|
+
:input:
|
2096
|
+
AssociationId:
|
2097
|
+
- :string
|
2098
|
+
- :required
|
2099
|
+
:output: []
|
2100
|
+
|
2101
|
+
CreateRoute:
|
2102
|
+
:input:
|
2103
|
+
RouteTableId:
|
2104
|
+
- :string
|
2105
|
+
- :required
|
2106
|
+
DestinationCidrBlock:
|
2107
|
+
- :string
|
2108
|
+
- :required
|
2109
|
+
GatewayId:
|
2110
|
+
- :string
|
2111
|
+
InstanceId:
|
2112
|
+
- :string
|
2113
|
+
:output: []
|
2114
|
+
|
2115
|
+
ReplaceRoute:
|
2116
|
+
:input:
|
2117
|
+
RouteTableId:
|
2118
|
+
- :string
|
2119
|
+
- :required
|
2120
|
+
DestinationCidrBlock:
|
2121
|
+
- :string
|
2122
|
+
- :required
|
2123
|
+
GatewayId:
|
2124
|
+
- :string
|
2125
|
+
InstanceId:
|
2126
|
+
- :string
|
2127
|
+
:output: []
|
2128
|
+
|
2129
|
+
DeleteRoute:
|
2130
|
+
:input:
|
2131
|
+
RouteTableId:
|
2132
|
+
- :string
|
2133
|
+
- :required
|
2134
|
+
DestinationCidrBlock:
|
2135
|
+
- :string
|
2136
|
+
- :required
|
2137
|
+
:output: []
|
2138
|
+
|
2139
|
+
CreateNetworkAcl:
|
2140
|
+
:input:
|
2141
|
+
VpcId:
|
2142
|
+
- :string
|
2143
|
+
- :required
|
2144
|
+
:output:
|
2145
|
+
- networkAcl:
|
2146
|
+
- default:
|
2147
|
+
- :boolean
|
2148
|
+
- entrySet:
|
2149
|
+
- :list: item
|
2150
|
+
- item:
|
2151
|
+
- ruleNumber:
|
2152
|
+
- :integer
|
2153
|
+
- egress:
|
2154
|
+
- :boolean
|
2155
|
+
- icmpTypeCode:
|
2156
|
+
- type:
|
2157
|
+
- :integer
|
2158
|
+
- code:
|
2159
|
+
- :integer
|
2160
|
+
- portRange:
|
2161
|
+
- from:
|
2162
|
+
- :integer
|
2163
|
+
- to:
|
2164
|
+
- :integer
|
2165
|
+
- associationSet:
|
2166
|
+
- :list: item
|
2167
|
+
- tagSet:
|
2168
|
+
- :list: item
|
2169
|
+
DescribeNetworkAcls:
|
2170
|
+
:input:
|
2171
|
+
NetworkAclId:
|
2172
|
+
- :list:
|
2173
|
+
- :string
|
2174
|
+
- :rename: networkAclIds
|
2175
|
+
Filter:
|
2176
|
+
- :list:
|
2177
|
+
- :structure:
|
2178
|
+
Name:
|
2179
|
+
- :string
|
2180
|
+
Value:
|
2181
|
+
- :list:
|
2182
|
+
- :string
|
2183
|
+
- :rename: Values
|
2184
|
+
- :rename: filters
|
2185
|
+
:output:
|
2186
|
+
- networkAclSet:
|
2187
|
+
- :list: item
|
2188
|
+
- item:
|
2189
|
+
- default:
|
2190
|
+
- :boolean
|
2191
|
+
- entrySet:
|
2192
|
+
- :list: item
|
2193
|
+
- item:
|
2194
|
+
- ruleNumber:
|
2195
|
+
- :integer
|
2196
|
+
- egress:
|
2197
|
+
- :boolean
|
2198
|
+
- icmpTypeCode:
|
2199
|
+
- type:
|
2200
|
+
- :integer
|
2201
|
+
- code:
|
2202
|
+
- :integer
|
2203
|
+
- portRange:
|
2204
|
+
- from:
|
2205
|
+
- :integer
|
2206
|
+
- to:
|
2207
|
+
- :integer
|
2208
|
+
- associationSet:
|
2209
|
+
- :list: item
|
2210
|
+
- tagSet:
|
2211
|
+
- :list: item
|
2212
|
+
DeleteNetworkAcl:
|
2213
|
+
:input:
|
2214
|
+
NetworkAclId:
|
2215
|
+
- :string
|
2216
|
+
- :required
|
2217
|
+
:output: []
|
2218
|
+
|
2219
|
+
ReplaceNetworkAclAssociation:
|
2220
|
+
:input:
|
2221
|
+
AssociationId:
|
2222
|
+
- :string
|
2223
|
+
- :required
|
2224
|
+
NetworkAclId:
|
2225
|
+
- :string
|
2226
|
+
- :required
|
2227
|
+
:output: []
|
2228
|
+
|
2229
|
+
CreateNetworkAclEntry:
|
2230
|
+
:input:
|
2231
|
+
NetworkAclId:
|
2232
|
+
- :string
|
2233
|
+
- :required
|
2234
|
+
RuleNumber:
|
2235
|
+
- :integer
|
2236
|
+
- :required
|
2237
|
+
Protocol:
|
2238
|
+
- :string
|
2239
|
+
- :required
|
2240
|
+
RuleAction:
|
2241
|
+
- :string
|
2242
|
+
- :required
|
2243
|
+
Egress:
|
2244
|
+
- :boolean
|
2245
|
+
- :required
|
2246
|
+
CidrBlock:
|
2247
|
+
- :string
|
2248
|
+
- :required
|
2249
|
+
Icmp:
|
2250
|
+
- :structure:
|
2251
|
+
Type:
|
2252
|
+
- :integer
|
2253
|
+
Code:
|
2254
|
+
- :integer
|
2255
|
+
- :rename: icmpTypeCode
|
2256
|
+
PortRange:
|
2257
|
+
- :structure:
|
2258
|
+
From:
|
2259
|
+
- :integer
|
2260
|
+
To:
|
2261
|
+
- :integer
|
2262
|
+
:output: []
|
2263
|
+
|
2264
|
+
ReplaceNetworkAclEntry:
|
2265
|
+
:input:
|
2266
|
+
NetworkAclId:
|
2267
|
+
- :string
|
2268
|
+
- :required
|
2269
|
+
RuleNumber:
|
2270
|
+
- :integer
|
2271
|
+
- :required
|
2272
|
+
Protocol:
|
2273
|
+
- :string
|
2274
|
+
- :required
|
2275
|
+
RuleAction:
|
2276
|
+
- :string
|
2277
|
+
- :required
|
2278
|
+
Egress:
|
2279
|
+
- :boolean
|
2280
|
+
- :required
|
2281
|
+
CidrBlock:
|
2282
|
+
- :string
|
2283
|
+
- :required
|
2284
|
+
Icmp:
|
2285
|
+
- :structure:
|
2286
|
+
Type:
|
2287
|
+
- :integer
|
2288
|
+
Code:
|
2289
|
+
- :integer
|
2290
|
+
- :rename: icmpTypeCode
|
2291
|
+
PortRange:
|
2292
|
+
- :structure:
|
2293
|
+
From:
|
2294
|
+
- :integer
|
2295
|
+
To:
|
2296
|
+
- :integer
|
2297
|
+
:output: []
|
2298
|
+
|
2299
|
+
DeleteNetworkAclEntry:
|
2300
|
+
:input:
|
2301
|
+
NetworkAclId:
|
2302
|
+
- :string
|
2303
|
+
- :required
|
2304
|
+
RuleNumber:
|
2305
|
+
- :integer
|
2306
|
+
- :required
|
2307
|
+
Egress:
|
2308
|
+
- :boolean
|
2309
|
+
- :required
|
2310
|
+
:output: []
|
2311
|
+
|
2312
|
+
:client_errors: {}
|
2313
|
+
|
2314
|
+
:server_errors: {}
|