aws-sdk-ec2 1.26.0 → 1.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/lib/aws-sdk-ec2.rb +1 -1
 - data/lib/aws-sdk-ec2/client.rb +84 -33
 - data/lib/aws-sdk-ec2/resource.rb +24 -7
 - data/lib/aws-sdk-ec2/snapshot.rb +26 -10
 - data/lib/aws-sdk-ec2/types.rb +84 -33
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 7296fa602eb022a69ade3d5450ee342327a7c8bd
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 8e1501631f076d4e6a72ad30976c608e5ea6b528
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 9f0322d0d0c6dd3790b9b40805ca22359570ab0a2c9b552bcdc3e10c440732bf94ab4a141d5cf15e0cbf1e64f9ed679a376d76895508a266e1cdbf773a13ca12
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: f3ddfdc32ad4b49a019d22a558230bbe6b8ecb42f17418e9d3aecb18e3c98bc4ce99ad3ed3c170f8b3f7faa86e31d01db6ba123dce90b6ede0b43ed0ebf203c6
         
     | 
    
        data/lib/aws-sdk-ec2.rb
    CHANGED
    
    
    
        data/lib/aws-sdk-ec2/client.rb
    CHANGED
    
    | 
         @@ -2226,17 +2226,35 @@ module Aws::EC2 
     | 
|
| 
       2226 
2226 
     | 
    
         
             
                #   [1]: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
         
     | 
| 
       2227 
2227 
     | 
    
         
             
                #
         
     | 
| 
       2228 
2228 
     | 
    
         
             
                # @option params [String] :kms_key_id
         
     | 
| 
       2229 
     | 
    
         
            -
                #    
     | 
| 
       2230 
     | 
    
         
            -
                #    
     | 
| 
       2231 
     | 
    
         
            -
                #    
     | 
| 
       2232 
     | 
    
         
            -
                #    
     | 
| 
       2233 
     | 
    
         
            -
                #    
     | 
| 
       2234 
     | 
    
         
            -
                # 
     | 
| 
       2235 
     | 
    
         
            -
                #    
     | 
| 
       2236 
     | 
    
         
            -
                # 
     | 
| 
      
 2229 
     | 
    
         
            +
                #   An identifier for the AWS Key Management Service (AWS KMS) customer
         
     | 
| 
      
 2230 
     | 
    
         
            +
                #   master key (CMK) to use when creating the encrypted volume. This
         
     | 
| 
      
 2231 
     | 
    
         
            +
                #   parameter is only required if you want to use a non-default CMK; if
         
     | 
| 
      
 2232 
     | 
    
         
            +
                #   this parameter is not specified, the default CMK for EBS is used. If a
         
     | 
| 
      
 2233 
     | 
    
         
            +
                #   `KmsKeyId` is specified, the `Encrypted` flag must also be set.
         
     | 
| 
      
 2234 
     | 
    
         
            +
                #
         
     | 
| 
      
 2235 
     | 
    
         
            +
                #   The CMK identifier may be provided in any of the following formats:
         
     | 
| 
      
 2236 
     | 
    
         
            +
                #
         
     | 
| 
      
 2237 
     | 
    
         
            +
                #   * Key ID
         
     | 
| 
      
 2238 
     | 
    
         
            +
                #
         
     | 
| 
      
 2239 
     | 
    
         
            +
                #   * Key alias
         
     | 
| 
      
 2240 
     | 
    
         
            +
                #
         
     | 
| 
      
 2241 
     | 
    
         
            +
                #   * ARN using key ID. The ID ARN contains the `arn:aws:kms` namespace,
         
     | 
| 
      
 2242 
     | 
    
         
            +
                #     followed by the region of the CMK, the AWS account ID of the CMK
         
     | 
| 
      
 2243 
     | 
    
         
            +
                #     owner, the `key` namespace, and then the CMK ID. For example,
         
     | 
| 
      
 2244 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
         
     | 
| 
      
 2245 
     | 
    
         
            +
                #
         
     | 
| 
      
 2246 
     | 
    
         
            +
                #   * ARN using key alias. The alias ARN contains the `arn:aws:kms`
         
     | 
| 
      
 2247 
     | 
    
         
            +
                #     namespace, followed by the region of the CMK, the AWS account ID of
         
     | 
| 
      
 2248 
     | 
    
         
            +
                #     the CMK owner, the `alias` namespace, and then the CMK alias. For
         
     | 
| 
      
 2249 
     | 
    
         
            +
                #     example,
         
     | 
| 
      
 2250 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
         
     | 
| 
      
 2251 
     | 
    
         
            +
                #
         
     | 
| 
      
 2252 
     | 
    
         
            +
                #   AWS parses `KmsKeyId` asynchronously, meaning that the action you call
         
     | 
| 
      
 2253 
     | 
    
         
            +
                #   may appear to complete even though you provided an invalid identifier.
         
     | 
| 
      
 2254 
     | 
    
         
            +
                #   This action will eventually report failure.
         
     | 
| 
      
 2255 
     | 
    
         
            +
                #
         
     | 
| 
       2237 
2256 
     | 
    
         
             
                #   The specified CMK must exist in the region that the snapshot is being
         
     | 
| 
       2238 
     | 
    
         
            -
                #   copied to. 
     | 
| 
       2239 
     | 
    
         
            -
                #   also be set.
         
     | 
| 
      
 2257 
     | 
    
         
            +
                #   copied to.
         
     | 
| 
       2240 
2258 
     | 
    
         
             
                #
         
     | 
| 
       2241 
2259 
     | 
    
         
             
                # @option params [required, String] :name
         
     | 
| 
       2242 
2260 
     | 
    
         
             
                #   The name of the new AMI in the destination region.
         
     | 
| 
         @@ -2344,16 +2362,32 @@ module Aws::EC2 
     | 
