aws-sdk-cloud9 1.33.0 → 1.34.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9276c7c4abb3189d9bdd882c7079ef0550fa4efcb02199b0740bfea1af0b9c94
4
- data.tar.gz: 9cde9bf44709649ca52e7fedd5910b4105e118d2a02b01cb65044a410212d132
3
+ metadata.gz: d8c0d6c8d22698a1897f9ef9df600e1eaab3ab140422e7fa7431ff107dffc33e
4
+ data.tar.gz: 88c099aa746a15d2aceb87eee0ee6aa94122ef0913e90ca982d809fb3ebcb6a6
5
5
  SHA512:
6
- metadata.gz: 7eb72db48189cae066f1b8c19de01aff0fdde21039f93500d8d4f321e51132659a02e974554a9d6b1237973ce2e0d557ade0eac052d83e40dfaff215e1445fc8
7
- data.tar.gz: 2fed904a72f5181b4b07e44a478a5105e4253e2efefaeef0dba6334be70203096fc34c44fd86cdb4e30c62046e30ab51a3f2de95ba86216a4c2cf2eabcf82a46
6
+ metadata.gz: 9bed4e8b9b27f2cb720089af11c44a58bf813a213f94ce911127be05a68c87a8935d76f1248389a1780e258d03a43589451b73d8e4dcea52ccc00f6b4d6c15f3
7
+ data.tar.gz: 725e5f69246d6387d92c31acaac257cd8f732f1daa2029c46811632dc92a555f04a7e31aebe57170330e01e3c8beb7dba1b6148ddc8972d07c2d53efc289d48f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.0 (2021-06-23)
5
+ ------------------
6
+
7
+ * Feature - Updated documentation for CreateEnvironmentEC2 to explain that because Amazon Linux AMI has ended standard support as of December 31, 2020, we recommend you choose Amazon Linux 2--which includes long term support through 2023--for new AWS Cloud9 environments.
8
+
4
9
  1.33.0 (2021-04-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.34.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-cloud9/customizations'
48
48
  # @!group service
49
49
  module Aws::Cloud9
50
50
 
51
- GEM_VERSION = '1.33.0'
51
+ GEM_VERSION = '1.34.0'
52
52
 
53
53
  end
@@ -337,20 +337,21 @@ module Aws::Cloud9
337
337
 
338
338
  # @!group API Operations
339
339
 
340
- # Creates an AWS Cloud9 development environment, launches an Amazon
341
- # Elastic Compute Cloud (Amazon EC2) instance, and then connects from
342
- # the instance to the environment.
340
+ # Creates an Cloud9 development environment, launches an Amazon Elastic
341
+ # Compute Cloud (Amazon EC2) instance, and then connects from the
342
+ # instance to the environment.
343
343
  #
344
344
  # @option params [required, String] :name
345
345
  # The name of the environment to create.
346
346
  #
347
- # This name is visible to other AWS IAM users in the same AWS account.
347
+ # This name is visible to other IAM users in the same Amazon Web
348
+ # Services account.
348
349
  #
349
350
  # @option params [String] :description
350
351
  # The description of the environment to create.
351
352
  #
352
353
  # @option params [String] :client_request_token
353
- # A unique, case-sensitive string that helps AWS Cloud9 to ensure this
354
+ # A unique, case-sensitive string that helps Cloud9 to ensure this
354
355
  # operation completes no more than one time.
355
356
  #
356
357
  # For more information, see [Client Tokens][1] in the *Amazon EC2 API
@@ -358,23 +359,26 @@ module Aws::Cloud9
358
359
  #
359
360
  #
360
361
  #
361
- # [1]: http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
362
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
362
363
  #
363
364
  # @option params [required, String] :instance_type
364
365
  # The type of instance to connect to the environment (for example,
365
366
  # `t2.micro`).
366
367
  #
367
368
  # @option params [String] :subnet_id
368
- # The ID of the subnet in Amazon VPC that AWS Cloud9 will use to
369
- # communicate with the Amazon EC2 instance.
369
+ # The ID of the subnet in Amazon VPC that Cloud9 will use to communicate
370
+ # with the Amazon EC2 instance.
370
371
  #
371
372
  # @option params [String] :image_id
372
373
  # The identifier for the Amazon Machine Image (AMI) that's used to
373
374
  # create the EC2 instance. To choose an AMI for the instance, you must
374
- # specify a valid AMI alias or a valid AWS Systems Manager (SSM) path.
375
+ # specify a valid AMI alias or a valid Amazon EC2 Systems Manager (SSM)
376
+ # path.
375
377
  #
376
378
  # The default AMI is used if the parameter isn't explicitly assigned a
377
- # value in the request.
379
+ # value in the request. Because Amazon Linux AMI has ended standard
380
+ # support as of December 31, 2020, we recommend you choose Amazon Linux
381
+ # 2, which includes long term support through 2023.
378
382
  #
379
383
  # <b>AMI aliases </b>
380
384
  #
@@ -402,20 +406,20 @@ module Aws::Cloud9
402
406
  #
403
407
  # @option params [String] :owner_arn
404
408
  # The Amazon Resource Name (ARN) of the environment owner. This ARN can
405
- # be the ARN of any AWS IAM principal. If this value is not specified,
406
- # the ARN defaults to this environment's creator.
409
+ # be the ARN of any IAM principal. If this value is not specified, the
410
+ # ARN defaults to this environment's creator.
407
411
  #
408
412
  # @option params [Array<Types::Tag>] :tags
409
- # An array of key-value pairs that will be associated with the new AWS
413
+ # An array of key-value pairs that will be associated with the new
410
414
  # Cloud9 development environment.
411
415
  #
412
416
  # @option params [String] :connection_type
413
417
  # The connection type used for connecting to an Amazon EC2 environment.
414
418
  # Valid values are `CONNECT_SSH` (default) and `CONNECT_SSM` (connected
415
- # through AWS Systems Manager).
419
+ # through Amazon EC2 Systems Manager).
416
420
  #
417
- # For more information, see [Accessing no-ingress EC2 instances with AWS
418
- # Systems Manager][1] in the *AWS Cloud9 User Guide*.
421
+ # For more information, see [Accessing no-ingress EC2 instances with
422
+ # Amazon EC2 Systems Manager][1] in the *Cloud9 User Guide*.
419
423
  #
420
424
  #
421
425
  #
@@ -475,7 +479,7 @@ module Aws::Cloud9
475
479
  req.send_request(options)
476
480
  end
477
481
 
478
- # Adds an environment member to an AWS Cloud9 development environment.
482
+ # Adds an environment member to an Cloud9 development environment.
479
483
  #
480
484
  # @option params [required, String] :environment_id
481
485
  # The ID of the environment that contains the environment member you
@@ -541,9 +545,8 @@ module Aws::Cloud9
541
545
  req.send_request(options)
542
546
  end
543
547
 
544
- # Deletes an AWS Cloud9 development environment. If an Amazon EC2
545
- # instance is connected to the environment, also terminates the
546
- # instance.
548
+ # Deletes an Cloud9 development environment. If an Amazon EC2 instance
549
+ # is connected to the environment, also terminates the instance.
547
550
  #
548
551
  # @option params [required, String] :environment_id
549
552
  # The ID of the environment to delete.
@@ -576,8 +579,7 @@ module Aws::Cloud9
576
579
  req.send_request(options)
577
580
  end
578
581
 
579
- # Deletes an environment member from an AWS Cloud9 development
580
- # environment.
582
+ # Deletes an environment member from an Cloud9 development environment.
581
583
  #
582
584
  # @option params [required, String] :environment_id
583
585
  # The ID of the environment to delete the environment member from.
@@ -616,8 +618,8 @@ module Aws::Cloud9
616
618
  req.send_request(options)
617
619
  end
618
620
 
619
- # Gets information about environment members for an AWS Cloud9
620
- # development environment.
621
+ # Gets information about environment members for an Cloud9 development
622
+ # environment.
621
623
  #
622
624
  # @option params [String] :user_arn
623
625
  # The Amazon Resource Name (ARN) of an individual environment member to
@@ -662,7 +664,7 @@ module Aws::Cloud9
662
664
  #
663
665
  # @example Example: DescribeEnvironmentMemberships1
664
666
  #
665
- # # The following example gets information about all of the environment members for the specified AWS Cloud9 development
667
+ # # The following example gets information about all of the environment members for the specified &AWS; Cloud9 development
666
668
  # # environment.
667
669
  #
668
670
  # resp = client.describe_environment_memberships({
@@ -689,7 +691,7 @@ module Aws::Cloud9
689
691
  #
690
692
  # @example Example: DescribeEnvironmentMemberships2
691
693
  #
692
- # # The following example gets information about the owner of the specified AWS Cloud9 development environment.
694
+ # # The following example gets information about the owner of the specified &AWS; Cloud9 development environment.
693
695
  #
694
696
  # resp = client.describe_environment_memberships({
695
697
  # environment_id: "8d9967e2f0624182b74e7690ad69ebEX",
@@ -712,7 +714,7 @@ module Aws::Cloud9
712
714
  #
713
715
  # @example Example: DescribeEnvironmentMemberships3
714
716
  #
715
- # # The following example gets AWS Cloud9 development environment membership information for the specified user.
717
+ # # The following example gets &AWS; Cloud9 development environment membership information for the specified user.
716
718
  #
717
719
  # resp = client.describe_environment_memberships({
718
720
  # user_arn: "arn:aws:iam::123456789012:user/MyDemoUser",
@@ -767,7 +769,7 @@ module Aws::Cloud9
767
769
  req.send_request(options)
768
770
  end
769
771
 
770
- # Gets status information for an AWS Cloud9 development environment.
772
+ # Gets status information for an Cloud9 development environment.
771
773
  #
772
774
  # @option params [required, String] :environment_id
773
775
  # The ID of the environment to get status information about.
@@ -810,7 +812,7 @@ module Aws::Cloud9
810
812
  req.send_request(options)
811
813
  end
812
814
 
813
- # Gets information about AWS Cloud9 development environments.
815
+ # Gets information about Cloud9 development environments.
814
816
  #
815
817
  # @option params [required, Array<String>] :environment_ids
816
818
  # The IDs of individual environments to get information about.
@@ -887,7 +889,7 @@ module Aws::Cloud9
887
889
  req.send_request(options)
888
890
  end
889
891
 
890
- # Gets a list of AWS Cloud9 development environment identifiers.
892
+ # Gets a list of Cloud9 development environment identifiers.
891
893
  #
892
894
  # @option params [String] :next_token
893
895
  # During a previous call, if there are more than 25 items in the list,
@@ -944,12 +946,12 @@ module Aws::Cloud9
944
946
  req.send_request(options)
945
947
  end
946
948
 
947
- # Gets a list of the tags associated with an AWS Cloud9 development
949
+ # Gets a list of the tags associated with an Cloud9 development
948
950
  # environment.
949
951
  #
950
952
  # @option params [required, String] :resource_arn
951
- # The Amazon Resource Name (ARN) of the AWS Cloud9 development
952
- # environment to get the tags for.
953
+ # The Amazon Resource Name (ARN) of the Cloud9 development environment
954
+ # to get the tags for.
953
955
  #
954
956
  # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
955
957
  #
@@ -976,18 +978,17 @@ module Aws::Cloud9
976
978
  req.send_request(options)
977
979
  end
978
980
 
979
- # Adds tags to an AWS Cloud9 development environment.
981
+ # Adds tags to an Cloud9 development environment.
980
982
  #
981
- # Tags that you add to an AWS Cloud9 environment by using this method
982
- # will NOT be automatically propagated to underlying resources.
983
+ # Tags that you add to an Cloud9 environment by using this method will
984
+ # NOT be automatically propagated to underlying resources.
983
985
  #
984
986
  # @option params [required, String] :resource_arn
985
- # The Amazon Resource Name (ARN) of the AWS Cloud9 development
986
- # environment to add tags to.
987
+ # The Amazon Resource Name (ARN) of the Cloud9 development environment
988
+ # to add tags to.
987
989
  #
988
990
  # @option params [required, Array<Types::Tag>] :tags
989
- # The list of tags to add to the given AWS Cloud9 development
990
- # environment.
991
+ # The list of tags to add to the given Cloud9 development environment.
991
992
  #
992
993
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
993
994
  #
@@ -1012,15 +1013,15 @@ module Aws::Cloud9
1012
1013
  req.send_request(options)
1013
1014
  end
1014
1015
 
1015
- # Removes tags from an AWS Cloud9 development environment.
1016
+ # Removes tags from an Cloud9 development environment.
1016
1017
  #
1017
1018
  # @option params [required, String] :resource_arn
1018
- # The Amazon Resource Name (ARN) of the AWS Cloud9 development
1019
- # environment to remove tags from.
1019
+ # The Amazon Resource Name (ARN) of the Cloud9 development environment
1020
+ # to remove tags from.
1020
1021
  #
1021
1022
  # @option params [required, Array<String>] :tag_keys
1022
- # The tag names of the tags to remove from the given AWS Cloud9
1023
- # development environment.
1023
+ # The tag names of the tags to remove from the given Cloud9 development
1024
+ # environment.
1024
1025
  #
1025
1026
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1026
1027
  #
@@ -1040,8 +1041,7 @@ module Aws::Cloud9
1040
1041
  req.send_request(options)
1041
1042
  end
1042
1043
 
1043
- # Changes the settings of an existing AWS Cloud9 development
1044
- # environment.
1044
+ # Changes the settings of an existing Cloud9 development environment.
1045
1045
  #
1046
1046
  # @option params [required, String] :environment_id
1047
1047
  # The ID of the environment to change settings.
@@ -1084,8 +1084,8 @@ module Aws::Cloud9
1084
1084
  req.send_request(options)
1085
1085
  end
1086
1086
 
1087
- # Changes the settings of an existing environment member for an AWS
1088
- # Cloud9 development environment.
1087
+ # Changes the settings of an existing environment member for an Cloud9
1088
+ # development environment.
1089
1089
  #
1090
1090
  # @option params [required, String] :environment_id
1091
1091
  # The ID of the environment for the environment member whose settings
@@ -1164,7 +1164,7 @@ module Aws::Cloud9
1164
1164
  params: params,
1165
1165
  config: config)
