aws-sdk-appconfig 1.27.0 → 1.28.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: 31814c68b62820abc85586f50cb3faf85b1b4c0699b4a1d79d654df8368b7731
4
- data.tar.gz: 1eeae9f0fb9b9d50945f98826b4942fb1d88a7ed94fc48f626558270e51bab61
3
+ metadata.gz: 7a89fe4b7bffcbc8e5c19cf223f43a220a73a97dc674b18f0db2ff4338eb65c0
4
+ data.tar.gz: 14ed4b25fc36d9318c5e025d64d4cb04df2ae9642fbe2a1a5350eae29a0a98ec
5
5
  SHA512:
6
- metadata.gz: 9446799a8f01b8f7231788683a4f1ceb13575f0daaa9c94c1213a69ded60e2f21597fae6cc92b0dfa922af3fc1fc88ea6af9394862db79068a2b1ba45b447cf1
7
- data.tar.gz: 3a104dc0fb0427db86a08abb56cd2859a7849647ef653b5b2459b2041be8a8e21214cc6e2e5744b5265a999393138f2c6dc6ad9cceeb60fef1c972fcb8efdea4
6
+ metadata.gz: 297d8a5919dc62b3ce17be6b3cc2f665c07b1cced8b4c767eb051cebcb43f008d2d1dbb2e26bf9a745881d717d667a129504da646c888feaf3087a24315d42b1
7
+ data.tar.gz: 103271c724d8aba8fd84fc168aa0dc401e1961f1a31e75cd0fdd4d28fd0545b77e7ecea424617879666cf79d01fb49eb4fcf00ed1c1763713936417297d755d5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.28.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.27.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -145,4 +152,4 @@ Unreleased Changes
145
152
  1.0.0 (2019-11-25)
146
153
  ------------------
147
154
 
148
- * Feature - Initial release of `aws-sdk-appconfig`.
155
+ * Feature - Initial release of `aws-sdk-appconfig`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.27.0
1
+ 1.28.0
@@ -3528,7 +3528,7 @@ module Aws::AppConfig
3528
3528
  params: params,
3529
3529
  config: config)
3530
3530
  context[:gem_name] = 'aws-sdk-appconfig'
3531
- context[:gem_version] = '1.27.0'
3531
+ context[:gem_version] = '1.28.0'
3532
3532
  Seahorse::Client::Request.new(handlers, context)
3533
3533
  end
3534
3534
 
@@ -9,112 +9,49 @@
9
9
 