|
| 
       2344 
2362 
     | 
    
         
             
                #   [1]: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
         
     | 
| 
       2345 
2363 
     | 
    
         
             
                #
         
     | 
| 
       2346 
2364 
     | 
    
         
             
                # @option params [String] :kms_key_id
         
     | 
| 
       2347 
     | 
    
         
            -
                #    
     | 
| 
       2348 
     | 
    
         
            -
                #   when creating the  
     | 
| 
       2349 
     | 
    
         
            -
                #   you want to use a non-default CMK; if 
     | 
| 
       2350 
     | 
    
         
            -
                #   the default CMK for EBS is used.  
     | 
| 
       2351 
     | 
    
         
            -
                #    
     | 
| 
       2352 
     | 
    
         
            -
                # 
     | 
| 
       2353 
     | 
    
         
            -
                #    
     | 
| 
       2354 
     | 
    
         
            -
                # 
     | 
| 
       2355 
     | 
    
         
            -
                #    
     | 
| 
       2356 
     | 
    
         
            -
                # 
     | 
| 
      
 2365 
     | 
    
         
            +
                #   An identifier for the AWS Key Management Service (AWS KMS) customer
         
     | 
| 
      
 2366 
     | 
    
         
            +
                #   master key (CMK) to use when creating the encrypted volume. This
         
     | 
| 
      
 2367 
     | 
    
         
            +
                #   parameter is only required if you want to use a non-default CMK; if
         
     | 
| 
      
 2368 
     | 
    
         
            +
                #   this parameter is not specified, the default CMK for EBS is used. If a
         
     | 
| 
      
 2369 
     | 
    
         
            +
                #   `KmsKeyId` is specified, the `Encrypted` flag must also be set.
         
     | 
| 
      
 2370 
     | 
    
         
            +
                #
         
     | 
| 
      
 2371 
     | 
    
         
            +
                #   The CMK identifier may be provided in any of the following formats:
         
     | 
| 
      
 2372 
     | 
    
         
            +
                #
         
     | 
| 
      
 2373 
     | 
    
         
            +
                #   * Key ID
         
     | 
| 
      
 2374 
     | 
    
         
            +
                #
         
     | 
| 
      
 2375 
     | 
    
         
            +
                #   * Key alias
         
     | 
| 
      
 2376 
     | 
    
         
            +
                #
         
     | 
| 
      
 2377 
     | 
    
         
            +
                #   * ARN using key ID. The ID ARN contains the `arn:aws:kms` namespace,
         
     | 
| 
      
 2378 
     | 
    
         
            +
                #     followed by the region of the CMK, the AWS account ID of the CMK
         
     | 
| 
      
 2379 
     | 
    
         
            +
                #     owner, the `key` namespace, and then the CMK ID. For example,
         
     | 
| 
      
 2380 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
         
     | 
| 
      
 2381 
     | 
    
         
            +
                #
         
     | 
| 
      
 2382 
     | 
    
         
            +
                #   * ARN using key alias. The alias ARN contains the `arn:aws:kms`
         
     | 
| 
      
 2383 
     | 
    
         
            +
                #     namespace, followed by the region of the CMK, the AWS account ID of
         
     | 
| 
      
 2384 
     | 
    
         
            +
                #     the CMK owner, the `alias` namespace, and then the CMK alias. For
         
     | 
| 
      
 2385 
     | 
    
         
            +
                #     example,
         
     | 
| 
      
 2386 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
         
     | 
| 
      
 2387 
     | 
    
         
            +
                #
         
     | 
| 
      
 2388 
     | 
    
         
            +
                #   AWS parses `KmsKeyId` asynchronously, meaning that the action you call
         
     | 
| 
      
 2389 
     | 
    
         
            +
                #   may appear to complete even though you provided an invalid identifier.
         
     | 
| 
      
 2390 
     | 
    
         
            +
                #   The action will eventually fail.
         
     | 
| 
       2357 
2391 
     | 
    
         
             
                #
         
     | 
| 
       2358 
2392 
     | 
    
         
             
                # @option params [String] :presigned_url
         
     | 
| 
       2359 
2393 
     | 
    
         
             
                #   The pre-signed URL that facilitates copying an encrypted snapshot.
         
     | 
| 
         @@ -4219,7 +4253,7 @@ module Aws::EC2 
     | 
|
| 
       4219 
4253 
     | 
    
         
             
                #   resp.network_interface.requester_id #=> String
         
     | 
| 
       4220 
4254 
     | 
    
         
             
                #   resp.network_interface.requester_managed #=> Boolean
         
     | 
| 
       4221 
4255 
     | 
    
         
             
                #   resp.network_interface.source_dest_check #=> Boolean
         
     | 
| 
       4222 
     | 
    
         
            -
                #   resp.network_interface.status #=> String, one of "available", "attaching", "in-use", "detaching"
         
     | 
| 
      
 4256 
     | 
    
         
            +
                #   resp.network_interface.status #=> String, one of "available", "associated", "attaching", "in-use", "detaching"
         
     | 
| 
       4223 
4257 
     | 
    
         
             
                #   resp.network_interface.subnet_id #=> String
         
     | 
| 
       4224 
4258 
     | 
    
         
             
                #   resp.network_interface.tag_set #=> Array
         
     | 
| 
       4225 
4259 
     | 
    
         
             
                #   resp.network_interface.tag_set[0].key #=> String
         
     | 
| 
         @@ -5204,15 +5238,32 @@ module Aws::EC2 
     | 
|
| 
       5204 
5238 
     | 
    
         
             
                #   Constraint: Range is 100 to 20000 for Provisioned IOPS SSD volumes
         
     | 
| 
       5205 
5239 
     | 
    
         
             
                #
         
     | 
| 
       5206 
5240 
     | 
    
         
             
                # @option params [String] :kms_key_id
         
     | 
