aws-sdk-appconfig 1.38.0 → 1.40.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: 8b1d4cc12393eabdb672b6dc8a048d38afb12c29bc42e7453dd5174df026b27b
4
- data.tar.gz: 7dbc1750fef0c87acb442ad1f0d3fc61f8f26df16ddcac4e5ec742bf6307c786
3
+ metadata.gz: da1ba11ecf09745179f13d1d3bc6325cf13990a02830cf6fda50d5b06f8fe7b4
4
+ data.tar.gz: 19d6f915d6e2fe99be5c6389b7aa04583f29598ac1c552f3ec2b36a46c223aa2
5
5
  SHA512:
6
- metadata.gz: 209b4e4956029706ed0138fd4b756cdda87f2f3526ded84eb0f0e6c816c6f54b0849b72f21cb6dd2dc3a11ca9e5e1cecda06a10db9c07abc13fff7e11ed22b77
7
- data.tar.gz: 4acc7197bdb0965222a6cc4682b8203ba63139d199ab826d2428b5acffef0cd2d5fe8267cbbf42187f29bdd15d406af221f80cdef04a0c8699c46e673a1b005e
6
+ metadata.gz: d6ea75cd546657d550d26d5d72dea40e343bbce30b12d08a8936b361cf3b2cf6b2c3e32dbd80f0c1a96058c2e839f64a24df224b43abd9139978940949434159
7
+ data.tar.gz: 74177f112d88db2e0691a5bbb895409c68ca4383276df55e944970211f777756fb024762f77ec1c22410552062411a92fa9d95bec85f05c8cbe06b91943db690
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2023-10-20)
5
+ ------------------
6
+
7
+ * Feature - Update KmsKeyIdentifier constraints to support AWS KMS multi-Region keys.
8
+
9
+ 1.39.0 (2023-10-04)
10
+ ------------------
11
+
12
+ * Feature - AWS AppConfig introduces KMS customer-managed key (CMK) encryption support for data saved to AppConfig's hosted configuration store.
13
+
4
14
  1.38.0 (2023-09-27)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.40.0
@@ -550,6 +550,15 @@ module Aws::AppConfig
550
550
  #
551
551
  # `AWS.Freeform`
552
552
  #
553
+ # @option params [String] :kms_key_identifier
554
+ # The identifier for an Key Management Service key to encrypt new
555
+ # configuration data versions in the AppConfig hosted configuration
556
+ # store. This attribute is only used for `hosted` configuration types.
557
+ # The identifier can be an KMS key ID, alias, or the Amazon Resource
558
+ # Name (ARN) of the key ID or alias. To encrypt data managed in other
559
+ # configuration stores, see the documentation for how to specify an KMS
560
+ # key for that particular service.
561
+ #
553
562
  # @return [Types::ConfigurationProfile] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
554
563
  #
555
564
  # * {Types::ConfigurationProfile#application_id #application_id} => String
@@ -560,6 +569,8 @@ module Aws::AppConfig
560
569
  # * {Types::ConfigurationProfile#retrieval_role_arn #retrieval_role_arn} => String
561
570
  # * {Types::ConfigurationProfile#validators #validators} => Array<Types::Validator>
562
571
  # * {Types::ConfigurationProfile#type #type} => String
572
+ # * {Types::ConfigurationProfile#kms_key_arn #kms_key_arn} => String
573
+ # * {Types::ConfigurationProfile#kms_key_identifier #kms_key_identifier} => String
563
574
  #
564
575
  #
565
576
  # @example Example: To create a configuration profile
@@ -601,6 +612,7 @@ module Aws::AppConfig
601
612
  # "TagKey" => "TagValue",
602
613
  # },
603
614
  # type: "ConfigurationProfileType",
615
+ # kms_key_identifier: "KmsKeyIdentifier",
604
616
  # })
605
617
  #
606
618
  # @example Response structure
@@ -615,6 +627,8 @@ module Aws::AppConfig
615
627
  # resp.validators[0].type #=> String, one of "JSON_SCHEMA", "LAMBDA"
616
628
  # resp.validators[0].content #=> String
617
629
  # resp.type #=> String
630
+ # resp.kms_key_arn #=> String
631
+ # resp.kms_key_identifier #=> String
618
632
  #
619
633
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/CreateConfigurationProfile AWS API Documentation
620
634
  #