1166
1166
  context[:gem_name] = 'aws-sdk-cloud9'
1167
- context[:gem_version] = '1.33.0'
1167
+ context[:gem_version] = '1.34.0'
1168
1168
  Seahorse::Client::Request.new(handlers, context)
1169
1169
  end
1170
1170
 
@@ -52,7 +52,8 @@ module Aws::Cloud9
52
52
  # @!attribute [rw] name
53
53
  # The name of the environment to create.
54
54
  #
55
- # This name is visible to other AWS IAM users in the same AWS account.
55
+ # This name is visible to other IAM users in the same Amazon Web
56
+ # Services account.
56
57
  # @return [String]
57
58
  #
58
59
  # @!attribute [rw] description
@@ -60,7 +61,7 @@ module Aws::Cloud9
60
61
  # @return [String]
61
62
  #
62
63
  # @!attribute [rw] client_request_token
63
- # A unique, case-sensitive string that helps AWS Cloud9 to ensure this
64
+ # A unique, case-sensitive string that helps Cloud9 to ensure this
64
65
  # operation completes no more than one time.
65
66
  #
66
67
  # For more information, see [Client Tokens][1] in the *Amazon EC2 API
@@ -68,7 +69,7 @@ module Aws::Cloud9
68
69
  #
69
70
  #