| 
       5207 
     | 
    
         
            -
                #    
     | 
| 
      
 5241 
     | 
    
         
            +
                #   An identifier for the AWS Key Management Service (AWS KMS) customer
         
     | 
| 
       5208 
5242 
     | 
    
         
             
                #   master key (CMK) to use when creating the encrypted volume. This
         
     | 
| 
       5209 
5243 
     | 
    
         
             
                #   parameter is only required if you want to use a non-default CMK; if
         
     | 
| 
       5210 
     | 
    
         
            -
                #   this parameter is not specified, the default CMK for EBS is used.  
     | 
| 
       5211 
     | 
    
         
            -
                #    
     | 
| 
       5212 
     | 
    
         
            -
                # 
     | 
| 
       5213 
     | 
    
         
            -
                #    
     | 
| 
       5214 
     | 
    
         
            -
                # 
     | 
| 
       5215 
     | 
    
         
            -
                #    
     | 
| 
      
 5244 
     | 
    
         
            +
                #   this parameter is not specified, the default CMK for EBS is used. If a
         
     | 
| 
      
 5245 
     | 
    
         
            +
                #   `KmsKeyId` is specified, the `Encrypted` flag must also be set.
         
     | 
| 
      
 5246 
     | 
    
         
            +
                #
         
     | 
| 
      
 5247 
     | 
    
         
            +
                #   The CMK identifier may be provided in any of the following formats:
         
     | 
| 
      
 5248 
     | 
    
         
            +
                #
         
     | 
| 
      
 5249 
     | 
    
         
            +
                #   * Key ID
         
     | 
| 
      
 5250 
     | 
    
         
            +
                #
         
     | 
| 
      
 5251 
     | 
    
         
            +
                #   * Key alias
         
     | 
| 
      
 5252 
     | 
    
         
            +
                #
         
     | 
| 
      
 5253 
     | 
    
         
            +
                #   * ARN using key ID. The ID ARN contains the `arn:aws:kms` namespace,
         
     | 
| 
      
 5254 
     | 
    
         
            +
                #     followed by the region of the CMK, the AWS account ID of the CMK
         
     | 
| 
      
 5255 
     | 
    
         
            +
                #     owner, the `key` namespace, and then the CMK ID. For example,
         
     | 
| 
      
 5256 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
         
     | 
| 
      
 5257 
     | 
    
         
            +
                #
         
     | 
| 
      
 5258 
     | 
    
         
            +
                #   * ARN using key alias. The alias ARN contains the `arn:aws:kms`
         
     | 
| 
      
 5259 
     | 
    
         
            +
                #     namespace, followed by the region of the CMK, the AWS account ID of
         
     | 
| 
      
 5260 
     | 
    
         
            +
                #     the CMK owner, the `alias` namespace, and then the CMK alias. For
         
     | 
| 
      
 5261 
     | 
    
         
            +
                #     example,
         
     | 
| 
      
 5262 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
         
     | 
| 
      
 5263 
     | 
    
         
            +
                #
         
     | 
| 
      
 5264 
     | 
    
         
            +
                #   AWS parses `KmsKeyId` asynchronously, meaning that the action you call
         
     | 
| 
      
 5265 
     | 
    
         
            +
                #   may appear to complete even though you provided an invalid identifier.
         
     | 
| 
      
 5266 
     | 
    
         
            +
                #   The action will eventually fail.
         
     | 
| 
       5216 
5267 
     | 
    
         
             
                #
         
     | 
| 
       5217 
5268 
     | 
    
         
             
                # @option params [Integer] :size
         
     | 
| 
       5218 
5269 
     | 
    
         
             
                #   The size of the volume, in GiBs.
         
     | 
| 
         @@ -7454,7 +7505,7 @@ module Aws::EC2 
     | 
|
| 
       7454 
7505 
     | 
    
         
             
                # * `default-vpc`\: The ID of the default VPC for your account, or
         
     | 
| 
       7455 
7506 
     | 
    
         
             
                #   `none`.
         
     | 
| 
       7456 
7507 
     | 
    
         
             
                #
         
     | 
| 
       7457 
     | 
    
         
            -
                # * `max-instances`\: The maximum number of On-Demand  
     | 
| 
      
 7508 
     | 
    
         
            +
                # * `max-instances`\: The maximum number of On-Demand Instances that you
         
     | 
| 
       7458 
7509 
     | 
    
         
             
                #   can run.
         
     | 
| 
       7459 
7510 
     | 
    
         
             
                #
         
     | 
| 
       7460 
7511 
     | 
    
         
             
                # * `vpc-max-security-groups-per-interface`\: The maximum number of
         
     | 
| 
         @@ -10540,7 +10591,7 @@ module Aws::EC2 
     | 
|
| 
       10540 
10591 
     | 
    
         
             
                #   resp.reservations[0].instances[0].network_interfaces[0].private_ip_addresses[0].private_dns_name #=> String
         
     | 
| 
       10541 
10592 
     | 
    
         
             
                #   resp.reservations[0].instances[0].network_interfaces[0].private_ip_addresses[0].private_ip_address #=> String
         
     | 
| 
       10542 
10593 
     | 
    
         
             
                #   resp.reservations[0].instances[0].network_interfaces[0].source_dest_check #=> Boolean
         
     | 
| 
       10543 
     | 
    
         
            -
                #   resp.reservations[0].instances[0].network_interfaces[0].status #=> String, one of "available", "attaching", "in-use", "detaching"
         
     | 
| 
      
 10594 
     | 
    
         
            +
                #   resp.reservations[0].instances[0].network_interfaces[0].status #=> String, one of "available", "associated", "attaching", "in-use", "detaching"
         
     | 
| 
       10544 