10
10
  module Aws::AppConfig
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://appconfig-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-west-1")
36
+ return Aws::Endpoints::Endpoint.new(url: "https://appconfig.us-gov-west-1.amazonaws.com", headers: {}, properties: {})
37
+ end
38
+ if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-east-1")
39
+ return Aws::Endpoints::Endpoint.new(url: "https://appconfig.us-gov-east-1.amazonaws.com", headers: {}, properties: {})
40
+ end
41
+ return Aws::Endpoints::Endpoint.new(url: "https://appconfig-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
44
+ end
45
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
46
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
47
+ return Aws::Endpoints::Endpoint.new(url: "https://appconfig.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
48
+ end
49
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
50
+ end
51
+ return Aws::Endpoints::Endpoint.new(url: "https://appconfig.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
52
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
53
+ raise ArgumentError, 'No endpoint could be resolved'
24
54
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
55
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2FwcGNvbmZpZy1maXBzLntSZWdpb259LntQ
77
- YXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRp
78
- ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJj
79
- b25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJl
80
- IGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0
81
- IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMi
82
- Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJ
83
- UFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
84
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZu
85
- IjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9
86
- LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
87
- ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
88
- aXRpb25zIjpbeyJmbiI6InN0cmluZ0VxdWFscyIsImFyZ3YiOlt7InJlZiI6
89
- IlJlZ2lvbiJ9LCJ1cy1nb3Ytd2VzdC0xIl19XSwiZW5kcG9pbnQiOnsidXJs
90
- IjoiaHR0cHM6Ly9hcHBjb25maWcudXMtZ292LXdlc3QtMS5hbWF6b25hd3Mu
91
- Y29tIiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVu
92
- ZHBvaW50In0seyJjb25kaXRpb25zIjpbeyJmbiI6InN0cmluZ0VxdWFscyIs
93
- ImFyZ3YiOlt7InJlZiI6IlJlZ2lvbiJ9LCJ1cy1nb3YtZWFzdC0xIl19XSwi
94
- ZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9hcHBjb25maWcudXMtZ292LWVh
95
- c3QtMS5hbWF6b25hd3MuY29tIiwicHJvcGVydGllcyI6e30sImhlYWRlcnMi
96
- Ont9fSwidHlwZSI6ImVuZHBvaW50In0seyJjb25kaXRpb25zIjpbXSwiZW5k
97
- cG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9hcHBjb25maWctZmlwcy57UmVnaW9u
98
- fS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7
99
- fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0seyJjb25k
100
- aXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMg
101
- cGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJv
102
- ciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
103
- cmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoi
104
- dHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5F
105
- cXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7
106
- InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJd
107
- fV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10s
108
- ImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vYXBwY29uZmlnLntSZWdpb259
109
- LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3Bl
110
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0s
111
- eyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxl
112
- ZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3Rh
113
- Y2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBv
114
- aW50Ijp7InVybCI6Imh0dHBzOi8vYXBwY29uZmlnLntSZWdpb259LntQYXJ0
115
- aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFk
116
- ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
117
-
118
- JSON
119
56
  end
120
57
  end
@@ -33,16 +33,6 @@ module Aws::AppConfig
33
33
  #
34
34
  # * `ON_DEPLOYMENT_ROLLED_BACK`
35
35
  #
36
- # @note When making an API call, you may pass Action
37
- # data as a hash:
38
- #
39
- # {
40
- # name: "Name",
41
- # description: "Description",
42
- # uri: "Uri",
43
- # role_arn: "Arn",
44
- # }
45
- #
46
36
  # @!attribute [rw] name
47
37
  # The action name.
48
38
  # @return [String]
@@ -409,17 +399,6 @@ module Aws::AppConfig
409
399
  include Aws::Structure
410
400
  end
411
401
 
412
- # @note When making an API call, you may pass CreateApplicationRequest
413
- # data as a hash:
414
- #
415
- # {
416
- # name: "Name", # required
417
- # description: "Description",
418
- # tags: {
419
- # "TagKey" => "TagValue",
420
- # },
421
- # }
422
- #
423
402
  # @!attribute [rw] name
424
403
  # A name for the application.
425
404
  # @return [String]
@@ -444,27 +423,6 @@ module Aws::AppConfig
444
423
  include Aws::Structure
445
424
  end
446
425
 
447
- # @note When making an API call, you may pass CreateConfigurationProfileRequest
448
- # data as a hash:
449
- #
450
- # {
451
- # application_id: "Id", # required
452
- # name: "LongName", # required
453
- # description: "Description",
454
- # location_uri: "Uri", # required
455
- # retrieval_role_arn: "RoleArn",
456
- # validators: [
457
- # {
458
- # type: "JSON_SCHEMA", # required, accepts JSON_SCHEMA, LAMBDA
459
- # content: "StringWithLengthBetween0And32768", # required
460
- # },
461
- # ],
462
- # tags: {
463
- # "TagKey" => "TagValue",
464
- # },
465
- # type: "ConfigurationProfileType",
466
- # }
467
- #
468
426
  # @!attribute [rw] application_id
469
427
  # The application ID.
470
428
  # @return [String]
@@ -538,22 +496,6 @@ module Aws::AppConfig
538
496
  include Aws::Structure
539
497
  end
540
498
 
541
- # @note When making an API call, you may pass CreateDeploymentStrategyRequest
542
- # data as a hash:
543
- #
544
- # {
545
- # name: "Name", # required
546
- # description: "Description",
547
- # deployment_duration_in_minutes: 1, # required
548
- # final_bake_time_in_minutes: 1,
549
- # growth_factor: 1.0, # required
550
- # growth_type: "LINEAR", # accepts LINEAR, EXPONENTIAL
551
- # replicate_to: "NONE", # accepts NONE, SSM_DOCUMENT
552
- # tags: {
553
- # "TagKey" => "TagValue",
554
- # },
555
- # }
556
- #
557
499
  # @!attribute [rw] name
558
500
  # A name for the deployment strategy.
559
501
  # @return [String]
@@ -641,24 +583,6 @@ module Aws::AppConfig
641
583
  include Aws::Structure
642
584
  end
643
585
 
644
- # @note When making an API call, you may pass CreateEnvironmentRequest
645
- # data as a hash:
646
- #
647
- # {
648
- # application_id: "Id", # required
649
- # name: "Name", # required
650
- # description: "Description",
651
- # monitors: [
652
- # {
653
- # alarm_arn: "StringWithLengthBetween1And2048", # required
654
- # alarm_role_arn: "RoleArn",
655
- # },
656
- # ],
657
- # tags: {
658
- # "TagKey" => "TagValue",
659
- # },
660
- # }
661
- #
662
586
  # @!attribute [rw] application_id
663
587
  # The application ID.
664
588
  # @return [String]
@@ -693,21 +617,6 @@ module Aws::AppConfig
693
617
  include Aws::Structure
694
618
  end
695
619
 
696
- # @note When making an API call, you may pass CreateExtensionAssociationRequest
697
- # data as a hash:
698
- #
699
- # {
700
- # extension_identifier: "Identifier", # required
701
- # extension_version_number: 1,
702
- # resource_identifier: "Identifier", # required
703
- # parameters: {
704
- # "Name" => "StringWithLengthBetween1And2048",
705
- # },
706
- # tags: {
707
- # "TagKey" => "TagValue",
708
- # },
709
- # }
710
- #
711
620
  # @!attribute [rw] extension_identifier
712
621
  # The name, the ID, or the Amazon Resource Name (ARN) of the
713
622
  # extension.
@@ -746,34 +655,6 @@ module Aws::AppConfig
746
655
  include Aws::Structure
747
656
  end
748
657
 
749
- # @note When making an API call, you may pass CreateExtensionRequest
750
- # data as a hash:
751
- #
752
- # {
753
- # name: "Name", # required
754
- # description: "Description",
755
- # actions: { # required
756
- # "PRE_CREATE_HOSTED_CONFIGURATION_VERSION" => [
757
- # {
758
- # name: "Name",
759
- # description: "Description",
760
- # uri: "Uri",
761
- # role_arn: "Arn",
762
- # },
763
- # ],
764
- # },
765
- # parameters: {
766
- # "Name" => {
767
- # description: "Description",
768
- # required: false,
769
- # },
770
- # },
771
- # tags: {
772
- # "TagKey" => "TagValue",
773
- # },
774
- # latest_version_number: 1,
775
- # }
776
- #
777
658
  # @!attribute [rw] name
778
659
  # A name for the extension. Each extension name in your account must
779
660
  # be unique. Extension versions use the same name.
@@ -821,18 +702,6 @@ module Aws::AppConfig
821
702
  include Aws::Structure
822
703
  end
823
704
 
824
- # @note When making an API call, you may pass CreateHostedConfigurationVersionRequest
825
- # data as a hash:
826
- #
827
- # {
828
- # application_id: "Id", # required
829
- # configuration_profile_id: "Id", # required
830
- # description: "Description",
831
- # content: "data", # required
832
- # content_type: "StringWithLengthBetween1And255", # required
833
- # latest_version_number: 1,
834
- # }
835
- #
836
705
  # @!attribute [rw] application_id
837
706
  # The application ID.
838
707
  # @return [String]
@@ -879,13 +748,6 @@ module Aws::AppConfig
879
748
  include Aws::Structure
880
749
  end
881
750
 
882
- # @note When making an API call, you may pass DeleteApplicationRequest
883
- # data as a hash:
884
- #
885
- # {
886
- # application_id: "Id", # required
887
- # }
888
- #
889
751
  # @!attribute [rw] application_id
890
752
  # The ID of the application to delete.
891
753
  # @return [String]
@@ -898,14 +760,6 @@ module Aws::AppConfig
898
760
  include Aws::Structure
899
761
  end
900
762
 
901
- # @note When making an API call, you may pass DeleteConfigurationProfileRequest
902
- # data as a hash:
903
- #
904
- # {
905
- # application_id: "Id", # required
906
- # configuration_profile_id: "Id", # required
907
- # }
908
- #
909
763
  # @!attribute [rw] application_id
910
764
  # The application ID that includes the configuration profile you want
911
765
  # to delete.
@@ -924,13 +778,6 @@ module Aws::AppConfig
924
778
  include Aws::Structure
925
779
  end
926
780
 
927
- # @note When making an API call, you may pass DeleteDeploymentStrategyRequest
928
- # data as a hash:
929
- #
930
- # {
931
- # deployment_strategy_id: "DeploymentStrategyId", # required
932
- # }
933
- #
934
781
  # @!attribute [rw] deployment_strategy_id
935
782
  # The ID of the deployment strategy you want to delete.
936
783
  # @return [String]
@@ -943,14 +790,6 @@ module Aws::AppConfig
943
790
  include Aws::Structure
944
791
  end
945
792
 
946
- # @note When making an API call, you may pass DeleteEnvironmentRequest
947
- # data as a hash:
948
- #
949
- # {
950
- # application_id: "Id", # required
951
- # environment_id: "Id", # required
952
- # }
953
- #
954
793
  # @!attribute [rw] application_id
955
794
  # The application ID that includes the environment that you want to
956
795
  # delete.
@@ -969,13 +808,6 @@ module Aws::AppConfig
969
808
  include Aws::Structure
970
809
  end
971
810
 
972
- # @note When making an API call, you may pass DeleteExtensionAssociationRequest
973
- # data as a hash:
974
- #
975
- # {
976
- # extension_association_id: "Id", # required
977
- # }
978
- #
979
811
  # @!attribute [rw] extension_association_id
980
812
  # The ID of the extension association to delete.
981
813
  # @return [String]
@@ -988,14 +820,6 @@ module Aws::AppConfig
988
820
  include Aws::Structure
989
821
  end
990
822
 
991
- # @note When making an API call, you may pass DeleteExtensionRequest
992
- # data as a hash:
993
- #
994
- # {
995
- # extension_identifier: "Identifier", # required
996
- # version_number: 1,
997
- # }
998
- #
999
823
  # @!attribute [rw] extension_identifier
1000
824
  # The name, ID, or Amazon Resource Name (ARN) of the extension you
1001
825
  # want to delete.
@@ -1015,15 +839,6 @@ module Aws::AppConfig
1015
839
  include Aws::Structure
1016
840
  end
1017
841
 
1018
- # @note When making an API call, you may pass DeleteHostedConfigurationVersionRequest
1019
- # data as a hash:
1020
- #
1021
- # {
1022
- # application_id: "Id", # required
1023
- # configuration_profile_id: "Id", # required
1024
- # version_number: 1, # required
1025
- # }
1026
- #
1027
842
  # @!attribute [rw] application_id
1028
843
  # The application ID.
1029
844
  # @return [String]
@@ -1596,13 +1411,6 @@ module Aws::AppConfig
1596
1411
  include Aws::Structure
1597
1412
  end
1598
1413
 
1599
- # @note When making an API call, you may pass GetApplicationRequest
1600
- # data as a hash:
1601
- #
1602
- # {
1603
- # application_id: "Id", # required
1604
- # }
1605
- #
1606
1414
  # @!attribute [rw] application_id
1607
1415
  # The ID of the application you want to get.
1608
1416
  # @return [String]
@@ -1615,14 +1423,6 @@ module Aws::AppConfig
1615
1423
  include Aws::Structure
1616
1424
  end
1617
1425
 
1618
- # @note When making an API call, you may pass GetConfigurationProfileRequest
1619
- # data as a hash:
1620
- #
1621
- # {
1622
- # application_id: "Id", # required
1623
- # configuration_profile_id: "Id", # required
1624
- # }
1625
- #
1626
1426
  # @!attribute [rw] application_id
1627
1427
  # The ID of the application that includes the configuration profile
1628
1428
  # you want to get.
@@ -1641,17 +1441,6 @@ module Aws::AppConfig
1641
1441
  include Aws::Structure
1642
1442
  end
1643
1443
 
1644
- # @note When making an API call, you may pass GetConfigurationRequest
1645
- # data as a hash:
1646
- #
1647
- # {
1648
- # application: "StringWithLengthBetween1And64", # required
1649
- # environment: "StringWithLengthBetween1And64", # required
1650
- # configuration: "StringWithLengthBetween1And64", # required
1651
- # client_id: "StringWithLengthBetween1And64", # required
1652
- # client_configuration_version: "Version",
1653
- # }
1654
- #
1655
1444
  # @!attribute [rw] application
1656
1445
  # The application to get. Specify either the application name or the
1657
1446
  # application ID.
@@ -1710,15 +1499,6 @@ module Aws::AppConfig
1710
1499
  include Aws::Structure
1711
1500
  end
1712
1501
 
1713
- # @note When making an API call, you may pass GetDeploymentRequest
1714
- # data as a hash:
1715
- #
1716
- # {
1717
- # application_id: "Id", # required
1718
- # environment_id: "Id", # required
1719
- # deployment_number: 1, # required
1720
- # }
1721
- #
1722
1502
  # @!attribute [rw] application_id
1723
1503
  # The ID of the application that includes the deployment you want to
1724
1504
  # get.
@@ -1743,13 +1523,6 @@ module Aws::AppConfig
1743
1523
  include Aws::Structure
1744
1524
  end
1745
1525
 
1746
- # @note When making an API call, you may pass GetDeploymentStrategyRequest
1747
- # data as a hash:
1748
- #
1749
- # {
1750
- # deployment_strategy_id: "DeploymentStrategyId", # required
1751
- # }
1752
- #
1753
1526
  # @!attribute [rw] deployment_strategy_id
1754
1527
  # The ID of the deployment strategy to get.
1755
1528
  # @return [String]
@@ -1762,14 +1535,6 @@ module Aws::AppConfig
1762
1535
  include Aws::Structure
1763
1536
  end
1764
1537
 
1765
- # @note When making an API call, you may pass GetEnvironmentRequest
1766
- # data as a hash:
1767
- #
1768
- # {
1769
- # application_id: "Id", # required
1770
- # environment_id: "Id", # required
1771
- # }
1772
- #
1773
1538
  # @!attribute [rw] application_id
1774
1539
  # The ID of the application that includes the environment you want to
1775
1540
  # get.
@@ -1788,13 +1553,6 @@ module Aws::AppConfig
1788
1553
  include Aws::Structure
1789
1554
  end
1790
1555
 
1791
- # @note When making an API call, you may pass GetExtensionAssociationRequest
1792
- # data as a hash:
1793
- #
1794
- # {
1795
- # extension_association_id: "Id", # required
1796
- # }
1797
- #
1798
1556
  # @!attribute [rw] extension_association_id
1799
1557
  # The extension association ID to get.
1800
1558
  # @return [String]
@@ -1807,14 +1565,6 @@ module Aws::AppConfig
1807
1565
  include Aws::Structure
1808
1566
  end
1809
1567
 
1810
- # @note When making an API call, you may pass GetExtensionRequest
1811
- # data as a hash:
1812
- #
1813
- # {
1814
- # extension_identifier: "Identifier", # required
1815
- # version_number: 1,
1816
- # }
1817
- #
1818
1568
  # @!attribute [rw] extension_identifier
1819
1569
  # The name, the ID, or the Amazon Resource Name (ARN) of the
1820
1570
  # extension.
@@ -1834,15 +1584,6 @@ module Aws::AppConfig
1834
1584
  include Aws::Structure
1835
1585
  end
1836
1586
 
1837
- # @note When making an API call, you may pass GetHostedConfigurationVersionRequest
1838
- # data as a hash:
1839
- #
1840
- # {
1841
- # application_id: "Id", # required
1842
- # configuration_profile_id: "Id", # required
1843
- # version_number: 1, # required
1844
- # }
1845
- #
1846
1587
  # @!attribute [rw] application_id
1847
1588
  # The application ID.
1848
1589
  # @return [String]
@@ -2015,14 +1756,6 @@ module Aws::AppConfig
2015
1756
  include Aws::Structure
2016
1757
  end
2017
1758
 
2018
- # @note When making an API call, you may pass ListApplicationsRequest
2019
- # data as a hash:
2020
- #
2021
- # {
2022
- # max_results: 1,
2023
- # next_token: "NextToken",
2024
- # }
2025
- #
2026
1759
  # @!attribute [rw] max_results
2027
1760
  # The maximum number of items to return for this call. The call also
2028
1761
  # returns a token that you can specify in a subsequent call to get the
@@ -2047,16 +1780,6 @@ module Aws::AppConfig
2047
1780
  include Aws::Structure
2048
1781
  end
2049
1782
 
2050
- # @note When making an API call, you may pass ListConfigurationProfilesRequest
2051
- # data as a hash:
2052
- #
2053
- # {
2054
- # application_id: "Id", # required
2055
- # max_results: 1,
2056
- # next_token: "NextToken",
2057
- # type: "ConfigurationProfileType",
2058
- # }
2059
- #
2060
1783
  # @!attribute [rw] application_id
2061
1784
  # The application ID.
2062
1785
  # @return [String]
@@ -2089,14 +1812,6 @@ module Aws::AppConfig
2089
1812
  include Aws::Structure
2090
1813
  end
2091
1814
 
2092
- # @note When making an API call, you may pass ListDeploymentStrategiesRequest
2093
- # data as a hash:
2094
- #
2095
- # {
2096
- # max_results: 1,
2097
- # next_token: "NextToken",
2098
- # }
2099
- #
2100
1815
  # @!attribute [rw] max_results
2101
1816
  # The maximum number of items to return for this call. The call also
2102
1817
  # returns a token that you can specify in a subsequent call to get the
@@ -2117,16 +1832,6 @@ module Aws::AppConfig
2117
1832
  include Aws::Structure
2118
1833
  end
2119
1834
 
2120
- # @note When making an API call, you may pass ListDeploymentsRequest
2121
- # data as a hash:
2122
- #
2123
- # {
2124
- # application_id: "Id", # required
2125
- # environment_id: "Id", # required
2126
- # max_results: 1,
2127
- # next_token: "NextToken",
2128
- # }
2129
- #
2130
1835
  # @!attribute [rw] application_id
2131
1836
  # The application ID.
2132
1837
  # @return [String]
@@ -2159,15 +1864,6 @@ module Aws::AppConfig
2159
1864
  include Aws::Structure
2160
1865
  end
2161
1866
 
2162
- # @note When making an API call, you may pass ListEnvironmentsRequest
2163
- # data as a hash:
2164
- #
2165
- # {
2166
- # application_id: "Id", # required
2167
- # max_results: 1,
2168
- # next_token: "NextToken",
2169
- # }
2170
- #
2171
1867
  # @!attribute [rw] application_id
2172
1868
  # The application ID.
2173
1869
  # @return [String]
@@ -2193,17 +1889,6 @@ module Aws::AppConfig
2193
1889
  include Aws::Structure
2194
1890
  end
2195
1891
 
2196
- # @note When making an API call, you may pass ListExtensionAssociationsRequest
2197
- # data as a hash:
2198
- #
2199
- # {
2200
- # resource_identifier: "Arn",
2201
- # extension_identifier: "Identifier",
2202
- # extension_version_number: 1,
2203
- # max_results: 1,
2204
- # next_token: "NextToken",
2205
- # }
2206
- #
2207
1892
  # @!attribute [rw] resource_identifier
2208
1893
  # The ARN of an application, configuration profile, or environment.
2209
1894
  # @return [String]
@@ -2240,15 +1925,6 @@ module Aws::AppConfig
2240
1925
  include Aws::Structure
2241
1926
  end
2242
1927
 
2243
- # @note When making an API call, you may pass ListExtensionsRequest
2244
- # data as a hash:
2245
- #
2246
- # {
2247
- # max_results: 1,
2248
- # next_token: "NextToken",
2249
- # name: "QueryName",
2250
- # }
2251
- #
2252
1928
  # @!attribute [rw] max_results
2253
1929
  # The maximum number of items to return for this call. The call also
2254
1930
  # returns a token that you can specify in a subsequent call to get the
@@ -2274,16 +1950,6 @@ module Aws::AppConfig
2274
1950
  include Aws::Structure
2275
1951
  end
2276
1952
 
2277
- # @note When making an API call, you may pass ListHostedConfigurationVersionsRequest
2278
- # data as a hash:
2279
- #
2280
- # {
2281
- # application_id: "Id", # required
2282
- # configuration_profile_id: "Id", # required
2283
- # max_results: 1,
2284
- # next_token: "NextToken",
2285
- # }
2286
- #
2287
1953
  # @!attribute [rw] application_id
2288
1954
  # The application ID.
2289
1955
  # @return [String]
@@ -2314,13 +1980,6 @@ module Aws::AppConfig
2314
1980
  include Aws::Structure
2315
1981
  end
2316
1982
 
2317
- # @note When making an API call, you may pass ListTagsForResourceRequest
2318
- # data as a hash:
2319
- #
2320
- # {
2321
- # resource_arn: "Arn", # required
2322
- # }
2323
- #
2324
1983
  # @!attribute [rw] resource_arn
2325
1984
  # The resource ARN.
2326
1985
  # @return [String]
@@ -2335,14 +1994,6 @@ module Aws::AppConfig
2335
1994
 
2336
1995
  # Amazon CloudWatch alarms to monitor during the deployment process.
2337
1996
  #
2338
- # @note When making an API call, you may pass Monitor
2339
- # data as a hash:
2340
- #
2341
- # {
2342
- # alarm_arn: "StringWithLengthBetween1And2048", # required
2343
- # alarm_role_arn: "RoleArn",
2344
- # }
2345
- #
2346
1997
  # @!attribute [rw] alarm_arn
2347
1998
  # Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.
2348
1999
  # @return [String]
@@ -2371,14 +2022,6 @@ module Aws::AppConfig
2371
2022
  #
2372
2023
  # [1]: https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html
2373
2024
  #
2374
- # @note When making an API call, you may pass Parameter
2375
- # data as a hash:
2376
- #
2377
- # {
2378
- # description: "Description",
2379
- # required: false,
2380
- # }
2381
- #
2382
2025
  # @!attribute [rw] description
2383
2026
  # Information about the parameter.
2384
2027
  # @return [String]
@@ -2467,21 +2110,6 @@ module Aws::AppConfig
2467
2110
  include Aws::Structure
2468
2111
  end
2469
2112
 
2470
- # @note When making an API call, you may pass StartDeploymentRequest
2471
- # data as a hash:
2472
- #
2473
- # {
2474
- # application_id: "Id", # required
2475
- # environment_id: "Id", # required
2476
- # deployment_strategy_id: "DeploymentStrategyId", # required
2477
- # configuration_profile_id: "Id", # required
2478
- # configuration_version: "Version", # required
2479
- # description: "Description",
2480
- # tags: {
2481
- # "TagKey" => "TagValue",
2482
- # },
2483
- # }
2484
- #
2485
2113
  # @!attribute [rw] application_id
2486
2114
  # The application ID.
2487
2115
  # @return [String]
@@ -2526,15 +2154,6 @@ module Aws::AppConfig
2526
2154
  include Aws::Structure
2527
2155
  end
2528
2156
 
2529
- # @note When making an API call, you may pass StopDeploymentRequest
2530
- # data as a hash:
2531
- #
2532
- # {
2533
- # application_id: "Id", # required
2534
- # environment_id: "Id", # required
2535
- # deployment_number: 1, # required
2536
- # }
2537
- #
2538
2157
  # @!attribute [rw] application_id
2539
2158
  # The application ID.
2540
2159
  # @return [String]
@@ -2557,16 +2176,6 @@ module Aws::AppConfig
2557
2176
  include Aws::Structure
2558
2177
  end
2559
2178
 
2560
- # @note When making an API call, you may pass TagResourceRequest
2561
- # data as a hash:
2562
- #
2563
- # {
2564
- # resource_arn: "Arn", # required
2565
- # tags: { # required
2566
- # "TagKey" => "TagValue",
2567
- # },
2568
- # }
2569
- #
2570
2179
  # @!attribute [rw] resource_arn
2571
2180
  # The ARN of the resource for which to retrieve tags.
2572
2181
  # @return [String]
@@ -2586,14 +2195,6 @@ module Aws::AppConfig
2586
2195
  include Aws::Structure
2587
2196
  end
2588
2197
 
2589
- # @note When making an API call, you may pass UntagResourceRequest
2590
- # data as a hash:
2591
- #
2592
- # {
2593
- # resource_arn: "Arn", # required
2594
- # tag_keys: ["TagKey"], # required
2595
- # }
2596
- #
2597
2198
  # @!attribute [rw] resource_arn
2598
2199
  # The ARN of the resource for which to remove tags.
2599
2200
  # @return [String]
@@ -2611,15 +2212,6 @@ module Aws::AppConfig
2611
2212
  include Aws::Structure
2612
2213
  end
2613
2214
 
2614
- # @note When making an API call, you may pass UpdateApplicationRequest
2615
- # data as a hash:
2616
- #
2617
- # {
2618
- # application_id: "Id", # required
2619
- # name: "Name",
2620
- # description: "Description",
2621
- # }
2622
- #
2623
2215
  # @!attribute [rw] application_id
2624
2216
  # The application ID.
2625
2217
  # @return [String]
@@ -2642,23 +2234,6 @@ module Aws::AppConfig
2642
2234
  include Aws::Structure
2643
2235
  end
2644
2236
 
2645
- # @note When making an API call, you may pass UpdateConfigurationProfileRequest
2646
- # data as a hash:
2647
- #
2648
- # {
2649
- # application_id: "Id", # required
2650
- # configuration_profile_id: "Id", # required
2651
- # name: "Name",
2652
- # description: "Description",
2653
- # retrieval_role_arn: "RoleArn",
2654
- # validators: [
2655
- # {
2656
- # type: "JSON_SCHEMA", # required, accepts JSON_SCHEMA, LAMBDA
2657
- # content: "StringWithLengthBetween0And32768", # required
2658
- # },
2659
- # ],
2660
- # }
2661
- #
2662
2237
  # @!attribute [rw] application_id
2663
2238
  # The application ID.
2664
2239
  # @return [String]
@@ -2697,18 +2272,6 @@ module Aws::AppConfig
2697
2272
  include Aws::Structure
2698
2273
  end
2699
2274
 
2700
- # @note When making an API call, you may pass UpdateDeploymentStrategyRequest
2701
- # data as a hash:
2702
- #
2703
- # {
2704
- # deployment_strategy_id: "DeploymentStrategyId", # required
2705
- # description: "Description",
2706
- # deployment_duration_in_minutes: 1,
2707
- # final_bake_time_in_minutes: 1,
2708
- # growth_factor: 1.0,
2709
- # growth_type: "LINEAR", # accepts LINEAR, EXPONENTIAL
2710
- # }
2711
- #
2712
2275
  # @!attribute [rw] deployment_strategy_id
2713
2276
  # The deployment strategy ID.
2714
2277
  # @return [String]
@@ -2776,22 +2339,6 @@ module Aws::AppConfig
2776
2339
  include Aws::Structure
2777
2340
  end
2778
2341
 
2779
- # @note When making an API call, you may pass UpdateEnvironmentRequest
2780
- # data as a hash:
2781
- #
2782
- # {
2783
- # application_id: "Id", # required
2784
- # environment_id: "Id", # required
2785
- # name: "Name",
2786
- # description: "Description",
2787
- # monitors: [
2788
- # {
2789
- # alarm_arn: "StringWithLengthBetween1And2048", # required
2790
- # alarm_role_arn: "RoleArn",
2791
- # },
2792
- # ],
2793
- # }
2794
- #
2795
2342
  # @!attribute [rw] application_id
2796
2343
  # The application ID.
2797
2344
  # @return [String]
@@ -2824,16 +2371,6 @@ module Aws::AppConfig
2824
2371
  include Aws::Structure
2825
2372
  end
2826
2373
 
2827
- # @note When making an API call, you may pass UpdateExtensionAssociationRequest
2828
- # data as a hash:
2829
- #
2830
- # {
2831
- # extension_association_id: "Id", # required
2832
- # parameters: {
2833
- # "Name" => "StringWithLengthBetween1And2048",
2834
- # },
2835
- # }
2836
- #
2837
2374
  # @!attribute [rw] extension_association_id
2838
2375
  # The system-generated ID for the association.
2839
2376
  # @return [String]
@@ -2851,31 +2388,6 @@ module Aws::AppConfig
2851
2388
  include Aws::Structure
2852
2389
  end
2853
2390
 
2854
- # @note When making an API call, you may pass UpdateExtensionRequest
2855
- # data as a hash:
2856
- #
2857
- # {
2858
- # extension_identifier: "Identifier", # required
2859
- # description: "Description",
2860
- # actions: {
2861
- # "PRE_CREATE_HOSTED_CONFIGURATION_VERSION" => [
2862
- # {
2863
- # name: "Name",
2864
- # description: "Description",
2865
- # uri: "Uri",
2866
- # role_arn: "Arn",
2867
- # },
2868
- # ],
2869
- # },
2870
- # parameters: {
2871
- # "Name" => {
2872
- # description: "Description",
2873
- # required: false,
2874
- # },
2875
- # },
2876
- # version_number: 1,
2877
- # }
2878
- #
2879
2391
  # @!attribute [rw] extension_identifier
2880
2392
  # The name, the ID, or the Amazon Resource Name (ARN) of the
2881
2393
  # extension.
@@ -2909,15 +2421,6 @@ module Aws::AppConfig
2909
2421
  include Aws::Structure
2910
2422
  end
2911
2423
 
2912
- # @note When making an API call, you may pass ValidateConfigurationRequest
2913
- # data as a hash:
2914
- #
2915
- # {
2916
- # application_id: "Id", # required
2917
- # configuration_profile_id: "Id", # required
2918
- # configuration_version: "Version", # required
2919
- # }
2920
- #
2921
2424
  # @!attribute [rw] application_id
2922
2425
  # The application ID.
2923
2426
  # @return [String]
@@ -2947,14 +2450,6 @@ module Aws::AppConfig
2947
2450
  # configuration. The configuration deployment or update can only proceed
2948
2451
  # when the configuration data is valid.
2949
2452
  #
2950
- # @note When making an API call, you may pass Validator
2951
- # data as a hash:
2952
- #
2953
- # {
2954
- # type: "JSON_SCHEMA", # required, accepts JSON_SCHEMA, LAMBDA
2955
- # content: "StringWithLengthBetween0And32768", # required
2956
- # }
2957
- #
2958
2453
  # @!attribute [rw] type
2959
2454
  # AppConfig supports validators of type `JSON_SCHEMA` and `LAMBDA`
2960
2455
  # @return [String]
@@ -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.27.0'
55
+ GEM_VERSION = '1.28.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.27.0
4
+ version: 1.28.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core