70
71
  #
71
- # [1]: http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
72
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
72
73
  # @return [String]
73
74
  #
74
75
  # @!attribute [rw] instance_type
@@ -77,17 +78,20 @@ module Aws::Cloud9
77
78
  # @return [String]
78
79
  #
79
80
  # @!attribute [rw] subnet_id
80
- # The ID of the subnet in Amazon VPC that AWS Cloud9 will use to
81
+ # The ID of the subnet in Amazon VPC that Cloud9 will use to
81
82
  # communicate with the Amazon EC2 instance.
82
83
  # @return [String]
83
84
  #
84
85
  # @!attribute [rw] image_id
85
86
  # The identifier for the Amazon Machine Image (AMI) that's used to
86
87
  # create the EC2 instance. To choose an AMI for the instance, you must
87
- # specify a valid AMI alias or a valid AWS Systems Manager (SSM) path.
88
+ # specify a valid AMI alias or a valid Amazon EC2 Systems Manager
89
+ # (SSM) path.
88
90
  #
89
91
  # The default AMI is used if the parameter isn't explicitly assigned
90
- # a value in the request.
92
+ # a value in the request. Because Amazon Linux AMI has ended standard
93
+ # support as of December 31, 2020, we recommend you choose Amazon
94
+ # Linux 2, which includes long term support through 2023.
91
95
  #