10595 
     | 
    
         
             
                #   resp.reservations[0].instances[0].network_interfaces[0].subnet_id #=> String
         
     | 
| 
       10545 
10596 
     | 
    
         
             
                #   resp.reservations[0].instances[0].network_interfaces[0].vpc_id #=> String
         
     | 
| 
       10546 
10597 
     | 
    
         
             
                #   resp.reservations[0].instances[0].root_device_name #=> String
         
     | 
| 
         @@ -11876,7 +11927,7 @@ module Aws::EC2 
     | 
|
| 
       11876 
11927 
     | 
    
         
             
                #   resp.network_interfaces[0].requester_id #=> String
         
     | 
| 
       11877 
11928 
     | 
    
         
             
                #   resp.network_interfaces[0].requester_managed #=> Boolean
         
     | 
| 
       11878 
11929 
     | 
    
         
             
                #   resp.network_interfaces[0].source_dest_check #=> Boolean
         
     | 
| 
       11879 
     | 
    
         
            -
                #   resp.network_interfaces[0].status #=> String, one of "available", "attaching", "in-use", "detaching"
         
     | 
| 
      
 11930 
     | 
    
         
            +
                #   resp.network_interfaces[0].status #=> String, one of "available", "associated", "attaching", "in-use", "detaching"
         
     | 
| 
       11880 
11931 
     | 
    
         
             
                #   resp.network_interfaces[0].subnet_id #=> String
         
     | 
| 
       11881 
11932 
     | 
    
         
             
                #   resp.network_interfaces[0].tag_set #=> Array
         
     | 
| 
       11882 
11933 
     | 
    
         
             
                #   resp.network_interfaces[0].tag_set[0].key #=> String
         
     | 
| 
         @@ -23204,7 +23255,7 @@ module Aws::EC2 
     | 
|
| 
       23204 
23255 
     | 
    
         
             
                #   resp.instances[0].network_interfaces[0].private_ip_addresses[0].private_dns_name #=> String
         
     | 
| 
       23205 
23256 
     | 
    
         
             
                #   resp.instances[0].network_interfaces[0].private_ip_addresses[0].private_ip_address #=> String
         
     | 
| 
       23206 
23257 
     | 
    
         
             
                #   resp.instances[0].network_interfaces[0].source_dest_check #=> Boolean
         
     | 
| 
       23207 
     | 
    
         
            -
                #   resp.instances[0].network_interfaces[0].status #=> String, one of "available", "attaching", "in-use", "detaching"
         
     | 
| 
      
 23258 
     | 
    
         
            +
                #   resp.instances[0].network_interfaces[0].status #=> String, one of "available", "associated", "attaching", "in-use", "detaching"
         
     | 
| 
       23208 
23259 
     | 
    
         
             
                #   resp.instances[0].network_interfaces[0].subnet_id #=> String
         
     | 
| 
       23209 
23260 
     | 
    
         
             
                #   resp.instances[0].network_interfaces[0].vpc_id #=> String
         
     | 
| 
       23210 
23261 
     | 
    
         
             
                #   resp.instances[0].root_device_name #=> String
         
     | 
| 
         @@ -23977,7 +24028,7 @@ module Aws::EC2 
     | 
|
| 
       23977 
24028 
     | 
    
         
             
                    params: params,
         
     | 
| 
       23978 
24029 
     | 
    
         
             
                    config: config)
         
     | 
| 
       23979 
24030 
     | 
    
         
             
                  context[:gem_name] = 'aws-sdk-ec2'
         
     | 
| 
       23980 
     | 
    
         
            -
                  context[:gem_version] = '1. 
     | 
| 
      
 24031 
     | 
    
         
            +
                  context[:gem_version] = '1.27.0'
         
     | 
| 
       23981 
24032 
     | 
    
         
             
                  Seahorse::Client::Request.new(handlers, context)
         
     | 
| 
       23982 
24033 
     | 
    
         
             
                end
         
     | 
| 
       23983 
24034 
     | 
    
         | 
    
        data/lib/aws-sdk-ec2/resource.rb
    CHANGED
    
    | 
         @@ -761,15 +761,32 @@ module Aws::EC2 
     | 
|
| 
       761 
761 
     | 
    
         
             
                #
         
     | 
| 
       762 
762 
     | 
    
         
             
                #   Constraint: Range is 100 to 20000 for Provisioned IOPS SSD volumes
         
     | 
| 
       763 
763 
     | 
    
         
             
                # @option options [String] :kms_key_id
         
     | 
| 
       764 
     | 
    
         
            -
                #    
     | 
| 
      
 764 
     | 
    
         
            +
                #   An identifier for the AWS Key Management Service (AWS KMS) customer
         
     | 
| 
       765 
765 
     | 
    
         
             
                #   master key (CMK) to use when creating the encrypted volume. This
         
     | 
| 
       766 
766 
     | 
    
         
             
                #   parameter is only required if you want to use a non-default CMK; if
         
     | 
| 
       767 
     | 
    
         
            -
                #   this parameter is not specified, the default CMK for EBS is used.  
     | 
| 
       768 
     | 
    
         
            -
                #    
     | 
| 
       769 
     | 
    
         
            -
                # 
     | 
| 
       770 
     | 
    
         
            -
                #    
     | 
| 
       771 
     | 
    
         
            -
                # 
     | 
| 
       772 
     | 
    
         
            -
                #    
     | 
| 
      
 767 
     | 
    
         
            +
                #   this parameter is not specified, the default CMK for EBS is used. If a
         
     | 
| 
      
 768 
     | 
    
         
            +
                #   `KmsKeyId` is specified, the `Encrypted` flag must also be set.
         
     | 
| 
      
 769 
     | 
    
         
            +
                #
         
     | 
| 
      
 770 
     | 
    
         
            +
                #   The CMK identifier may be provided in any of the following formats:
         
     | 