@@ -925,7 +939,7 @@ module Aws::AppConfig
925
939
  # @example Request syntax with placeholder values
926
940
  #
927
941
  # resp = client.create_extension({
928
- # name: "Name", # required
942
+ # name: "ExtensionOrParameterName", # required
929
943
  # description: "Description",
930
944
  # actions: { # required
931
945
  # "PRE_CREATE_HOSTED_CONFIGURATION_VERSION" => [
@@ -938,7 +952,7 @@ module Aws::AppConfig
938
952
  # ],
939
953
  # },
940
954
  # parameters: {
941
- # "Name" => {
955
+ # "ExtensionOrParameterName" => {
942
956
  # description: "Description",
943
957
  # required: false,
944
958
  # },
@@ -963,8 +977,8 @@ module Aws::AppConfig
963
977
  # resp.actions["ActionPoint"][0].uri #=> String
964
978
  # resp.actions["ActionPoint"][0].role_arn #=> String
965
979
  # resp.parameters #=> Hash
966
- # resp.parameters["Name"].description #=> String
967
- # resp.parameters["Name"].required #=> Boolean
980
+ # resp.parameters["ExtensionOrParameterName"].description #=> String
981
+ # resp.parameters["ExtensionOrParameterName"].required #=> Boolean
968
982
  #
969
983
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/CreateExtension AWS API Documentation
970
984
  #
@@ -1028,7 +1042,7 @@ module Aws::AppConfig
1028
1042
  # extension_version_number: 1,
1029
1043
  # resource_identifier: "Identifier", # required
1030
1044
  # parameters: {
1031
- # "Name" => "StringWithLengthBetween1And2048",
1045
+ # "ExtensionOrParameterName" => "StringWithLengthBetween1And2048",
1032
1046
  # },
1033
1047
  # tags: {
1034
1048
  # "TagKey" => "TagValue",
@@ -1042,7 +1056,7 @@ module Aws::AppConfig
1042
1056
  # resp.resource_arn #=> String
1043
1057
  # resp.arn #=> String
1044
1058
  # resp.parameters #=> Hash
1045
- # resp.parameters["Name"] #=> String
1059
+ # resp.parameters["ExtensionOrParameterName"] #=> String
1046
1060
  # resp.extension_version_number #=> Integer
1047
1061
  #
1048
1062
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/CreateExtensionAssociation AWS API Documentation
@@ -1098,6 +1112,7 @@ module Aws::AppConfig
1098
1112
  # * {Types::HostedConfigurationVersion#content #content} => String
1099
1113
  # * {Types::HostedConfigurationVersion#content_type #content_type} => String
1100
1114
  # * {Types::HostedConfigurationVersion#version_label #version_label} => String
1115
+ # * {Types::HostedConfigurationVersion#kms_key_arn #kms_key_arn} => String
1101
1116
  #
1102
1117
  #
1103
1118
  # @example Example: To create a hosted configuration version
@@ -1142,6 +1157,7 @@ module Aws::AppConfig
1142
1157
  # resp.content #=> String
1143
1158
  # resp.content_type #=> String
1144
1159
  # resp.version_label #=> String
1160
+ # resp.kms_key_arn #=> String
1145
1161
  #
1146
1162
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/CreateHostedConfigurationVersion AWS API Documentation
1147
1163
  #
@@ -1569,6 +1585,8 @@ module Aws::AppConfig
1569
1585
  # * {Types::ConfigurationProfile#retrieval_role_arn #retrieval_role_arn} => String
1570
1586
  # * {Types::ConfigurationProfile#validators #validators} => Array<Types::Validator>
1571
1587
  # * {Types::ConfigurationProfile#type #type} => String
1588
+ # * {Types::ConfigurationProfile#kms_key_arn #kms_key_arn} => String
1589
+ # * {Types::ConfigurationProfile#kms_key_identifier #kms_key_identifier} => String
1572
1590
  #
1573
1591
  #
1574
1592
  # @example Example: To retrieve configuration profile details
@@ -1608,6 +1626,8 @@ module Aws::AppConfig
1608
1626
  # resp.validators[0].type #=> String, one of "JSON_SCHEMA", "LAMBDA"
1609
1627
  # resp.validators[0].content #=> String
1610
1628
  # resp.type #=> String
1629
+ # resp.kms_key_arn #=> String
1630
+ # resp.kms_key_identifier #=> String
1611
1631
  #
