aws-sdk-chimesdkmessaging 1.14.0 → 1.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e9c90d07b65c437f867bd2f525dcf118ea9727dca43c9bfaf82822bc3212a05d
4
- data.tar.gz: 69c505289ae7dd249f2c8fb5bf273ed3a0102084c4accd4ec2b97ef093db3bce
3
+ metadata.gz: 1bfe5790e536663cab3f6dc7131ccc6f357cc17bcb501107cd8bc396aa020955
4
+ data.tar.gz: 3ba930a30bd8b7faded5bd6b81f271a7d0aaaeb4ae751063818d535ac6e3b8b1
5
5
  SHA512:
6
- metadata.gz: 3a97e7c67097ac4c18fd536476bcf6a29c448c19566cd39475fd7a4f1248d30321743e721c04a03886b3a4b446597d8c609296a965f8bd41546f87020f52e390
7
- data.tar.gz: 3feecfc03fea71775671c0ec49bdde950b2e511009d12553db0a16354c76c5d7413d3c87cbadef7181d5b06b0207b946efc515ea49bfb618eefe42d7895e1315
6
+ metadata.gz: 0b1a3225376fdcba97fc749dcedb32ab5d9023815080a3a66b36996d4fd2e1d5de199cd3618f5abb15b0e48c220a96e74d8b4bc590f2570cbcbe3164fc44a99c
7
+ data.tar.gz: 837405c9d3ad2a2469267728be9d725be8f8dcd659408a90141ae2340c9074baf48616afa65373f9c83ea8a4027a6e0a9d85dc9576e1ba71317b58e17e877689
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.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.14.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.15.0
@@ -2942,7 +2942,7 @@ module Aws::ChimeSDKMessaging
2942
2942
  params: params,
2943
2943
  config: config)
2944
2944
  context[:gem_name] = 'aws-sdk-chimesdkmessaging'
2945
- context[:gem_version] = '1.14.0'
2945
+ context[:gem_version] = '1.15.0'
2946
2946
  Seahorse::Client::Request.new(handlers, context)
2947
2947
  end