| 
      
 771 
     | 
    
         
            +
                #
         
     | 
| 
      
 772 
     | 
    
         
            +
                #   * Key ID
         
     | 
| 
      
 773 
     | 
    
         
            +
                #
         
     | 
| 
      
 774 
     | 
    
         
            +
                #   * Key alias
         
     | 
| 
      
 775 
     | 
    
         
            +
                #
         
     | 
| 
      
 776 
     | 
    
         
            +
                #   * ARN using key ID. The ID ARN contains the `arn:aws:kms` namespace,
         
     | 
| 
      
 777 
     | 
    
         
            +
                #     followed by the region of the CMK, the AWS account ID of the CMK
         
     | 
| 
      
 778 
     | 
    
         
            +
                #     owner, the `key` namespace, and then the CMK ID. For example,
         
     | 
| 
      
 779 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
         
     | 
| 
      
 780 
     | 
    
         
            +
                #
         
     | 
| 
      
 781 
     | 
    
         
            +
                #   * ARN using key alias. The alias ARN contains the `arn:aws:kms`
         
     | 
| 
      
 782 
     | 
    
         
            +
                #     namespace, followed by the region of the CMK, the AWS account ID of
         
     | 
| 
      
 783 
     | 
    
         
            +
                #     the CMK owner, the `alias` namespace, and then the CMK alias. For
         
     | 
| 
      
 784 
     | 
    
         
            +
                #     example,
         
     | 
| 
      
 785 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
         
     | 
| 
      
 786 
     | 
    
         
            +
                #
         
     | 
| 
      
 787 
     | 
    
         
            +
                #   AWS parses `KmsKeyId` asynchronously, meaning that the action you call
         
     | 
| 
      
 788 
     | 
    
         
            +
                #   may appear to complete even though you provided an invalid identifier.
         
     | 
| 
      
 789 
     | 
    
         
            +
                #   The action will eventually fail.
         
     | 
| 
       773 
790 
     | 
    
         
             
                # @option options [Integer] :size
         
     | 
| 
       774 
791 
     | 
    
         
             
                #   The size of the volume, in GiBs.
         
     | 
| 
       775 
792 
     | 
    
         
             
                #
         
     | 
    
        data/lib/aws-sdk-ec2/snapshot.rb
    CHANGED
    
    | 
         @@ -315,16 +315,32 @@ module Aws::EC2 
     | 
|
| 
       315 
315 
     | 
    
         
             
                #
         
     | 
| 
       316 
316 
     | 
    
         
             
                #   [1]: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html
         
     | 
| 
       317 
317 
     | 
    
         
             
                # @option options [String] :kms_key_id
         
     | 
| 
       318 
     | 
    
         
            -
                #    
     | 
| 
       319 
     | 
    
         
            -
                #   when creating the  
     | 
| 
       320 
     | 
    
         
            -
                #   you want to use a non-default CMK; if 
     | 
| 
       321 
     | 
    
         
            -
                #   the default CMK for EBS is used.  
     | 
| 
       322 
     | 
    
         
            -
                #    
     | 
| 
       323 
     | 
    
         
            -
                # 
     | 
| 
       324 
     | 
    
         
            -
                #    
     | 
| 
       325 
     | 
    
         
            -
                # 
     | 
| 
       326 
     | 
    
         
            -
                #    
     | 
| 
       327 
     | 
    
         
            -
                # 
     | 
| 
      
 318 
     | 
    
         
            +
                #   An identifier for the AWS Key Management Service (AWS KMS) customer
         
     | 
| 
      
 319 
     | 
    
         
            +
                #   master key (CMK) to use when creating the encrypted volume. This
         
     | 
| 
      
 320 
     | 
    
         
            +
                #   parameter is only required if you want to use a non-default CMK; if
         
     | 
| 
      
 321 
     | 
    
         
            +
                #   this parameter is not specified, the default CMK for EBS is used. If a
         
     | 
| 
      
 322 
     | 
    
         
            +
                #   `KmsKeyId` is specified, the `Encrypted` flag must also be set.
         
     | 
| 
      
 323 
     | 
    
         
            +
                #
         
     | 
| 
      
 324 
     | 
    
         
            +
                #   The CMK identifier may be provided in any of the following formats:
         
     | 
| 
      
 325 
     | 
    
         
            +
                #
         
     | 
| 
      
 326 
     | 
    
         
            +
                #   * Key ID
         
     | 
| 
      
 327 
     | 
    
         
            +
                #
         
     | 
| 
      
 328 
     | 
    
         
            +
                #   * Key alias
         
     | 
| 
      
 329 
     | 
    
         
            +
                #
         
     | 
| 
      
 330 
     | 
    
         
            +
                #   * ARN using key ID. The ID ARN contains the `arn:aws:kms` namespace,
         
     | 
| 
      
 331 
     | 
    
         
            +
                #     followed by the region of the CMK, the AWS account ID of the CMK
         
     | 
| 
      
 332 
     | 
    
         
            +
                #     owner, the `key` namespace, and then the CMK ID. For example,
         
     | 
| 
      
 333 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
         
     | 
| 
      
 334 
     | 
    
         
            +
                #
         
     | 
| 
      
 335 
     | 
    
         
            +
                #   * ARN using key alias. The alias ARN contains the `arn:aws:kms`
         
     | 
| 
      
 336 
     | 
    
         
            +
                #     namespace, followed by the region of the CMK, the AWS account ID of
         
     | 
| 
      
 337 
     | 
    
         
            +
                #     the CMK owner, the `alias` namespace, and then the CMK alias. For
         
     | 
| 
      
 338 
     | 
    
         
            +
                #     example,
         
     | 
| 
      
 339 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
         
     | 
| 
      
 340 
     | 
    
         
            +
                #
         
     | 