1612
1632
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetConfigurationProfile AWS API Documentation
1613
1633
  #
@@ -1777,7 +1797,7 @@ module Aws::AppConfig
1777
1797
  # resp.applied_extensions[0].extension_association_id #=> String
1778
1798
  # resp.applied_extensions[0].version_number #=> Integer
1779
1799
  # resp.applied_extensions[0].parameters #=> Hash
1780
- # resp.applied_extensions[0].parameters["Name"] #=> String
1800
+ # resp.applied_extensions[0].parameters["ExtensionOrParameterName"] #=> String
1781
1801
  # resp.kms_key_arn #=> String
1782
1802
  # resp.kms_key_identifier #=> String
1783
1803
  # resp.version_label #=> String
@@ -1966,8 +1986,8 @@ module Aws::AppConfig
1966
1986
  # resp.actions["ActionPoint"][0].uri #=> String
1967
1987
  # resp.actions["ActionPoint"][0].role_arn #=> String
1968
1988
  # resp.parameters #=> Hash
1969
- # resp.parameters["Name"].description #=> String
1970
- # resp.parameters["Name"].required #=> Boolean
1989
+ # resp.parameters["ExtensionOrParameterName"].description #=> String
1990
+ # resp.parameters["ExtensionOrParameterName"].required #=> Boolean
1971
1991
  #
1972
1992
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetExtension AWS API Documentation
1973
1993
  #
@@ -2011,7 +2031,7 @@ module Aws::AppConfig
2011
2031
  # resp.resource_arn #=> String
2012
2032
  # resp.arn #=> String
2013
2033
  # resp.parameters #=> Hash
2014
- # resp.parameters["Name"] #=> String
2034
+ # resp.parameters["ExtensionOrParameterName"] #=> String
2015
2035
  # resp.extension_version_number #=> Integer
2016
2036
  #
2017
2037
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetExtensionAssociation AWS API Documentation
@@ -2043,6 +2063,7 @@ module Aws::AppConfig
2043
2063
  # * {Types::HostedConfigurationVersion#content #content} => String
2044
2064
  # * {Types::HostedConfigurationVersion#content_type #content_type} => String
2045
2065
  # * {Types::HostedConfigurationVersion#version_label #version_label} => String
2066
+ # * {Types::HostedConfigurationVersion#kms_key_arn #kms_key_arn} => String
2046
2067
  #
2047
2068
  #
2048
2069
  # @example Example: To retrieve hosted configuration details
@@ -2081,6 +2102,7 @@ module Aws::AppConfig
2081
2102
  # resp.content #=> String
2082
2103
  # resp.content_type #=> String
2083
2104
  # resp.version_label #=> String
2105
+ # resp.kms_key_arn #=> String
2084
2106
  #
2085
2107
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetHostedConfigurationVersion AWS API Documentation
2086
2108
  #
@@ -2661,6 +2683,7 @@ module Aws::AppConfig
2661
2683
  # resp.items[0].description #=> String
2662
2684
  # resp.items[0].content_type #=> String
2663
2685
  # resp.items[0].version_label #=> String
2686
+ # resp.items[0].kms_key_arn #=> String
2664
2687
  # resp.next_token #=> String
2665
2688
  #
2666
2689
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/ListHostedConfigurationVersions AWS API Documentation
@@ -2831,7 +2854,7 @@ module Aws::AppConfig
2831
2854
  # tags: {
2832
2855
  # "TagKey" => "TagValue",
2833
2856
  # },
2834
- # kms_key_identifier: "Identifier",
2857
+ # kms_key_identifier: "KmsKeyIdentifier",
2835
2858
  # })
2836
2859
  #
2837
2860
  # @example Response structure
@@ -2871,7 +2894,7 @@ module Aws::AppConfig
2871
2894
  # resp.applied_extensions[0].extension_association_id #=> String
2872
2895
  # resp.applied_extensions[0].version_number #=> Integer
2873
2896
  # resp.applied_extensions[0].parameters #=> Hash
2874
- # resp.applied_extensions[0].parameters["Name"] #=> String
2897
+ # resp.applied_extensions[0].parameters["ExtensionOrParameterName"] #=> String
2875
2898
  # resp.kms_key_arn #=> String
2876
2899
  # resp.kms_key_identifier #=> String