92
96
  # <b>AMI aliases </b>
93
97
  #
@@ -117,22 +121,22 @@ module Aws::Cloud9
117
121
  #
118
122
  # @!attribute [rw] owner_arn
119
123
  # The Amazon Resource Name (ARN) of the environment owner. This ARN
120
- # can be the ARN of any AWS IAM principal. If this value is not
121
- # specified, the ARN defaults to this environment's creator.
124
+ # can be the ARN of any IAM principal. If this value is not specified,
125
+ # the ARN defaults to this environment's creator.
122
126
  # @return [String]
123
127
  #
124
128
  # @!attribute [rw] tags
125
- # An array of key-value pairs that will be associated with the new AWS
129
+ # An array of key-value pairs that will be associated with the new
126
130
  # Cloud9 development environment.
127
131
  # @return [Array<Types::Tag>]
128
132
  #
129
133
  # @!attribute [rw] connection_type
130
134
  # The connection type used for connecting to an Amazon EC2
131
135
  # environment. Valid values are `CONNECT_SSH` (default) and
132
- # `CONNECT_SSM` (connected through AWS Systems Manager).
136
+ # `CONNECT_SSM` (connected through Amazon EC2 Systems Manager).
133
137
  #
134
138
  # For more information, see [Accessing no-ingress EC2 instances with