| 
      
 341 
     | 
    
         
            +
                #   AWS parses `KmsKeyId` asynchronously, meaning that the action you call
         
     | 
| 
      
 342 
     | 
    
         
            +
                #   may appear to complete even though you provided an invalid identifier.
         
     | 
| 
      
 343 
     | 
    
         
            +
                #   The action will eventually fail.
         
     | 
| 
       328 
344 
     | 
    
         
             
                # @option options [String] :presigned_url
         
     | 
| 
       329 
345 
     | 
    
         
             
                #   The pre-signed URL that facilitates copying an encrypted snapshot.
         
     | 
| 
       330 
346 
     | 
    
         
             
                #   This parameter is only required when copying an encrypted snapshot
         
     | 
    
        data/lib/aws-sdk-ec2/types.rb
    CHANGED
    
    | 
         @@ -1089,7 +1089,7 @@ module Aws::EC2 
     | 
|
| 
       1089 
1089 
     | 
    
         
             
                #       }
         
     | 
| 
       1090 
1090 
     | 
    
         
             
                #
         
     | 
| 
       1091 
1091 
     | 
    
         
             
                # @!attribute [rw] value
         
     | 
| 
       1092 
     | 
    
         
            -
                #   The attribute value.  
     | 
| 
      
 1092 
     | 
    
         
            +
                #   The attribute value. The value is case-sensitive.
         
     | 
| 
       1093 
1093 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       1094 
1094 
     | 
    
         
             
                #
         
     | 
| 
       1095 
1095 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttributeValue AWS API Documentation
         
     | 
| 
         @@ -2389,17 +2389,35 @@ module Aws::EC2 
     | 
|
| 
       2389 
2389 
     | 
    
         
             
                #   @return [Boolean]
         
     | 
| 
       2390 
2390 
     | 
    
         
             
                #
         
     | 
| 
       2391 
2391 
     | 
    
         
             
                # @!attribute [rw] kms_key_id
         
     | 
| 
       2392 
     | 
    
         
            -
                #    
     | 
| 
       2393 
     | 
    
         
            -
                #    
     | 
| 
       2394 
     | 
    
         
            -
                #    
     | 
| 
       2395 
     | 
    
         
            -
                #    
     | 
| 
       2396 
     | 
    
         
            -
                #    
     | 
| 
       2397 
     | 
    
         
            -
                # 
     | 
| 
       2398 
     | 
    
         
            -
                #    
     | 
| 
       2399 
     | 
    
         
            -
                # 
     | 
| 
      
 2392 
     | 
    
         
            +
                #   An identifier for the AWS Key Management Service (AWS KMS) customer
         
     | 
| 
      
 2393 
     | 
    
         
            +
                #   master key (CMK) to use when creating the encrypted volume. This
         
     | 
| 
      
 2394 
     | 
    
         
            +
                #   parameter is only required if you want to use a non-default CMK; if
         
     | 
| 
      
 2395 
     | 
    
         
            +
                #   this parameter is not specified, the default CMK for EBS is used. If
         
     | 
| 
      
 2396 
     | 
    
         
            +
                #   a `KmsKeyId` is specified, the `Encrypted` flag must also be set.
         
     | 
| 
      
 2397 
     | 
    
         
            +
                #
         
     | 
| 
      
 2398 
     | 
    
         
            +
                #   The CMK identifier may be provided in any of the following formats:
         
     | 
| 
      
 2399 
     | 
    
         
            +
                #
         
     | 
| 
      
 2400 
     | 
    
         
            +
                #   * Key ID
         
     | 
| 
      
 2401 
     | 
    
         
            +
                #
         
     | 
| 
      
 2402 
     | 
    
         
            +
                #   * Key alias
         
     | 
| 
      
 2403 
     | 
    
         
            +
                #
         
     | 
| 
      
 2404 
     | 
    
         
            +
                #   * ARN using key ID. The ID ARN contains the `arn:aws:kms` namespace,
         
     | 
| 
      
 2405 
     | 
    
         
            +
                #     followed by the region of the CMK, the AWS account ID of the CMK
         
     | 
| 
      
 2406 
     | 
    
         
            +
                #     owner, the `key` namespace, and then the CMK ID. For example,
         
     | 
| 
      
 2407 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
         
     | 
| 
      
 2408 
     | 
    
         
            +
                #
         
     | 
| 
      
 2409 
     | 
    
         
            +
                #   * ARN using key alias. The alias ARN contains the `arn:aws:kms`
         
     | 
| 
      
 2410 
     | 
    
         
            +
                #     namespace, followed by the region of the CMK, the AWS account ID
         
     | 
| 
      
 2411 
     | 
    
         
            +
                #     of the CMK owner, the `alias` namespace, and then the CMK alias.
         
     | 
| 
      
 2412 
     | 
    
         
            +
                #     For example,
         
     | 
| 
      
 2413 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
         
     | 
| 
      
 2414 
     | 
    
         
            +
                #
         
     | 
| 
      
 2415 
     | 
    
         
            +
                #   AWS parses `KmsKeyId` asynchronously, meaning that the action you
         
     | 
| 
      
 2416 
     | 
    
         
            +
                #   call may appear to complete even though you provided an invalid
         
     | 
| 
      
 2417 
     | 
    
         
            +
                #   identifier. This action will eventually report failure.
         
     | 
| 
      
 2418 
     | 
    
         
            +
                #
         
     | 
| 
       2400 
2419 
     | 
    
         
             
                #   The specified CMK must exist in the region that the snapshot is
         
     | 
| 
       2401 
     | 
    
         
            -
                #   being copied to. 
     | 
| 
       2402 
     | 
    
         
            -
                #   must also be set.
         
     | 
| 
      
 2420 
     | 
    
         
            +
                #   being copied to.
         
     | 
| 
       2403 