2877
2900
  # resp.version_label #=> String
@@ -2988,7 +3011,7 @@ module Aws::AppConfig
2988
3011
  # resp.applied_extensions[0].extension_association_id #=> String
2989
3012
  # resp.applied_extensions[0].version_number #=> Integer
2990
3013
  # resp.applied_extensions[0].parameters #=> Hash
2991
- # resp.applied_extensions[0].parameters["Name"] #=> String
3014
+ # resp.applied_extensions[0].parameters["ExtensionOrParameterName"] #=> String
2992
3015
  # resp.kms_key_arn #=> String
2993
3016
  # resp.kms_key_identifier #=> String
2994
3017
  # resp.version_label #=> String
@@ -3164,6 +3187,15 @@ module Aws::AppConfig
3164
3187
  # @option params [Array<Types::Validator>] :validators
3165
3188
  # A list of methods for validating the configuration.
3166
3189
  #
3190
+ # @option params [String] :kms_key_identifier
3191
+ # The identifier for a Key Management Service key to encrypt new
3192
+ # configuration data versions in the AppConfig hosted configuration
3193
+ # store. This attribute is only used for `hosted` configuration types.
3194
+ # The identifier can be an KMS key ID, alias, or the Amazon Resource
3195
+ # Name (ARN) of the key ID or alias. To encrypt data managed in other
3196
+ # configuration stores, see the documentation for how to specify an KMS
3197
+ # key for that particular service.
3198
+ #
3167
3199
  # @return [Types::ConfigurationProfile] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3168
3200
  #
3169
3201
  # * {Types::ConfigurationProfile#application_id #application_id} => String
@@ -3174,6 +3206,8 @@ module Aws::AppConfig
3174
3206
  # * {Types::ConfigurationProfile#retrieval_role_arn #retrieval_role_arn} => String
3175
3207
  # * {Types::ConfigurationProfile#validators #validators} => Array&lt;Types::Validator&gt;
3176
3208
  # * {Types::ConfigurationProfile#type #type} => String
3209
+ # * {Types::ConfigurationProfile#kms_key_arn #kms_key_arn} => String
3210
+ # * {Types::ConfigurationProfile#kms_key_identifier #kms_key_identifier} => String
3177
3211
  #
3178
3212
  #
3179
3213
  # @example Example: To update a configuration profile
@@ -3210,6 +3244,7 @@ module Aws::AppConfig
3210
3244
  # content: "StringWithLengthBetween0And32768", # required
3211
3245
  # },
3212
3246
  # ],
3247
+ # kms_key_identifier: "KmsKeyIdentifierOrEmpty",
3213
3248
  # })
3214
3249
  #
3215
3250
  # @example Response structure
@@ -3224,6 +3259,8 @@ module Aws::AppConfig
3224
3259
  # resp.validators[0].type #=> String, one of "JSON_SCHEMA", "LAMBDA"
3225
3260
  # resp.validators[0].content #=> String
3226
3261
  # resp.type #=> String
3262
+ # resp.kms_key_arn #=> String
3263
+ # resp.kms_key_identifier #=> String
3227
3264
  #
3228
3265
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/UpdateConfigurationProfile AWS API Documentation
3229
3266
  #
@@ -3477,7 +3514,7 @@ module Aws::AppConfig
3477
3514
  # ],
3478
3515
  # },
3479
3516
  # parameters: {
3480
- # "Name" => {
3517
+ # "ExtensionOrParameterName" => {
3481
3518
  # description: "Description",
3482
3519
  # required: false,
3483
3520
  # },
@@ -3499,8 +3536,8 @@ module Aws::AppConfig
3499
3536
  # resp.actions["ActionPoint"][0].uri #=> String
3500
3537
  # resp.actions["ActionPoint"][0].role_arn #=> String
3501
3538
  # resp.parameters #=> Hash
3502
- # resp.parameters["Name"].description #=> String
3503
- # resp.parameters["Name"].required #=> Boolean
3539
+ # resp.parameters["ExtensionOrParameterName"].description #=> String
3540
+ # resp.parameters["ExtensionOrParameterName"].required #=> Boolean
3504
3541
  #
3505
3542
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/UpdateExtension AWS API Documentation
3506
3543
  #
@@ -3539,7 +3576,7 @@ module Aws::AppConfig
3539
3576
  # resp = client.update_extension_association({