135
- # AWS Systems Manager][1] in the *AWS Cloud9 User Guide*.
139
+ # Amazon EC2 Systems Manager][1] in the *Cloud9 User Guide*.
136
140
  #
137
141
  #
138
142
  #
@@ -434,7 +438,7 @@ module Aws::Cloud9
434
438
  include Aws::Structure
435
439
  end
436
440
 
437
- # Information about an AWS Cloud9 development environment.
441
+ # Information about an Cloud9 development environment.
438
442
  #
439
443
  # @!attribute [rw] id
440
444
  # The ID of the environment.
@@ -475,8 +479,8 @@ module Aws::Cloud9
475
479
  # @return [Types::EnvironmentLifecycle]
476
480
  #
477
481
  # @!attribute [rw] managed_credentials_status
478
- # Describes the status of AWS managed temporary credentials for the
479
- # AWS Cloud9 environment. Available values are:
482
+ # Describes the status of Amazon Web Services managed temporary
483
+ # credentials for the Cloud9 environment. Available values are:
480
484
  #
481
485
  # * `ENABLED_ON_CREATE`
482
486
  #
@@ -516,7 +520,7 @@ module Aws::Cloud9
516
520
  end
517
521
 
518
522
  # Information about the current creation or deletion lifecycle state of
519
- # an AWS Cloud9 development environment.
523
+ # an Cloud9 development environment.
520
524
  #
521
525
  # @!attribute [rw] status
522
526
  # The current creation or deletion lifecycle state of the environment.
@@ -539,7 +543,7 @@ module Aws::Cloud9
539
543
  #
540
544
  # @!attribute [rw] failure_resource
541
545
  # If the environment failed to delete, the Amazon Resource Name (ARN)
542
- # of the related AWS resource.
546
+ # of the related Amazon Web Services resource.
543
547
  # @return [String]
544
548
  #
545
549
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/EnvironmentLifecycle AWS API Documentation
@@ -552,7 +556,7 @@ module Aws::Cloud9
552
556
  include Aws::Structure
553
557
  end
554
558
 
555
- # Information about an environment member for an AWS Cloud9 development
559
+ # Information about an environment member for an Cloud9 development
556
560
  # environment.
557
561
  #
558
562
  # @!attribute [rw] permissions