2948
2948
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::ChimeSDKMessaging
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://messaging-chime-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
+ return Aws::Endpoints::Endpoint.new(url: "https://messaging-chime-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://messaging-chime.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://messaging-chime.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
33
- YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
34
- ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
35
- aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
36
- ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
37
- IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
38
- bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
39
- aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
40
- IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
41
- IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
42
- aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
43
- Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
44
- cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
45
- bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
46
- YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
47
- bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
48
- ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
49
- IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
- b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
- ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
- c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
54
- c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
55
- dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
56
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
57
- In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
58
- UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
59
- cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
60
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
61
- ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
62
- IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
63
- bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
64
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
65
- bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
66
- IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
67
- YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
68
- Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
69
- YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
70
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
71
- biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
72
- fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
73
- cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
74
- cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
75
- ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
76
- Ijp7InVybCI6Imh0dHBzOi8vbWVzc2FnaW5nLWNoaW1lLWZpcHMue1JlZ2lv
77
- bn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJv
78
- cGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1d
79
- fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFj
80
- ayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
81
- cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
82
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
83
- VXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
84
- bmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVl
85
- LHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVz
86
- dWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
87
- cyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
88
- ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL21l
89
- c3NhZ2luZy1jaGltZS1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQj
90
- ZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5
91
- cGUiOiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6
92
- IkZJUFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
93
- c3VwcG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMi
94
- Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1
95
- YWxTdGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
96
- bmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVl
97
- LHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVz
98
- dWx0In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIs
99
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoi
100
- aHR0cHM6Ly9tZXNzYWdpbmctY2hpbWUue1JlZ2lvbn0ue1BhcnRpdGlvblJl
101
- c3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhl
102
- YWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMi
103
- OltdLCJlcnJvciI6IkR1YWxTdGFjayBpcyBlbmFibGVkIGJ1dCB0aGlzIHBh
104
- cnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1YWxTdGFjayIsInR5cGUiOiJl
105
- cnJvciJ9XX0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoi
106
- aHR0cHM6Ly9tZXNzYWdpbmctY2hpbWUue1JlZ2lvbn0ue1BhcnRpdGlvblJl
107
- c3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9
108
- fSwidHlwZSI6ImVuZHBvaW50In1dfV19
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -35,15 +35,6 @@ module Aws::ChimeSDKMessaging
35
35
  include Aws::Structure
36
36
  end
37
37
 
38
- # @note When making an API call, you may pass AssociateChannelFlowRequest
39
- # data as a hash:
40
- #
41
- # {
42
- # channel_arn: "ChimeArn", # required
43
- # channel_flow_arn: "ChimeArn", # required
44
- # chime_bearer: "ChimeArn", # required
45
- # }
46
- #
47
38
  # @!attribute [rw] channel_arn
48
39
  # The ARN of the channel.
49
40
  # @return [String]
@@ -143,17 +134,6 @@ module Aws::ChimeSDKMessaging
143
134
  include Aws::Structure
144
135
  end
145
136
 
146
- # @note When making an API call, you may pass BatchCreateChannelMembershipRequest
147
- # data as a hash:
148
- #
149
- # {
150
- # channel_arn: "ChimeArn", # required
151
- # type: "DEFAULT", # accepts DEFAULT, HIDDEN
152
- # member_arns: ["ChimeArn"], # required
153
- # chime_bearer: "ChimeArn", # required
154
- # sub_channel_id: "SubChannelId",
155
- # }
156
- #
157
137
  # @!attribute [rw] channel_arn
158
138
  # The ARN of the channel to which you're adding users.
159
139
  # @return [String]
@@ -391,31 +371,6 @@ module Aws::ChimeSDKMessaging
391
371
  include Aws::Structure
392
372
  end
393
373
 
394
- # @note When making an API call, you may pass ChannelFlowCallbackRequest
395
- # data as a hash:
396
- #
397
- # {
398
- # callback_id: "CallbackIdType", # required
399
- # channel_arn: "ChimeArn", # required
400
- # delete_resource: false,
401
- # channel_message: { # required
402
- # message_id: "MessageId", # required
403
- # content: "NonEmptyContent",
404
- # metadata: "Metadata",
405
- # push_notification: {
406
- # title: "PushNotificationTitle",
407
- # body: "PushNotificationBody",
408
- # type: "DEFAULT", # accepts DEFAULT, VOIP
409
- # },
410
- # message_attributes: {
411
- # "MessageAttributeName" => {
412
- # string_values: ["MessageAttributeStringValue"],
413
- # },
414
- # },
415
- # sub_channel_id: "SubChannelId",
416
- # },
417
- # }
418
- #
419
374
  # @!attribute [rw] callback_id
420
375
  # The identifier passed to the processor by the service when invoked.
421
376
  # Use the identifier to call back the service.
@@ -554,16 +509,6 @@ module Aws::ChimeSDKMessaging
554
509
 
555
510
  # The channel membership preferences for an `AppInstanceUser`.
556
511
  #
557
- # @note When making an API call, you may pass ChannelMembershipPreferences
558
- # data as a hash:
559
- #
560
- # {
561
- # push_notifications: {
562
- # allow_notifications: "ALL", # required, accepts ALL, NONE, FILTERED
563
- # filter_rule: "FilterRule",
564
- # },
565
- # }
566
- #
567
512
  # @!attribute [rw] push_notifications
568
513
  # The push notification configuration of a message.
569
514
  # @return [Types::PushNotificationPreferences]
@@ -672,26 +617,6 @@ module Aws::ChimeSDKMessaging
672
617
 
673
618
  # Stores information about a callback.
674
619
  #
675
- # @note When making an API call, you may pass ChannelMessageCallback
676
- # data as a hash:
677
- #
678
- # {
679
- # message_id: "MessageId", # required
680
- # content: "NonEmptyContent",
681
- # metadata: "Metadata",
682
- # push_notification: {
683
- # title: "PushNotificationTitle",
684
- # body: "PushNotificationBody",
685
- # type: "DEFAULT", # accepts DEFAULT, VOIP
686
- # },
687
- # message_attributes: {
688
- # "MessageAttributeName" => {
689
- # string_values: ["MessageAttributeStringValue"],
690
- # },
691
- # },
692
- # sub_channel_id: "SubChannelId",
693
- # }
694
- #
695
620
  # @!attribute [rw] message_id
696
621
  # The message ID.
697
622
  # @return [String]
@@ -929,15 +854,6 @@ module Aws::ChimeSDKMessaging
929
854
  include Aws::Structure
930
855
  end
931
856
 
932
- # @note When making an API call, you may pass CreateChannelBanRequest
933
- # data as a hash:
934
- #
935
- # {
936
- # channel_arn: "ChimeArn", # required
937
- # member_arn: "ChimeArn", # required
938
- # chime_bearer: "ChimeArn", # required
939
- # }
940
- #
941
857
  # @!attribute [rw] channel_arn
942
858
  # The ARN of the ban request.
943
859
  # @return [String]
@@ -978,34 +894,6 @@ module Aws::ChimeSDKMessaging
978
894
  include Aws::Structure
979
895
  end
980
896
 
981
- # @note When making an API call, you may pass CreateChannelFlowRequest
982
- # data as a hash:
983
- #
984
- # {
985
- # app_instance_arn: "ChimeArn", # required
986
- # processors: [ # required
987
- # {
988
- # name: "NonEmptyResourceName", # required
989
- # configuration: { # required
990
- # lambda: { # required
991
- # resource_arn: "LambdaFunctionArn", # required
992
- # invocation_type: "ASYNC", # required, accepts ASYNC
993
- # },
994
- # },
995
- # execution_order: 1, # required
996
- # fallback_action: "CONTINUE", # required, accepts CONTINUE, ABORT
997
- # },
998
- # ],
999
- # name: "NonEmptyResourceName", # required
1000
- # tags: [
1001
- # {
1002
- # key: "TagKey", # required
1003
- # value: "TagValue", # required
1004
- # },
1005
- # ],
1006
- # client_request_token: "ClientRequestToken", # required
1007
- # }
1008
- #
1009
897
  # @!attribute [rw] app_instance_arn
1010
898
  # The ARN of the channel flow request.
1011
899
  # @return [String]
@@ -1050,17 +938,6 @@ module Aws::ChimeSDKMessaging
1050
938
  include Aws::Structure
1051
939
  end
1052
940
 
1053
- # @note When making an API call, you may pass CreateChannelMembershipRequest
1054
- # data as a hash:
1055
- #
1056
- # {
1057
- # channel_arn: "ChimeArn", # required
1058
- # member_arn: "ChimeArn", # required
1059
- # type: "DEFAULT", # required, accepts DEFAULT, HIDDEN
1060
- # chime_bearer: "ChimeArn", # required
1061
- # sub_channel_id: "SubChannelId",
1062
- # }
1063
- #
1064
941
  # @!attribute [rw] channel_arn
1065
942
  # The ARN of the channel to which you're adding users.
1066
943
  # @return [String]
@@ -1125,15 +1002,6 @@ module Aws::ChimeSDKMessaging
1125
1002
  include Aws::Structure
1126
1003
  end
1127
1004
 
1128
- # @note When making an API call, you may pass CreateChannelModeratorRequest
1129
- # data as a hash:
1130
- #
1131
- # {
1132
- # channel_arn: "ChimeArn", # required
1133
- # channel_moderator_arn: "ChimeArn", # required
1134
- # chime_bearer: "ChimeArn", # required
1135
- # }
1136
- #
1137
1005
  # @!attribute [rw] channel_arn
1138
1006
  # The ARN of the channel.
1139
1007
  # @return [String]
@@ -1173,33 +1041,6 @@ module Aws::ChimeSDKMessaging
1173
1041
  include Aws::Structure
1174
1042
  end
1175
1043
 
1176
- # @note When making an API call, you may pass CreateChannelRequest
1177
- # data as a hash:
1178
- #
1179
- # {
1180
- # app_instance_arn: "ChimeArn", # required
1181
- # name: "NonEmptyResourceName", # required
1182
- # mode: "UNRESTRICTED", # accepts UNRESTRICTED, RESTRICTED
1183
- # privacy: "PUBLIC", # accepts PUBLIC, PRIVATE
1184
- # metadata: "Metadata",
1185
- # client_request_token: "ClientRequestToken", # required
1186
- # tags: [
1187
- # {
1188
- # key: "TagKey", # required
1189
- # value: "TagValue", # required
1190
- # },
1191
- # ],
1192
- # chime_bearer: "ChimeArn", # required
1193
- # channel_id: "ChannelId",
1194
- # member_arns: ["ChimeArn"],
1195
- # moderator_arns: ["ChimeArn"],
1196
- # elastic_channel_configuration: {
1197
- # maximum_sub_channels: 1, # required
1198
- # target_memberships_per_sub_channel: 1, # required
1199
- # minimum_membership_percentage: 1, # required
1200
- # },
1201
- # }
1202
- #
1203
1044
  # @!attribute [rw] app_instance_arn
1204
1045
  # The ARN of the channel request.
1205
1046
  # @return [String]
@@ -1289,15 +1130,6 @@ module Aws::ChimeSDKMessaging
1289
1130
  include Aws::Structure
1290
1131
  end
1291
1132
 
1292
- # @note When making an API call, you may pass DeleteChannelBanRequest
1293
- # data as a hash:
1294
- #
1295
- # {
1296
- # channel_arn: "ChimeArn", # required
1297
- # member_arn: "ChimeArn", # required
1298
- # chime_bearer: "ChimeArn", # required
1299
- # }
1300
- #
1301
1133
  # @!attribute [rw] channel_arn
1302
1134
  # The ARN of the channel from which the `AppInstanceUser` was banned.
1303
1135
  # @return [String]
@@ -1320,13 +1152,6 @@ module Aws::ChimeSDKMessaging
1320
1152
  include Aws::Structure
1321
1153
  end
1322
1154
 
1323
- # @note When making an API call, you may pass DeleteChannelFlowRequest
1324
- # data as a hash:
1325
- #
1326
- # {
1327
- # channel_flow_arn: "ChimeArn", # required
1328
- # }
1329
- #
1330
1155
  # @!attribute [rw] channel_flow_arn
1331
1156
  # The ARN of the channel flow.
1332
1157
  # @return [String]
@@ -1339,16 +1164,6 @@ module Aws::ChimeSDKMessaging
1339
1164
  include Aws::Structure
1340
1165
  end
1341
1166
 
1342
- # @note When making an API call, you may pass DeleteChannelMembershipRequest
1343
- # data as a hash:
1344
- #
1345
- # {
1346
- # channel_arn: "ChimeArn", # required
1347
- # member_arn: "ChimeArn", # required
1348
- # chime_bearer: "ChimeArn", # required
1349
- # sub_channel_id: "SubChannelId",
1350
- # }
1351
- #
1352
1167
  # @!attribute [rw] channel_arn
1353
1168
  # The ARN of the channel from which you want to remove the user.
1354
1169
  # @return [String]
@@ -1381,16 +1196,6 @@ module Aws::ChimeSDKMessaging
1381
1196
  include Aws::Structure
1382
1197
  end
1383
1198
 
1384
- # @note When making an API call, you may pass DeleteChannelMessageRequest
1385
- # data as a hash:
1386
- #
1387
- # {
1388
- # channel_arn: "ChimeArn", # required
1389
- # message_id: "MessageId", # required
1390
- # chime_bearer: "ChimeArn", # required
1391
- # sub_channel_id: "SubChannelId",
1392
- # }
1393
- #
1394
1199
  # @!attribute [rw] channel_arn
1395
1200
  # The ARN of the channel.
1396
1201
  # @return [String]
@@ -1423,15 +1228,6 @@ module Aws::ChimeSDKMessaging
1423
1228
  include Aws::Structure
1424
1229
  end
1425
1230
 
1426
- # @note When making an API call, you may pass DeleteChannelModeratorRequest
1427
- # data as a hash:
1428
- #
1429
- # {
1430
- # channel_arn: "ChimeArn", # required
1431
- # channel_moderator_arn: "ChimeArn", # required
1432
- # chime_bearer: "ChimeArn", # required
1433
- # }
1434
- #
1435
1231
  # @!attribute [rw] channel_arn
1436
1232
  # The ARN of the channel.
1437
1233
  # @return [String]
@@ -1454,15 +1250,6 @@ module Aws::ChimeSDKMessaging
1454
1250
  include Aws::Structure
1455
1251
  end
1456
1252
 
1457
- # @note When making an API call, you may pass DeleteChannelRequest
1458
- # data as a hash:
1459
- #
1460
- # {
1461
- # channel_arn: "ChimeArn", # required
1462
- # chime_bearer: "ChimeArn", # required
1463
- # sub_channel_id: "SubChannelId",
1464
- # }
1465
- #
1466
1253
  # @!attribute [rw] channel_arn
1467
1254
  # The ARN of the channel being deleted.
1468
1255
  # @return [String]
@@ -1485,15 +1272,6 @@ module Aws::ChimeSDKMessaging
1485
1272
  include Aws::Structure
1486
1273
  end
1487
1274
 
1488
- # @note When making an API call, you may pass DescribeChannelBanRequest
1489
- # data as a hash:
1490
- #
1491
- # {
1492
- # channel_arn: "ChimeArn", # required
1493
- # member_arn: "ChimeArn", # required
1494
- # chime_bearer: "ChimeArn", # required
1495
- # }
1496
- #
1497
1275
  # @!attribute [rw] channel_arn
1498
1276
  # The ARN of the channel from which the user is banned.
1499
1277
  # @return [String]
@@ -1528,13 +1306,6 @@ module Aws::ChimeSDKMessaging
1528
1306
  include Aws::Structure
1529
1307
  end
1530
1308
 
1531
- # @note When making an API call, you may pass DescribeChannelFlowRequest
1532
- # data as a hash:
1533
- #
1534
- # {
1535
- # channel_flow_arn: "ChimeArn", # required
1536
- # }
1537
- #
1538
1309
  # @!attribute [rw] channel_flow_arn
1539
1310
  # The ARN of the channel flow.
1540
1311
  # @return [String]
@@ -1559,15 +1330,6 @@ module Aws::ChimeSDKMessaging
1559
1330
  include Aws::Structure
1560
1331
  end
1561
1332
 
1562
- # @note When making an API call, you may pass DescribeChannelMembershipForAppInstanceUserRequest
1563
- # data as a hash:
1564
- #
1565
- # {
1566
- # channel_arn: "ChimeArn", # required
1567
- # app_instance_user_arn: "ChimeArn", # required
1568
- # chime_bearer: "ChimeArn", # required
1569
- # }
1570
- #
1571
1333
  # @!attribute [rw] channel_arn
1572
1334
  # The ARN of the channel to which the user belongs.
1573
1335
  # @return [String]
@@ -1602,16 +1364,6 @@ module Aws::ChimeSDKMessaging
1602
1364
  include Aws::Structure
1603
1365
  end
1604
1366
 
1605
- # @note When making an API call, you may pass DescribeChannelMembershipRequest
1606
- # data as a hash:
1607
- #
1608
- # {
1609
- # channel_arn: "ChimeArn", # required
1610
- # member_arn: "ChimeArn", # required
1611
- # chime_bearer: "ChimeArn", # required
1612
- # sub_channel_id: "SubChannelId",
1613
- # }
1614
- #
1615
1367
  # @!attribute [rw] channel_arn
1616
1368
  # The ARN of the channel.
1617
1369
  # @return [String]
@@ -1656,15 +1408,6 @@ module Aws::ChimeSDKMessaging
1656
1408
  include Aws::Structure
1657
1409
  end
1658
1410
 
1659
- # @note When making an API call, you may pass DescribeChannelModeratedByAppInstanceUserRequest
1660
- # data as a hash:
1661
- #
1662
- # {
1663
- # channel_arn: "ChimeArn", # required
1664
- # app_instance_user_arn: "ChimeArn", # required
1665
- # chime_bearer: "ChimeArn", # required
1666
- # }
1667
- #
1668
1411
  # @!attribute [rw] channel_arn
1669
1412
  # The ARN of the moderated channel.
1670
1413
  # @return [String]
@@ -1699,15 +1442,6 @@ module Aws::ChimeSDKMessaging
1699
1442
  include Aws::Structure
1700
1443
  end
1701
1444
 
1702
- # @note When making an API call, you may pass DescribeChannelModeratorRequest
1703
- # data as a hash:
1704
- #
1705
- # {
1706
- # channel_arn: "ChimeArn", # required
1707
- # channel_moderator_arn: "ChimeArn", # required
1708
- # chime_bearer: "ChimeArn", # required
1709
- # }
1710
- #
1711
1445
  # @!attribute [rw] channel_arn
1712
1446
  # The ARN of the channel.
1713
1447
  # @return [String]
@@ -1742,14 +1476,6 @@ module Aws::ChimeSDKMessaging
1742
1476
  include Aws::Structure
1743
1477
  end
1744
1478
 
1745
- # @note When making an API call, you may pass DescribeChannelRequest
1746
- # data as a hash:
1747
- #
1748
- # {
1749
- # channel_arn: "ChimeArn", # required
1750
- # chime_bearer: "ChimeArn", # required
1751
- # }
1752
- #
1753
1479
  # @!attribute [rw] channel_arn
1754
1480
  # The ARN of the channel.
1755
1481
  # @return [String]
@@ -1779,15 +1505,6 @@ module Aws::ChimeSDKMessaging
1779
1505
  include Aws::Structure
1780
1506
  end
1781
1507
 
1782
- # @note When making an API call, you may pass DisassociateChannelFlowRequest
1783
- # data as a hash:
1784
- #
1785
- # {
1786
- # channel_arn: "ChimeArn", # required
1787
- # channel_flow_arn: "ChimeArn", # required
1788
- # chime_bearer: "ChimeArn", # required
1789
- # }
1790
- #
1791
1508
  # @!attribute [rw] channel_arn
1792
1509
  # The ARN of the channel.
1793
1510
  # @return [String]
@@ -1813,15 +1530,6 @@ module Aws::ChimeSDKMessaging
1813
1530
  # The attributes required to configure and create an elastic channel. An
1814
1531
  # elastic channel can support a maximum of 1-million members.
1815
1532
  #
1816
- # @note When making an API call, you may pass ElasticChannelConfiguration
1817
- # data as a hash:
1818
- #
1819
- # {
1820
- # maximum_sub_channels: 1, # required
1821
- # target_memberships_per_sub_channel: 1, # required
1822
- # minimum_membership_percentage: 1, # required
1823
- # }
1824
- #
1825
1533
  # @!attribute [rw] maximum_sub_channels
1826
1534
  # The maximum number of SubChannels that you want to allow in the
1827
1535
  # elastic channel.
@@ -1864,15 +1572,6 @@ module Aws::ChimeSDKMessaging
1864
1572
  include Aws::Structure
1865
1573
  end
1866
1574
 
1867
- # @note When making an API call, you may pass GetChannelMembershipPreferencesRequest
1868
- # data as a hash:
1869
- #
1870
- # {
1871
- # channel_arn: "ChimeArn", # required
1872
- # member_arn: "ChimeArn", # required
1873
- # chime_bearer: "ChimeArn", # required
1874
- # }
1875
- #
1876
1575
  # @!attribute [rw] channel_arn
1877
1576
  # The ARN of the channel.
1878
1577
  # @return [String]
@@ -1917,16 +1616,6 @@ module Aws::ChimeSDKMessaging
1917
1616
  include Aws::Structure
1918
1617
  end
1919
1618
 
1920
- # @note When making an API call, you may pass GetChannelMessageRequest
1921
- # data as a hash:
1922
- #
1923
- # {
1924
- # channel_arn: "ChimeArn", # required
1925
- # message_id: "MessageId", # required
1926
- # chime_bearer: "ChimeArn", # required
1927
- # sub_channel_id: "SubChannelId",
1928
- # }
1929
- #
1930
1619
  # @!attribute [rw] channel_arn
1931
1620
  # The ARN of the channel.
1932
1621
  # @return [String]
@@ -1971,16 +1660,6 @@ module Aws::ChimeSDKMessaging
1971
1660
  include Aws::Structure
1972
1661
  end
1973
1662
 
1974
- # @note When making an API call, you may pass GetChannelMessageStatusRequest
1975
- # data as a hash:
1976
- #
1977
- # {
1978
- # channel_arn: "ChimeArn", # required
1979
- # message_id: "MessageId", # required
1980
- # chime_bearer: "ChimeArn", # required
1981
- # sub_channel_id: "SubChannelId",
1982
- # }
1983
- #
1984
1663
  # @!attribute [rw] channel_arn
1985
1664
  # The ARN of the channel
1986
1665
  # @return [String]
@@ -2064,14 +1743,6 @@ module Aws::ChimeSDKMessaging
2064
1743
 
2065
1744
  # Stores metadata about a Lambda processor.
2066
1745
  #
2067
- # @note When making an API call, you may pass LambdaConfiguration
2068
- # data as a hash:
2069
- #
2070
- # {
2071
- # resource_arn: "LambdaFunctionArn", # required
2072
- # invocation_type: "ASYNC", # required, accepts ASYNC
2073
- # }
2074
- #
2075
1746
  # @!attribute [rw] resource_arn
2076
1747
  # The ARN of the Lambda message processing function.
2077
1748
  # @return [String]
@@ -2089,16 +1760,6 @@ module Aws::ChimeSDKMessaging
2089
1760
  include Aws::Structure
2090
1761
  end
2091
1762
 
2092
- # @note When making an API call, you may pass ListChannelBansRequest
2093
- # data as a hash:
2094
- #
2095
- # {
2096
- # channel_arn: "ChimeArn", # required
2097
- # max_results: 1,
2098
- # next_token: "NextToken",
2099
- # chime_bearer: "ChimeArn", # required
2100
- # }
2101
- #
2102
1763
  # @!attribute [rw] channel_arn
2103
1764
  # The ARN of the channel.
2104
1765
  # @return [String]
@@ -2150,15 +1811,6 @@ module Aws::ChimeSDKMessaging
2150
1811
  include Aws::Structure
2151
1812
  end
2152
1813
 
2153
- # @note When making an API call, you may pass ListChannelFlowsRequest
2154
- # data as a hash:
2155
- #
2156
- # {
2157
- # app_instance_arn: "ChimeArn", # required
2158
- # max_results: 1,
2159
- # next_token: "NextToken",
2160
- # }
2161
- #
2162
1814
  # @!attribute [rw] app_instance_arn
2163
1815
  # The ARN of the app instance.
2164
1816
  # @return [String]
@@ -2200,16 +1852,6 @@ module Aws::ChimeSDKMessaging
2200
1852
  include Aws::Structure
2201
1853
  end
2202
1854
 
2203
- # @note When making an API call, you may pass ListChannelMembershipsForAppInstanceUserRequest
2204
- # data as a hash:
2205
- #
2206
- # {
2207
- # app_instance_user_arn: "ChimeArn",
2208
- # max_results: 1,
2209
- # next_token: "NextToken",
2210
- # chime_bearer: "ChimeArn", # required
2211
- # }
2212
- #
2213
1855
  # @!attribute [rw] app_instance_user_arn
2214
1856
  # The ARN of the `AppInstanceUser`s
2215
1857
  # @return [String]
@@ -2256,18 +1898,6 @@ module Aws::ChimeSDKMessaging
2256
1898
  include Aws::Structure
2257
1899
  end
2258
1900
 
2259
- # @note When making an API call, you may pass ListChannelMembershipsRequest
2260
- # data as a hash:
2261
- #
2262
- # {
2263
- # channel_arn: "ChimeArn", # required
2264
- # type: "DEFAULT", # accepts DEFAULT, HIDDEN
2265
- # max_results: 1,
2266
- # next_token: "NextToken",
2267
- # chime_bearer: "ChimeArn", # required
2268
- # sub_channel_id: "SubChannelId",
2269
- # }
2270
- #
2271
1901
  # @!attribute [rw] channel_arn
2272
1902
  # The maximum number of channel memberships that you want returned.
2273
1903
  # @return [String]
@@ -2337,20 +1967,6 @@ module Aws::ChimeSDKMessaging
2337
1967
  include Aws::Structure
2338
1968
  end
2339
1969
 
2340
- # @note When making an API call, you may pass ListChannelMessagesRequest
2341
- # data as a hash:
2342
- #
2343
- # {
2344
- # channel_arn: "ChimeArn", # required
2345
- # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
2346
- # not_before: Time.now,
2347
- # not_after: Time.now,
2348
- # max_results: 1,
2349
- # next_token: "NextToken",
2350
- # chime_bearer: "ChimeArn", # required
2351
- # sub_channel_id: "SubChannelId",
2352
- # }
2353
- #
2354
1970
  # @!attribute [rw] channel_arn
2355
1971
  # The ARN of the channel.
2356
1972
  # @return [String]
@@ -2433,16 +2049,6 @@ module Aws::ChimeSDKMessaging
2433
2049
  include Aws::Structure
2434
2050
  end
2435
2051
 
2436
- # @note When making an API call, you may pass ListChannelModeratorsRequest
2437
- # data as a hash:
2438
- #
2439
- # {
2440
- # channel_arn: "ChimeArn", # required
2441
- # max_results: 1,
2442
- # next_token: "NextToken",
2443
- # chime_bearer: "ChimeArn", # required
2444
- # }
2445
- #
2446
2052
  # @!attribute [rw] channel_arn
2447
2053
  # The ARN of the channel.
2448
2054
  # @return [String]
@@ -2494,15 +2100,6 @@ module Aws::ChimeSDKMessaging
2494
2100
  include Aws::Structure
2495
2101
  end
2496
2102
 
2497
- # @note When making an API call, you may pass ListChannelsAssociatedWithChannelFlowRequest
2498
- # data as a hash:
2499
- #
2500
- # {
2501
- # channel_flow_arn: "ChimeArn", # required
2502
- # max_results: 1,
2503
- # next_token: "NextToken",
2504
- # }
2505
- #
2506
2103
  # @!attribute [rw] channel_flow_arn
2507
2104
  # The ARN of the channel flow.
2508
2105
  # @return [String]
@@ -2544,16 +2141,6 @@ module Aws::ChimeSDKMessaging
2544
2141
  include Aws::Structure
2545
2142
  end
2546
2143
 
2547
- # @note When making an API call, you may pass ListChannelsModeratedByAppInstanceUserRequest
2548
- # data as a hash:
2549
- #
2550
- # {
2551
- # app_instance_user_arn: "ChimeArn",
2552
- # max_results: 1,
2553
- # next_token: "NextToken",
2554
- # chime_bearer: "ChimeArn", # required
2555
- # }
2556
- #
2557
2144
  # @!attribute [rw] app_instance_user_arn
2558
2145
  # The ARN of the user in the moderated channel.
2559
2146
  # @return [String]
@@ -2600,17 +2187,6 @@ module Aws::ChimeSDKMessaging
2600
2187
  include Aws::Structure
2601
2188
  end
2602
2189
 
2603
- # @note When making an API call, you may pass ListChannelsRequest
2604
- # data as a hash:
2605
- #
2606
- # {
2607
- # app_instance_arn: "ChimeArn", # required
2608
- # privacy: "PUBLIC", # accepts PUBLIC, PRIVATE
2609
- # max_results: 1,
2610
- # next_token: "NextToken",
2611
- # chime_bearer: "ChimeArn", # required
2612
- # }
2613
- #
2614
2190
  # @!attribute [rw] app_instance_arn
2615
2191
  # The ARN of the `AppInstance`.
2616
2192
  # @return [String]
@@ -2664,16 +2240,6 @@ module Aws::ChimeSDKMessaging
2664
2240
  include Aws::Structure
2665
2241
  end
2666
2242
 
2667
- # @note When making an API call, you may pass ListSubChannelsRequest
2668
- # data as a hash:
2669
- #
2670
- # {
2671
- # channel_arn: "ChimeArn", # required
2672
- # chime_bearer: "ChimeArn", # required
2673
- # max_results: 1,
2674
- # next_token: "NextToken",
2675
- # }
2676
- #
2677
2243
  # @!attribute [rw] channel_arn
2678
2244
  # The ARN of elastic channel.
2679
2245
  # @return [String]
@@ -2725,13 +2291,6 @@ module Aws::ChimeSDKMessaging
2725
2291
  include Aws::Structure
2726
2292
  end
2727
2293
 
2728
- # @note When making an API call, you may pass ListTagsForResourceRequest
2729
- # data as a hash:
2730
- #
2731
- # {
2732
- # resource_arn: "ChimeArn", # required
2733
- # }
2734
- #
2735
2294
  # @!attribute [rw] resource_arn
2736
2295
  # The ARN of the resource.
2737
2296
  # @return [String]
@@ -2758,13 +2317,6 @@ module Aws::ChimeSDKMessaging
2758
2317
 
2759
2318
  # A list of message attribute values.
2760
2319
  #
2761
- # @note When making an API call, you may pass MessageAttributeValue
2762
- # data as a hash:
2763
- #
2764
- # {
2765
- # string_values: ["MessageAttributeStringValue"],
2766
- # }
2767
- #
2768
2320
  # @!attribute [rw] string_values
2769
2321
  # The strings in a message attribute value.
2770
2322
  # @return [Array<String>]
@@ -2811,21 +2363,6 @@ module Aws::ChimeSDKMessaging
2811
2363
 
2812
2364
  # The information about a processor in a channel flow.
2813
2365
  #
2814
- # @note When making an API call, you may pass Processor
2815
- # data as a hash:
2816
- #
2817
- # {
2818
- # name: "NonEmptyResourceName", # required
2819
- # configuration: { # required
2820
- # lambda: { # required
2821
- # resource_arn: "LambdaFunctionArn", # required
2822
- # invocation_type: "ASYNC", # required, accepts ASYNC
2823
- # },
2824
- # },
2825
- # execution_order: 1, # required
2826
- # fallback_action: "CONTINUE", # required, accepts CONTINUE, ABORT
2827
- # }
2828
- #
2829
2366
  # @!attribute [rw] name
2830
2367
  # The name of the channel flow.
2831
2368
  # @return [String]
@@ -2865,16 +2402,6 @@ module Aws::ChimeSDKMessaging
2865
2402
 
2866
2403
  # A processor's metadata.
2867
2404
  #
2868
- # @note When making an API call, you may pass ProcessorConfiguration
2869
- # data as a hash:
2870
- #
2871
- # {
2872
- # lambda: { # required
2873
- # resource_arn: "LambdaFunctionArn", # required
2874
- # invocation_type: "ASYNC", # required, accepts ASYNC
2875
- # },
2876
- # }
2877
- #
2878
2405
  # @!attribute [rw] lambda
2879
2406
  # Indicates that the processor is of type Lambda.
2880
2407
  # @return [Types::LambdaConfiguration]
@@ -2889,15 +2416,6 @@ module Aws::ChimeSDKMessaging
2889
2416
 
2890
2417
  # The push notification configuration of the message.
2891
2418
  #
2892
- # @note When making an API call, you may pass PushNotificationConfiguration
2893
- # data as a hash:
2894
- #
2895
- # {
2896
- # title: "PushNotificationTitle",
2897
- # body: "PushNotificationBody",
2898
- # type: "DEFAULT", # accepts DEFAULT, VOIP
2899
- # }
2900
- #
2901
2419
  # @!attribute [rw] title
2902
2420
  # The title of the push notification.
2903
2421
  # @return [String]
@@ -2924,14 +2442,6 @@ module Aws::ChimeSDKMessaging
2924
2442
 
2925
2443
  # The channel membership preferences for push notification.
2926
2444
  #
2927
- # @note When making an API call, you may pass PushNotificationPreferences
2928
- # data as a hash:
2929
- #
2930
- # {
2931
- # allow_notifications: "ALL", # required, accepts ALL, NONE, FILTERED
2932
- # filter_rule: "FilterRule",
2933
- # }
2934
- #
2935
2445
  # @!attribute [rw] allow_notifications
2936
2446
  # Enum value that indicates which push notifications to send to the
2937
2447
  # requested member of a channel. `ALL` sends all push notifications,
@@ -2953,21 +2463,6 @@ module Aws::ChimeSDKMessaging
2953
2463
  include Aws::Structure
2954
2464
  end
2955
2465
 
2956
- # @note When making an API call, you may pass PutChannelMembershipPreferencesRequest
2957
- # data as a hash:
2958
- #
2959
- # {
2960
- # channel_arn: "ChimeArn", # required
2961
- # member_arn: "ChimeArn", # required
2962
- # chime_bearer: "ChimeArn", # required
2963
- # preferences: { # required
2964
- # push_notifications: {
2965
- # allow_notifications: "ALL", # required, accepts ALL, NONE, FILTERED
2966
- # filter_rule: "FilterRule",
2967
- # },
2968
- # },
2969
- # }
2970
- #
2971
2466
  # @!attribute [rw] channel_arn
2972
2467
  # The ARN of the channel.
2973
2468
  # @return [String]
@@ -3017,16 +2512,6 @@ module Aws::ChimeSDKMessaging
3017
2512
  include Aws::Structure
3018
2513
  end
3019
2514
 
3020
- # @note When making an API call, you may pass RedactChannelMessageRequest
3021
- # data as a hash:
3022
- #
3023
- # {
3024
- # channel_arn: "ChimeArn", # required
3025
- # message_id: "MessageId", # required
3026
- # chime_bearer: "ChimeArn", # required
3027
- # sub_channel_id: "SubChannelId",
3028
- # }
3029
- #
3030
2515
  # @!attribute [rw] channel_arn
3031
2516
  # The ARN of the channel containing the messages that you want to
3032
2517
  # redact.
@@ -3100,22 +2585,6 @@ module Aws::ChimeSDKMessaging
3100
2585
  include Aws::Structure
3101
2586
  end
3102
2587
 
3103
- # @note When making an API call, you may pass SearchChannelsRequest
3104
- # data as a hash:
3105
- #
3106
- # {
3107
- # chime_bearer: "ChimeArn",
3108
- # fields: [ # required
3109
- # {
3110
- # key: "MEMBERS", # required, accepts MEMBERS
3111
- # values: ["SearchFieldValue"], # required
3112
- # operator: "EQUALS", # required, accepts EQUALS, INCLUDES
3113
- # },
3114
- # ],
3115
- # max_results: 1,
3116
- # next_token: "NextToken",
3117
- # }
3118
- #
3119
2588
  # @!attribute [rw] chime_bearer
3120
2589
  # The `AppInstanceUserArn` of the user making the API call.
3121
2590
  # @return [String]
@@ -3164,15 +2633,6 @@ module Aws::ChimeSDKMessaging
3164
2633
 
3165
2634
  # A `Field` of the channel that you want to search.
3166
2635
  #
3167
- # @note When making an API call, you may pass SearchField
3168
- # data as a hash:
3169
- #
3170
- # {
3171
- # key: "MEMBERS", # required, accepts MEMBERS
3172
- # values: ["SearchFieldValue"], # required
3173
- # operator: "EQUALS", # required, accepts EQUALS, INCLUDES
3174
- # }
3175
- #
3176
2636
  # @!attribute [rw] key
3177
2637
  # An `enum` value that indicates the key to search the channel on.
3178
2638
  # `MEMBERS` allows you to search channels based on memberships. You
@@ -3209,30 +2669,6 @@ module Aws::ChimeSDKMessaging
3209
2669
  include Aws::Structure
3210
2670
  end
3211
2671
 
3212
- # @note When making an API call, you may pass SendChannelMessageRequest
3213
- # data as a hash:
3214
- #
3215
- # {
3216
- # channel_arn: "ChimeArn", # required
3217
- # content: "NonEmptyContent", # required
3218
- # type: "STANDARD", # required, accepts STANDARD, CONTROL
3219
- # persistence: "PERSISTENT", # required, accepts PERSISTENT, NON_PERSISTENT
3220
- # metadata: "Metadata",
3221
- # client_request_token: "ClientRequestToken", # required
3222
- # chime_bearer: "ChimeArn", # required
3223
- # push_notification: {
3224
- # title: "PushNotificationTitle",
3225
- # body: "PushNotificationBody",
3226
- # type: "DEFAULT", # accepts DEFAULT, VOIP
3227
- # },
3228
- # message_attributes: {
3229
- # "MessageAttributeName" => {
3230
- # string_values: ["MessageAttributeStringValue"],
3231
- # },
3232
- # },
3233
- # sub_channel_id: "SubChannelId",
3234
- # }
3235
- #
3236
2672
  # @!attribute [rw] channel_arn
3237
2673
  # The ARN of the channel.
3238
2674
  # @return [String]
@@ -3377,14 +2813,6 @@ module Aws::ChimeSDKMessaging
3377
2813
 
3378
2814
  # A tag object containing a key-value pair.
3379
2815
  #
3380
- # @note When making an API call, you may pass Tag
3381
- # data as a hash:
3382
- #
3383
- # {
3384
- # key: "TagKey", # required
3385
- # value: "TagValue", # required
3386
- # }
3387
- #
3388
2816
  # @!attribute [rw] key
3389
2817
  # The key in a tag.
3390
2818
  # @return [String]
@@ -3402,19 +2830,6 @@ module Aws::ChimeSDKMessaging
3402
2830
  include Aws::Structure
3403
2831
  end
3404
2832
 
3405
- # @note When making an API call, you may pass TagResourceRequest
3406
- # data as a hash:
3407
- #
3408
- # {
3409
- # resource_arn: "ChimeArn", # required
3410
- # tags: [ # required
3411
- # {
3412
- # key: "TagKey", # required
3413
- # value: "TagValue", # required
3414
- # },
3415
- # ],
3416
- # }
3417
- #
3418
2833
  # @!attribute [rw] resource_arn
3419
2834
  # The resource ARN.
3420
2835
  # @return [String]
@@ -3466,14 +2881,6 @@ module Aws::ChimeSDKMessaging
3466
2881
  include Aws::Structure
3467
2882
  end
3468
2883
 
3469
- # @note When making an API call, you may pass UntagResourceRequest
3470
- # data as a hash:
3471
- #
3472
- # {
3473
- # resource_arn: "ChimeArn", # required
3474
- # tag_keys: ["TagKey"], # required
3475
- # }
3476
- #
3477
2884
  # @!attribute [rw] resource_arn
3478
2885
  # The resource ARN.
3479
2886
  # @return [String]
@@ -3491,27 +2898,6 @@ module Aws::ChimeSDKMessaging
3491
2898
  include Aws::Structure
3492
2899
  end
3493
2900
 
3494
- # @note When making an API call, you may pass UpdateChannelFlowRequest
3495
- # data as a hash:
3496
- #
3497
- # {
3498
- # channel_flow_arn: "ChimeArn", # required
3499
- # processors: [ # required
3500
- # {
3501
- # name: "NonEmptyResourceName", # required
3502
- # configuration: { # required
3503
- # lambda: { # required
3504
- # resource_arn: "LambdaFunctionArn", # required
3505
- # invocation_type: "ASYNC", # required, accepts ASYNC
3506
- # },
3507
- # },
3508
- # execution_order: 1, # required
3509
- # fallback_action: "CONTINUE", # required, accepts CONTINUE, ABORT
3510
- # },
3511
- # ],
3512
- # name: "NonEmptyResourceName", # required
3513
- # }
3514
- #
3515
2901
  # @!attribute [rw] channel_flow_arn
3516
2902
  # The ARN of the channel flow.
3517
2903
  # @return [String]
@@ -3546,18 +2932,6 @@ module Aws::ChimeSDKMessaging
3546
2932
  include Aws::Structure
3547
2933
  end
3548
2934
 
3549
- # @note When making an API call, you may pass UpdateChannelMessageRequest
3550
- # data as a hash:
3551
- #
3552
- # {
3553
- # channel_arn: "ChimeArn", # required
3554
- # message_id: "MessageId", # required
3555
- # content: "Content",
3556
- # metadata: "Metadata",
3557
- # chime_bearer: "ChimeArn", # required
3558
- # sub_channel_id: "SubChannelId",
3559
- # }
3560
- #
3561
2935
  # @!attribute [rw] channel_arn
3562
2936
  # The ARN of the channel.
3563
2937
  # @return [String]
@@ -3627,15 +3001,6 @@ module Aws::ChimeSDKMessaging
3627
3001
  include Aws::Structure
3628
3002
  end
3629
3003
 
3630
- # @note When making an API call, you may pass UpdateChannelReadMarkerRequest
3631
- # data as a hash:
3632
- #
3633
- # {
3634
- # channel_arn: "ChimeArn", # required
3635
- # chime_bearer: "ChimeArn", # required
3636
- # sub_channel_id: "SubChannelId",
3637
- # }
3638
- #
3639
3004
  # @!attribute [rw] channel_arn
3640
3005
  # The ARN of the channel.
3641
3006
  # @return [String]
@@ -3675,17 +3040,6 @@ module Aws::ChimeSDKMessaging
3675
3040
  include Aws::Structure
3676
3041
  end
3677
3042
 
3678
- # @note When making an API call, you may pass UpdateChannelRequest
3679
- # data as a hash:
3680
- #
3681
- # {
3682
- # channel_arn: "ChimeArn", # required
3683
- # name: "NonEmptyResourceName",
3684
- # mode: "UNRESTRICTED", # accepts UNRESTRICTED, RESTRICTED
3685
- # metadata: "Metadata",
3686
- # chime_bearer: "ChimeArn", # required
3687
- # }
3688
- #
3689
3043
  # @!attribute [rw] channel_arn
3690
3044
  # The ARN of the channel.
3691
3045
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-chimesdkmessaging/customizations'
52
52
  # @!group service
53
53
  module Aws::ChimeSDKMessaging
54
54
 
55
- GEM_VERSION = '1.14.0'
55
+ GEM_VERSION = '1.15.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chimesdkmessaging
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.15.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