3540
3577
  # extension_association_id: "Id", # required
3541
3578
  # parameters: {
3542
- # "Name" => "StringWithLengthBetween1And2048",
3579
+ # "ExtensionOrParameterName" => "StringWithLengthBetween1And2048",
3543
3580
  # },
3544
3581
  # })
3545
3582
  #
@@ -3550,7 +3587,7 @@ module Aws::AppConfig
3550
3587
  # resp.resource_arn #=> String
3551
3588
  # resp.arn #=> String
3552
3589
  # resp.parameters #=> Hash
3553
- # resp.parameters["Name"] #=> String
3590
+ # resp.parameters["ExtensionOrParameterName"] #=> String
3554
3591
  # resp.extension_version_number #=> Integer
3555
3592
  #
3556
3593
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/UpdateExtensionAssociation AWS API Documentation
@@ -3617,7 +3654,7 @@ module Aws::AppConfig
3617
3654
  params: params,
3618
3655
  config: config)
3619
3656
  context[:gem_name] = 'aws-sdk-appconfig'
3620
- context[:gem_version] = '1.38.0'
3657
+ context[:gem_version] = '1.40.0'
3621
3658
  Seahorse::Client::Request.new(handlers, context)
3622
3659
  end
3623
3660
 
@@ -74,6 +74,7 @@ module Aws::AppConfig
74
74
  ExtensionAssociationSummaries = Shapes::ListShape.new(name: 'ExtensionAssociationSummaries')
75
75
  ExtensionAssociationSummary = Shapes::StructureShape.new(name: 'ExtensionAssociationSummary')
76
76
  ExtensionAssociations = Shapes::StructureShape.new(name: 'ExtensionAssociations')
77
+ ExtensionOrParameterName = Shapes::StringShape.new(name: 'ExtensionOrParameterName')
77
78
  ExtensionSummaries = Shapes::ListShape.new(name: 'ExtensionSummaries')
78
79
  ExtensionSummary = Shapes::StructureShape.new(name: 'ExtensionSummary')
79
80
  Extensions = Shapes::StructureShape.new(name: 'Extensions')
@@ -100,6 +101,8 @@ module Aws::AppConfig
100
101
  InvalidConfigurationDetail = Shapes::StructureShape.new(name: 'InvalidConfigurationDetail')
101
102
  InvalidConfigurationDetailList = Shapes::ListShape.new(name: 'InvalidConfigurationDetailList')
102
103
  Iso8601DateTime = Shapes::TimestampShape.new(name: 'Iso8601DateTime', timestampFormat: "iso8601")
104
+ KmsKeyIdentifier = Shapes::StringShape.new(name: 'KmsKeyIdentifier')
105
+ KmsKeyIdentifierOrEmpty = Shapes::StringShape.new(name: 'KmsKeyIdentifierOrEmpty')
103
106
  ListApplicationsRequest = Shapes::StructureShape.new(name: 'ListApplicationsRequest')
104
107
  ListConfigurationProfilesRequest = Shapes::StructureShape.new(name: 'ListConfigurationProfilesRequest')
105
108
  ListDeploymentStrategiesRequest = Shapes::StructureShape.new(name: 'ListDeploymentStrategiesRequest')
@@ -223,6 +226,8 @@ module Aws::AppConfig
223
226
  ConfigurationProfile.add_member(:retrieval_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RetrievalRoleArn"))
224
227
  ConfigurationProfile.add_member(:validators, Shapes::ShapeRef.new(shape: ValidatorList, location_name: "Validators"))
225
228
  ConfigurationProfile.add_member(:type, Shapes::ShapeRef.new(shape: ConfigurationProfileType, location_name: "Type"))
229
+ ConfigurationProfile.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "KmsKeyArn"))
230
+ ConfigurationProfile.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
226
231
  ConfigurationProfile.struct_class = Types::ConfigurationProfile
227
232
 
228
233
  ConfigurationProfileSummary.add_member(:application_id, Shapes::ShapeRef.new(shape: Id, location_name: "ApplicationId"))
@@ -255,6 +260,7 @@ module Aws::AppConfig
255
260
  CreateConfigurationProfileRequest.add_member(:validators, Shapes::ShapeRef.new(shape: ValidatorList, location_name: "Validators"))
256
261
  CreateConfigurationProfileRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