@@ -567,7 +571,7 @@ module Aws::Cloud9
567
571
  # @return [String]
568
572
  #
569
573
  # @!attribute [rw] user_id
570
- # The user ID in AWS Identity and Access Management (AWS IAM) of the
574
+ # The user ID in Identity and Access Management (IAM) of the
571
575
  # environment member.
572
576
  # @return [String]
573
577
  #
@@ -673,8 +677,8 @@ module Aws::Cloud9
673
677
  # }
674
678
  #
675
679
  # @!attribute [rw] resource_arn
676
- # The Amazon Resource Name (ARN) of the AWS Cloud9 development
677
- # environment to get the tags for.
680
+ # The Amazon Resource Name (ARN) of the Cloud9 development environment
681
+ # to get the tags for.
678
682
  # @return [String]
679
683
  #
680
684
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/ListTagsForResourceRequest AWS API Documentation
@@ -686,8 +690,7 @@ module Aws::Cloud9
686
690
  end
687
691
 
688
692
  # @!attribute [rw] tags
689
- # The list of tags associated with the AWS Cloud9 development
690
- # environment.
693
+ # The list of tags associated with the Cloud9 development environment.
691
694
  # @return [Array<Types::Tag>]
692
695
  #
693
696
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/ListTagsForResourceResponse AWS API Documentation
@@ -704,12 +707,12 @@ module Aws::Cloud9
704
707
  #
705
708
  class NotFoundException < Aws::EmptyStructure; end
706
709
 
707
- # Metadata that is associated with AWS resources. In particular, a
708
- # name-value pair that can be associated with an AWS Cloud9 development
709
- # environment. There are two types of tags: *user tags* and *system
710
- # tags*. A user tag is created by the user. A system tag is
711
- # automatically created by AWS services. A system tag is prefixed with
712
- # "aws:" and cannot be modified by the user.
710
+ # Metadata that is associated with Amazon Web Services resources. In
711
+ # particular, a name-value pair that can be associated with an Cloud9
712
+ # development environment. There are two types of tags: *user tags* and
713
+ # *system tags*. A user tag is created by the user. A system tag is
714
+ # automatically created by Amazon Web Services services. A system tag is
715
+ # prefixed with "aws:" and cannot be modified by the user.
713
716
  #
714
717
  # @note When making an API call, you may pass Tag
715
718
  # data as a hash:
@@ -750,13 +753,12 @@ module Aws::Cloud9
750
753
  # }
751
754
  #
752
755
  # @!attribute [rw] resource_arn
753
- # The Amazon Resource Name (ARN) of the AWS Cloud9 development
754
- # environment to add tags to.
756
+ # The Amazon Resource Name (ARN) of the Cloud9 development environment
757
+ # to add tags to.
755
758
  # @return [String]
756
759
  #
757
760
  # @!attribute [rw] tags
758
- # The list of tags to add to the given AWS Cloud9 development
759
- # environment.
761
+ # The list of tags to add to the given Cloud9 development environment.
760
762
  # @return [Array<Types::Tag>]
761
763
  #
762
764
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/TagResourceRequest AWS API Documentation
@@ -787,12 +789,12 @@ module Aws::Cloud9
787
789
  # }
788
790
  #
789
791
  # @!attribute [rw] resource_arn
790
- # The Amazon Resource Name (ARN) of the AWS Cloud9 development
791
- # environment to remove tags from.
792
+ # The Amazon Resource Name (ARN) of the Cloud9 development environment
793
+ # to remove tags from.
792
794
  # @return [String]
793
795
  #
794
796
  # @!attribute [rw] tag_keys
795
- # The tag names of the tags to remove from the given AWS Cloud9
797
+ # The tag names of the tags to remove from the given Cloud9
796
798
  # development environment.
797
799
  # @return [Array<String>]
798
800
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloud9
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.33.0
4
+ version: 1.34.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: 2021-04-06 00:00:00.000000000 Z
11
+ date: 2021-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubyforge_project:
87
- rubygems_version: 2.7.6.2
86
+ rubygems_version: 3.1.6
88
87
  signing_key:
89
88
  specification_version: 4
90
89
  summary: AWS SDK for Ruby - AWS Cloud9