2421 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       2404 
2422 
     | 
    
         
             
                #
         
     | 
| 
       2405 
2423 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
         @@ -2497,17 +2515,32 @@ module Aws::EC2 
     | 
|
| 
       2497 
2515 
     | 
    
         
             
                #   @return [Boolean]
         
     | 
| 
       2498 
2516 
     | 
    
         
             
                #
         
     | 
| 
       2499 
2517 
     | 
    
         
             
                # @!attribute [rw] kms_key_id
         
     | 
| 
       2500 
     | 
    
         
            -
                #    
     | 
| 
       2501 
     | 
    
         
            -
                #   when creating the  
     | 
| 
       2502 
     | 
    
         
            -
                #   you want to use a non-default CMK; if 
     | 
| 
       2503 
     | 
    
         
            -
                #   specified, the default CMK for EBS is used.  
     | 
| 
       2504 
     | 
    
         
            -
                #   ` 
     | 
| 
       2505 
     | 
    
         
            -
                # 
     | 
| 
       2506 
     | 
    
         
            -
                #    
     | 
| 
       2507 
     | 
    
         
            -
                # 
     | 
| 
       2508 
     | 
    
         
            -
                #    
     | 
| 
       2509 
     | 
    
         
            -
                # 
     | 
| 
       2510 
     | 
    
         
            -
                #    
     | 
| 
      
 2518 
     | 
    
         
            +
                #   An identifier for the AWS Key Management Service (AWS KMS) customer
         
     | 
| 
      
 2519 
     | 
    
         
            +
                #   master key (CMK) to use when creating the encrypted volume. This
         
     | 
| 
      
 2520 
     | 
    
         
            +
                #   parameter is only required if you want to use a non-default CMK; if
         
     | 
| 
      
 2521 
     | 
    
         
            +
                #   this parameter is not specified, the default CMK for EBS is used. If
         
     | 
| 
      
 2522 
     | 
    
         
            +
                #   a `KmsKeyId` is specified, the `Encrypted` flag must also be set.
         
     | 
| 
      
 2523 
     | 
    
         
            +
                #
         
     | 
| 
      
 2524 
     | 
    
         
            +
                #   The CMK identifier may be provided in any of the following formats:
         
     | 
| 
      
 2525 
     | 
    
         
            +
                #
         
     | 
| 
      
 2526 
     | 
    
         
            +
                #   * Key ID
         
     | 
| 
      
 2527 
     | 
    
         
            +
                #
         
     | 
| 
      
 2528 
     | 
    
         
            +
                #   * Key alias
         
     | 
| 
      
 2529 
     | 
    
         
            +
                #
         
     | 
| 
      
 2530 
     | 
    
         
            +
                #   * ARN using key ID. The ID ARN contains the `arn:aws:kms` namespace,
         
     | 
| 
      
 2531 
     | 
    
         
            +
                #     followed by the region of the CMK, the AWS account ID of the CMK
         
     | 
| 
      
 2532 
     | 
    
         
            +
                #     owner, the `key` namespace, and then the CMK ID. For example,
         
     | 
| 
      
 2533 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
         
     | 
| 
      
 2534 
     | 
    
         
            +
                #
         
     | 
| 
      
 2535 
     | 
    
         
            +
                #   * ARN using key alias. The alias ARN contains the `arn:aws:kms`
         
     | 
| 
      
 2536 
     | 
    
         
            +
                #     namespace, followed by the region of the CMK, the AWS account ID
         
     | 
| 
      
 2537 
     | 
    
         
            +
                #     of the CMK owner, the `alias` namespace, and then the CMK alias.
         
     | 
| 
      
 2538 
     | 
    
         
            +
                #     For example,
         
     | 
| 
      
 2539 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
         
     | 
| 
      
 2540 
     | 
    
         
            +
                #
         
     | 
| 
      
 2541 
     | 
    
         
            +
                #   AWS parses `KmsKeyId` asynchronously, meaning that the action you
         
     | 
| 
      
 2542 
     | 
    
         
            +
                #   call may appear to complete even though you provided an invalid
         
     | 
| 
      
 2543 
     | 
    
         
            +
                #   identifier. The action will eventually fail.
         
     | 
| 
       2511 
2544 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       2512 
2545 
     | 
    
         
             
                #
         
     | 
| 
       2513 
2546 
     | 
    
         
             
                # @!attribute [rw] presigned_url
         
     | 
| 
         @@ -4529,15 +4562,32 @@ module Aws::EC2 
     | 
|
| 
       4529 
4562 
     | 
    
         
             
                #   @return [Integer]
         
     | 
| 
       4530 
4563 
     | 
    
         
             
                #
         
     | 
| 
       4531 
4564 
     | 
    
         
             
                # @!attribute [rw] kms_key_id
         
     | 
| 
       4532 
     | 
    
         
            -
                #    
     | 
| 
      
 4565 
     | 
    
         
            +
                #   An identifier for the AWS Key Management Service (AWS KMS) customer
         
     | 
| 
       4533 
4566 
     | 
    
         
             
                #   master key (CMK) to use when creating the encrypted volume. This
         
     | 
| 
       4534 
4567 
     | 
    
         
             
                #   parameter is only required if you want to use a non-default CMK; if
         
     | 
| 
       4535 
     | 
    
         
            -
                #   this parameter is not specified, the default CMK for EBS is used.
         
     | 
| 
       4536 
     | 
    
         
            -
                #    
     | 
| 
       4537 
     | 
    
         
            -
                # 
     | 
| 
       4538 
     | 
    
         
            -
                #    
     | 
| 
       4539 
     | 
    
         
            -
                # 
     | 
| 
       4540 
     | 
    
         
            -
                #    
     | 
| 
      
 4568 
     | 
    
         
            +
                #   this parameter is not specified, the default CMK for EBS is used. If
         
     | 