257
262
  CreateConfigurationProfileRequest.add_member(:type, Shapes::ShapeRef.new(shape: ConfigurationProfileType, location_name: "Type"))
263
+ CreateConfigurationProfileRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
258
264
  CreateConfigurationProfileRequest.struct_class = Types::CreateConfigurationProfileRequest
259
265
 
260
266
  CreateDeploymentStrategyRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
@@ -281,7 +287,7 @@ module Aws::AppConfig
281
287
  CreateExtensionAssociationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
282
288
  CreateExtensionAssociationRequest.struct_class = Types::CreateExtensionAssociationRequest
283
289
 
284
- CreateExtensionRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
290
+ CreateExtensionRequest.add_member(:name, Shapes::ShapeRef.new(shape: ExtensionOrParameterName, required: true, location_name: "Name"))
285
291
  CreateExtensionRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
286
292
  CreateExtensionRequest.add_member(:actions, Shapes::ShapeRef.new(shape: ActionsMap, required: true, location_name: "Actions"))
287
293
  CreateExtensionRequest.add_member(:parameters, Shapes::ShapeRef.new(shape: ParameterMap, location_name: "Parameters"))
@@ -346,7 +352,7 @@ module Aws::AppConfig
346
352
  Deployment.add_member(:completed_at, Shapes::ShapeRef.new(shape: Iso8601DateTime, location_name: "CompletedAt"))
347
353
  Deployment.add_member(:applied_extensions, Shapes::ShapeRef.new(shape: AppliedExtensions, location_name: "AppliedExtensions"))
348
354
  Deployment.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "KmsKeyArn"))
349
- Deployment.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: Identifier, location_name: "KmsKeyIdentifier"))
355
+ Deployment.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
350
356
  Deployment.add_member(:version_label, Shapes::ShapeRef.new(shape: VersionLabel, location_name: "VersionLabel"))
351
357
  Deployment.struct_class = Types::Deployment
352
358
 
@@ -495,6 +501,7 @@ module Aws::AppConfig
495
501
  HostedConfigurationVersion.add_member(:content, Shapes::ShapeRef.new(shape: Blob, location_name: "Content"))
496
502
  HostedConfigurationVersion.add_member(:content_type, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And255, location: "header", location_name: "Content-Type"))
497
503
  HostedConfigurationVersion.add_member(:version_label, Shapes::ShapeRef.new(shape: VersionLabel, location: "header", location_name: "VersionLabel"))
504
+ HostedConfigurationVersion.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: Arn, location: "header", location_name: "KmsKeyArn"))
498
505
  HostedConfigurationVersion.struct_class = Types::HostedConfigurationVersion
499
506
  HostedConfigurationVersion[:payload] = :content
500
507
  HostedConfigurationVersion[:payload_member] = HostedConfigurationVersion.member(:content)
@@ -505,6 +512,7 @@ module Aws::AppConfig
505
512
  HostedConfigurationVersionSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
506
513
  HostedConfigurationVersionSummary.add_member(:content_type, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And255, location_name: "ContentType"))
507
514
  HostedConfigurationVersionSummary.add_member(:version_label, Shapes::ShapeRef.new(shape: VersionLabel, location_name: "VersionLabel"))
515
+ HostedConfigurationVersionSummary.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "KmsKeyArn"))
508
516
  HostedConfigurationVersionSummary.struct_class = Types::HostedConfigurationVersionSummary
509
517
 
510
518
  HostedConfigurationVersionSummaryList.member = Shapes::ShapeRef.new(shape: HostedConfigurationVersionSummary)
@@ -582,10 +590,10 @@ module Aws::AppConfig
582
590
  Parameter.add_member(:required, Shapes::ShapeRef.new(shape: Boolean, location_name: "Required"))
583
591
  Parameter.struct_class = Types::Parameter
584
592
 
585
- ParameterMap.key = Shapes::ShapeRef.new(shape: Name)
593
+ ParameterMap.key = Shapes::ShapeRef.new(shape: ExtensionOrParameterName)
586
594
  ParameterMap.value = Shapes::ShapeRef.new(shape: Parameter)
587
595
 
588
- ParameterValueMap.key = Shapes::ShapeRef.new(shape: Name)
596
+ ParameterValueMap.key = Shapes::ShapeRef.new(shape: ExtensionOrParameterName)
589
597
  ParameterValueMap.value = Shapes::ShapeRef.new(shape: StringWithLengthBetween1And2048)
590
598
 
591
599
  PayloadTooLargeException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
@@ -611,7 +619,7 @@ module Aws::AppConfig
611
619
  StartDeploymentRequest.add_member(:configuration_version, Shapes::ShapeRef.new(shape: Version, required: true, location_name: "ConfigurationVersion"))
612
620
  StartDeploymentRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
613
621
  StartDeploymentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
614
- StartDeploymentRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: Identifier, location_name: "KmsKeyIdentifier"))
622
+ StartDeploymentRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
615
623
  StartDeploymentRequest.struct_class = Types::StartDeploymentRequest
616
624
 
617
625
  StopDeploymentRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "ApplicationId"))
@@ -643,6 +651,7 @@ module Aws::AppConfig
643
651
  UpdateConfigurationProfileRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
644
652
  UpdateConfigurationProfileRequest.add_member(:retrieval_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RetrievalRoleArn"))
645
653
  UpdateConfigurationProfileRequest.add_member(:validators, Shapes::ShapeRef.new(shape: ValidatorList, location_name: "Validators"))
654
+ UpdateConfigurationProfileRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifierOrEmpty, location_name: "KmsKeyIdentifier"))
646
655
  UpdateConfigurationProfileRequest.struct_class = Types::UpdateConfigurationProfileRequest
647
656
 
648
657
  UpdateDeploymentStrategyRequest.add_member(:deployment_strategy_id, Shapes::ShapeRef.new(shape: DeploymentStrategyId, required: true, location: "uri", location_name: "DeploymentStrategyId"))
@@ -32,7 +32,7 @@ module Aws::AppConfig
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-east-1")
37
37
  return Aws::Endpoints::Endpoint.new(url: "https://appconfig.us-gov-east-1.amazonaws.com", headers: {}, properties: {})
38
38
  end
@@ -304,6 +304,20 @@ module Aws::AppConfig
304
304
  # `AWS.Freeform`
305
305
  # @return [String]
306
306
  #
307
+ # @!attribute [rw] kms_key_arn
308
+ # The Amazon Resource Name of the Key Management Service key to
309
+ # encrypt new configuration data versions in the AppConfig hosted
310
+ # configuration store. This attribute is only used for `hosted`
311
+ # configuration types. To encrypt data managed in other configuration
312
+ # stores, see the documentation for how to specify an KMS key for that
313
+ # particular service.
314
+ # @return [String]
315
+ #
316
+ # @!attribute [rw] kms_key_identifier
317
+ # The Key Management Service key identifier (key ID, key alias, or key
318
+ # ARN) provided when the resource was created or updated.
319
+ # @return [String]
320
+ #
307
321
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/ConfigurationProfile AWS API Documentation
308
322
  #
309
323
  class ConfigurationProfile < Struct.new(
@@ -314,7 +328,9 @@ module Aws::AppConfig
314
328
  :location_uri,
315
329
  :retrieval_role_arn,
316
330
  :validators,
317
- :type)
331
+ :type,
332
+ :kms_key_arn,
333
+ :kms_key_identifier)
318
334
  SENSITIVE = []
319
335
  include Aws::Structure
320
336
  end
@@ -492,6 +508,16 @@ module Aws::AppConfig
492
508
  # `AWS.Freeform`
493
509
  # @return [String]
494
510
  #
511
+ # @!attribute [rw] kms_key_identifier
512
+ # The identifier for an Key Management Service key to encrypt new
513
+ # configuration data versions in the AppConfig hosted configuration
514
+ # store. This attribute is only used for `hosted` configuration types.
515
+ # The identifier can be an KMS key ID, alias, or the Amazon Resource
516
+ # Name (ARN) of the key ID or alias. To encrypt data managed in other
517
+ # configuration stores, see the documentation for how to specify an
518
+ # KMS key for that particular service.
519
+ # @return [String]
520
+ #
495
521
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/CreateConfigurationProfileRequest AWS API Documentation
496
522
  #
497
523
  class CreateConfigurationProfileRequest < Struct.new(
@@ -502,7 +528,8 @@ module Aws::AppConfig
502
528
  :retrieval_role_arn,
503
529
  :validators,
504
530
  :tags,
505
- :type)
531
+ :type,
532
+ :kms_key_identifier)
506
533
  SENSITIVE = []