| 
      
 4569 
     | 
    
         
            +
                #   a `KmsKeyId` is specified, the `Encrypted` flag must also be set.
         
     | 
| 
      
 4570 
     | 
    
         
            +
                #
         
     | 
| 
      
 4571 
     | 
    
         
            +
                #   The CMK identifier may be provided in any of the following formats:
         
     | 
| 
      
 4572 
     | 
    
         
            +
                #
         
     | 
| 
      
 4573 
     | 
    
         
            +
                #   * Key ID
         
     | 
| 
      
 4574 
     | 
    
         
            +
                #
         
     | 
| 
      
 4575 
     | 
    
         
            +
                #   * Key alias
         
     | 
| 
      
 4576 
     | 
    
         
            +
                #
         
     | 
| 
      
 4577 
     | 
    
         
            +
                #   * ARN using key ID. The ID ARN contains the `arn:aws:kms` namespace,
         
     | 
| 
      
 4578 
     | 
    
         
            +
                #     followed by the region of the CMK, the AWS account ID of the CMK
         
     | 
| 
      
 4579 
     | 
    
         
            +
                #     owner, the `key` namespace, and then the CMK ID. For example,
         
     | 
| 
      
 4580 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
         
     | 
| 
      
 4581 
     | 
    
         
            +
                #
         
     | 
| 
      
 4582 
     | 
    
         
            +
                #   * ARN using key alias. The alias ARN contains the `arn:aws:kms`
         
     | 
| 
      
 4583 
     | 
    
         
            +
                #     namespace, followed by the region of the CMK, the AWS account ID
         
     | 
| 
      
 4584 
     | 
    
         
            +
                #     of the CMK owner, the `alias` namespace, and then the CMK alias.
         
     | 
| 
      
 4585 
     | 
    
         
            +
                #     For example,
         
     | 
| 
      
 4586 
     | 
    
         
            +
                #     arn:aws:kms:*us-east-1*\:*012345678910*\:alias/*ExampleAlias*.
         
     | 
| 
      
 4587 
     | 
    
         
            +
                #
         
     | 
| 
      
 4588 
     | 
    
         
            +
                #   AWS parses `KmsKeyId` asynchronously, meaning that the action you
         
     | 
| 
      
 4589 
     | 
    
         
            +
                #   call may appear to complete even though you provided an invalid
         
     | 
| 
      
 4590 
     | 
    
         
            +
                #   identifier. The action will eventually fail.
         
     | 
| 
       4541 
4591 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       4542 
4592 
     | 
    
         
             
                #
         
     | 
| 
       4543 
4593 
     | 
    
         
             
                # @!attribute [rw] size
         
     | 
| 
         @@ -6543,8 +6593,8 @@ module Aws::EC2 
     | 
|
| 
       6543 
6593 
     | 
    
         
             
                end
         
     | 
| 
       6544 
6594 
     | 
    
         | 
| 
       6545 
6595 
     | 
    
         
             
                # @!attribute [rw] use_long_ids_aggregated
         
     | 
| 
       6546 
     | 
    
         
            -
                #   Indicates whether all  
     | 
| 
       6547 
     | 
    
         
            -
                #    
     | 
| 
      
 6596 
     | 
    
         
            +
                #   Indicates whether all resource types in the region are configured to
         
     | 
| 
      
 6597 
     | 
    
         
            +
                #   use longer IDs. This value is only `true` if all users are
         
     | 
| 
       6548 
6598 
     | 
    
         
             
                #   configured to use longer IDs for all resources types in the region.
         
     | 
| 
       6549 
6599 
     | 
    
         
             
                #   @return [Boolean]
         
     | 
| 
       6550 
6600 
     | 
    
         
             
                #
         
     | 
| 
         @@ -14233,7 +14283,8 @@ module Aws::EC2 
     | 
|
| 
       14233 
14283 
     | 
    
         
             
                #   @return [Integer]
         
     | 
| 
       14234 
14284 
     | 
    
         
             
                #
         
     | 
| 
       14235 
14285 
     | 
    
         
             
                # @!attribute [rw] kms_key_id
         
     | 
| 
       14236 
     | 
    
         
            -
                #    
     | 
| 
      
 14286 
     | 
    
         
            +
                #   Identifier (key ID, key alias, ID ARN, or alias ARN) for a
         
     | 
| 
      
 14287 
     | 
    
         
            +
                #   user-managed CMK under which the EBS volume is encrypted.
         
     | 
| 
       14237 
14288 
     | 
    
         
             
                #
         
     | 
| 
       14238 
14289 
     | 
    
         
             
                #   Note: This parameter is only supported on `BlockDeviceMapping`
         
     | 
| 
       14239 
14290 
     | 
    
         
             
                #   objects called by [RunInstances][1], [RequestSpotFleet][2], and
         
     | 
| 
         @@ -16377,7 +16428,7 @@ module Aws::EC2 
     | 
|
| 
       16377 
16428 
     | 
    
         
             
                #
         
     | 
| 
       16378 
16429 
     | 
    
         
             
                #
         
     | 
| 
       16379 
16430 
     | 
    
         
             
                #
         
     | 
| 
       16380 
     | 
    
         
            -
                #   [1]: http://docs.aws.amazon.com/vm-import/latest/userguide/ 
     | 
| 
      
 16431 
     | 
    
         
            +
                #   [1]: http://docs.aws.amazon.com/vm-import/latest/userguide/vmie_prereqs.html#vmimport-instance-types
         
     | 
| 
       16381 
16432 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       16382 
16433 
     | 
    
         
             
                #
         
     | 
| 
       16383 
16434 
     | 
    
         
             
                # @!attribute [rw] monitoring
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: aws-sdk-ec2
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.27.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Amazon Web Services
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2018-02- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2018-02-12 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: aws-sigv4
         
     |