507
534
  include Aws::Structure
508
535
  end
@@ -971,9 +998,8 @@ module Aws::AppConfig
971
998
  # @return [String]
972
999
  #
973
1000
  # @!attribute [rw] kms_key_identifier
974
- # The KMS key identifier (key ID, key alias, or key ARN). AppConfig
975
- # uses this ID to encrypt the configuration data using a customer
976
- # managed key.
1001
+ # The Key Management Service key identifier (key ID, key alias, or key
1002
+ # ARN) provided when the resource was created or updated.
977
1003
  # @return [String]
978
1004
  #
979
1005
  # @!attribute [rw] version_label
@@ -1695,6 +1721,12 @@ module Aws::AppConfig
1695
1721
  # A user-defined label for an AppConfig hosted configuration version.
1696
1722
  # @return [String]
1697
1723
  #
1724
+ # @!attribute [rw] kms_key_arn
1725
+ # The Amazon Resource Name of the Key Management Service key that was
1726
+ # used to encrypt this specific version of the configuration data in
1727
+ # the AppConfig hosted configuration store.
1728
+ # @return [String]
1729
+ #
1698
1730
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/HostedConfigurationVersion AWS API Documentation
1699
1731
  #
1700
1732
  class HostedConfigurationVersion < Struct.new(
@@ -1704,7 +1736,8 @@ module Aws::AppConfig
1704
1736
  :description,
1705
1737
  :content,
1706
1738
  :content_type,
1707
- :version_label)
1739
+ :version_label,
1740
+ :kms_key_arn)
1708
1741
  SENSITIVE = [:content]
1709
1742
  include Aws::Structure
1710
1743
  end
@@ -1740,6 +1773,12 @@ module Aws::AppConfig
1740
1773
  # A user-defined label for an AppConfig hosted configuration version.
1741
1774
  # @return [String]
1742
1775
  #
1776
+ # @!attribute [rw] kms_key_arn
1777
+ # The Amazon Resource Name of the Key Management Service key that was
1778
+ # used to encrypt this specific version of the configuration data in
1779
+ # the AppConfig hosted configuration store.
1780
+ # @return [String]
1781
+ #
1743
1782
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/HostedConfigurationVersionSummary AWS API Documentation
1744
1783
  #
1745
1784
  class HostedConfigurationVersionSummary < Struct.new(
@@ -1748,7 +1787,8 @@ module Aws::AppConfig
1748
1787
  :version_number,
1749
1788
  :description,
1750
1789
  :content_type,
1751
- :version_label)
1790
+ :version_label,
1791
+ :kms_key_arn)
1752
1792
  SENSITIVE = []
1753
1793
  include Aws::Structure
1754
1794
  end
@@ -2361,6 +2401,16 @@ module Aws::AppConfig
2361
2401
  # A list of methods for validating the configuration.
2362
2402
  # @return [Array<Types::Validator>]
2363
2403
  #
2404
+ # @!attribute [rw] kms_key_identifier
2405
+ # The identifier for a Key Management Service key to encrypt new
2406
+ # configuration data versions in the AppConfig hosted configuration
2407
+ # store. This attribute is only used for `hosted` configuration types.
2408
+ # The identifier can be an KMS key ID, alias, or the Amazon Resource
2409
+ # Name (ARN) of the key ID or alias. To encrypt data managed in other
2410
+ # configuration stores, see the documentation for how to specify an
2411
+ # KMS key for that particular service.
2412
+ # @return [String]
2413
+ #
2364
2414
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/UpdateConfigurationProfileRequest AWS API Documentation
2365
2415
  #
2366
2416
  class UpdateConfigurationProfileRequest < Struct.new(
@@ -2369,7 +2419,8 @@ module Aws::AppConfig
2369
2419
  :name,
2370
2420
  :description,
2371
2421
  :retrieval_role_arn,
2372
- :validators)
2422
+ :validators,
2423
+ :kms_key_identifier)
2373
2424
  SENSITIVE = []
2374
2425
  include Aws::Structure
2375
2426
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-appconfig/customizations'
52
52
  # @!group service
53
53
  module Aws::AppConfig
54
54
 
55
- GEM_VERSION = '1.38.0'
55
+ GEM_VERSION = '1.40.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appconfig
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.0
4
+ version: 1.40.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: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core