aws-sdk-ssmguiconnect 1.0.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.
@@ -0,0 +1,256 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::SSMGuiConnect
11
+ module Types
12
+
13
+ # You do not have sufficient access to perform this action.
14
+ #
15
+ # @!attribute [rw] message
16
+ # @return [String]
17
+ #
18
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/AccessDeniedException AWS API Documentation
19
+ #
20
+ class AccessDeniedException < Struct.new(
21
+ :message)
22
+ SENSITIVE = []
23
+ include Aws::Structure
24
+ end
25
+
26
+ # An error occurred due to a conflict.
27
+ #
28
+ # @!attribute [rw] message
29
+ # @return [String]
30
+ #
31
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/ConflictException AWS API Documentation
32
+ #
33
+ class ConflictException < Struct.new(
34
+ :message)
35
+ SENSITIVE = []
36
+ include Aws::Structure
37
+ end
38
+
39
+ # The set of preferences used for recording RDP connections in the
40
+ # requesting Amazon Web Services account and Amazon Web Services Region.
41
+ # This includes details such as which S3 bucket recordings are stored
42
+ # in.
43
+ #
44
+ # @!attribute [rw] kms_key_arn
45
+ # The ARN of a KMS key that is used to encrypt data while it is being
46
+ # processed by the service. This key must exist in the same Amazon Web
47
+ # Services Region as the node you start an RDP connection to.
48
+ # @return [String]
49
+ #
50
+ # @!attribute [rw] recording_destinations
51
+ # Determines where recordings of RDP connections are stored.
52
+ # @return [Types::RecordingDestinations]
53
+ #
54
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/ConnectionRecordingPreferences AWS API Documentation
55
+ #
56
+ class ConnectionRecordingPreferences < Struct.new(
57
+ :kms_key_arn,
58
+ :recording_destinations)
59
+ SENSITIVE = []
60
+ include Aws::Structure
61
+ end
62
+
63
+ # @!attribute [rw] client_token
64
+ # User-provided idempotency token.
65
+ #
66
+ # **A suitable default value is auto-generated.** You should normally
67
+ # not need to pass this option.
68
+ # @return [String]
69
+ #
70
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/DeleteConnectionRecordingPreferencesRequest AWS API Documentation
71
+ #
72
+ class DeleteConnectionRecordingPreferencesRequest < Struct.new(
73
+ :client_token)
74
+ SENSITIVE = []
75
+ include Aws::Structure
76
+ end
77
+
78
+ # @!attribute [rw] client_token
79
+ # Service-provided idempotency token.
80
+ # @return [String]
81
+ #
82
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/DeleteConnectionRecordingPreferencesResponse AWS API Documentation
83
+ #
84
+ class DeleteConnectionRecordingPreferencesResponse < Struct.new(
85
+ :client_token)
86
+ SENSITIVE = []
87
+ include Aws::Structure
88
+ end
89
+
90
+ # @!attribute [rw] client_token
91
+ # Service-provided idempotency token.
92
+ # @return [String]
93
+ #
94
+ # @!attribute [rw] connection_recording_preferences
95
+ # The set of preferences used for recording RDP connections in the
96
+ # requesting Amazon Web Services account and Amazon Web Services
97
+ # Region. This includes details such as which S3 bucket recordings are
98
+ # stored in.
99
+ # @return [Types::ConnectionRecordingPreferences]
100
+ #
101
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/GetConnectionRecordingPreferencesResponse AWS API Documentation
102
+ #
103
+ class GetConnectionRecordingPreferencesResponse < Struct.new(
104
+ :client_token,
105
+ :connection_recording_preferences)
106
+ SENSITIVE = []
107
+ include Aws::Structure
108
+ end
109
+
110
+ # The request processing has failed because of an unknown error,
111
+ # exception or failure.
112
+ #
113
+ # @!attribute [rw] message
114
+ # @return [String]
115
+ #
116
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/InternalServerException AWS API Documentation
117
+ #
118
+ class InternalServerException < Struct.new(
119
+ :message)
120
+ SENSITIVE = []
121
+ include Aws::Structure
122
+ end
123
+
124
+ # Determines where recordings of RDP connections are stored.
125
+ #
126
+ # @!attribute [rw] s3_buckets
127
+ # The S3 bucket where RDP connection recordings are stored.
128
+ # @return [Array<Types::S3Bucket>]
129
+ #
130
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/RecordingDestinations AWS API Documentation
131
+ #
132
+ class RecordingDestinations < Struct.new(
133
+ :s3_buckets)
134
+ SENSITIVE = []
135
+ include Aws::Structure
136
+ end
137
+
138
+ # The resource could not be found.
139
+ #
140
+ # @!attribute [rw] message
141
+ # @return [String]
142
+ #
143
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/ResourceNotFoundException AWS API Documentation
144
+ #
145
+ class ResourceNotFoundException < Struct.new(
146
+ :message)
147
+ SENSITIVE = []
148
+ include Aws::Structure
149
+ end
150
+
151
+ # The S3 bucket where RDP connection recordings are stored.
152
+ #
153
+ # @!attribute [rw] bucket_name
154
+ # The name of the S3 bucket where RDP connection recordings are
155
+ # stored.
156
+ # @return [String]
157
+ #
158
+ # @!attribute [rw] bucket_owner
159
+ # The Amazon Web Services account number that owns the S3 bucket.
160
+ # @return [String]
161
+ #
162
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/S3Bucket AWS API Documentation
163
+ #
164
+ class S3Bucket < Struct.new(
165
+ :bucket_name,
166
+ :bucket_owner)
167
+ SENSITIVE = []
168
+ include Aws::Structure
169
+ end
170
+
171
+ # Your request exceeds a service quota.
172
+ #
173
+ # @!attribute [rw] message
174
+ # @return [String]
175
+ #
176
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/ServiceQuotaExceededException AWS API Documentation
177
+ #
178
+ class ServiceQuotaExceededException < Struct.new(
179
+ :message)
180
+ SENSITIVE = []
181
+ include Aws::Structure
182
+ end
183
+
184
+ # The request was denied due to request throttling.
185
+ #
186
+ # @!attribute [rw] message
187
+ # @return [String]
188
+ #
189
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/ThrottlingException AWS API Documentation
190
+ #
191
+ class ThrottlingException < Struct.new(
192
+ :message)
193
+ SENSITIVE = []
194
+ include Aws::Structure
195
+ end
196
+
197
+ # @!attribute [rw] client_token
198
+ # User-provided idempotency token.
199
+ #
200
+ # **A suitable default value is auto-generated.** You should normally
201
+ # not need to pass this option.
202
+ # @return [String]
203
+ #
204
+ # @!attribute [rw] connection_recording_preferences
205
+ # The set of preferences used for recording RDP connections in the
206
+ # requesting Amazon Web Services account and Amazon Web Services
207
+ # Region. This includes details such as which S3 bucket recordings are
208
+ # stored in.
209
+ # @return [Types::ConnectionRecordingPreferences]
210
+ #
211
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/UpdateConnectionRecordingPreferencesRequest AWS API Documentation
212
+ #
213
+ class UpdateConnectionRecordingPreferencesRequest < Struct.new(
214
+ :client_token,
215
+ :connection_recording_preferences)
216
+ SENSITIVE = []
217
+ include Aws::Structure
218
+ end
219
+
220
+ # @!attribute [rw] client_token
221
+ # Service-provided idempotency token.
222
+ # @return [String]
223
+ #
224
+ # @!attribute [rw] connection_recording_preferences
225
+ # The set of preferences used for recording RDP connections in the
226
+ # requesting Amazon Web Services account and Amazon Web Services
227
+ # Region. This includes details such as which S3 bucket recordings are
228
+ # stored in.
229
+ # @return [Types::ConnectionRecordingPreferences]
230
+ #
231
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/UpdateConnectionRecordingPreferencesResponse AWS API Documentation
232
+ #
233
+ class UpdateConnectionRecordingPreferencesResponse < Struct.new(
234
+ :client_token,
235
+ :connection_recording_preferences)
236
+ SENSITIVE = []
237
+ include Aws::Structure
238
+ end
239
+
240
+ # The input fails to satisfy the constraints specified by an AWS
241
+ # service.
242
+ #
243
+ # @!attribute [rw] message
244
+ # @return [String]
245
+ #
246
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-guiconnect-2021-05-01/ValidationException AWS API Documentation
247
+ #
248
+ class ValidationException < Struct.new(
249
+ :message)
250
+ SENSITIVE = []
251
+ include Aws::Structure
252
+ end
253
+
254
+ end
255
+ end
256
+
@@ -0,0 +1,61 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+
11
+ require 'aws-sdk-core'
12
+ require 'aws-sigv4'
13
+
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:ssmguiconnect)
15
+
16
+ # This module provides support for AWS SSM-GUIConnect. This module is available in the
17
+ # `aws-sdk-ssmguiconnect` gem.
18
+ #
19
+ # # Client
20
+ #
21
+ # The {Client} class provides one method for each API operation. Operation
22
+ # methods each accept a hash of request parameters and return a response
23
+ # structure.
24
+ #
25
+ # ssm_gui_connect = Aws::SSMGuiConnect::Client.new
26
+ # resp = ssm_gui_connect.delete_connection_recording_preferences(params)
27
+ #
28
+ # See {Client} for more information.
29
+ #
30
+ # # Errors
31
+ #
32
+ # Errors returned from AWS SSM-GUIConnect are defined in the
33
+ # {Errors} module and all extend {Errors::ServiceError}.
34
+ #
35
+ # begin
36
+ # # do stuff
37
+ # rescue Aws::SSMGuiConnect::Errors::ServiceError
38
+ # # rescues all AWS SSM-GUIConnect API errors
39
+ # end
40
+ #
41
+ # See {Errors} for more information.
42
+ #
43
+ # @!group service
44
+ module Aws::SSMGuiConnect
45
+ autoload :Types, 'aws-sdk-ssmguiconnect/types'
46
+ autoload :ClientApi, 'aws-sdk-ssmguiconnect/client_api'
47
+ module Plugins
48
+ autoload :Endpoints, 'aws-sdk-ssmguiconnect/plugins/endpoints.rb'
49
+ end
50
+ autoload :Client, 'aws-sdk-ssmguiconnect/client'
51
+ autoload :Errors, 'aws-sdk-ssmguiconnect/errors'
52
+ autoload :Resource, 'aws-sdk-ssmguiconnect/resource'
53
+ autoload :EndpointParameters, 'aws-sdk-ssmguiconnect/endpoint_parameters'
54
+ autoload :EndpointProvider, 'aws-sdk-ssmguiconnect/endpoint_provider'
55
+ autoload :Endpoints, 'aws-sdk-ssmguiconnect/endpoints'
56
+
57
+ GEM_VERSION = '1.0.0'
58
+
59
+ end
60
+
61
+ require_relative 'aws-sdk-ssmguiconnect/customizations'
data/sig/client.rbs ADDED
@@ -0,0 +1,123 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SSMGuiConnect
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMGuiConnect/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?account_id: String,
19
+ ?active_endpoint_cache: bool,
20
+ ?adaptive_retry_wait_to_fill: bool,
21
+ ?client_side_monitoring: bool,
22
+ ?client_side_monitoring_client_id: String,
23
+ ?client_side_monitoring_host: String,
24
+ ?client_side_monitoring_port: Integer,
25
+ ?client_side_monitoring_publisher: untyped,
26
+ ?convert_params: bool,
27
+ ?correct_clock_skew: bool,
28
+ ?defaults_mode: String,
29
+ ?disable_host_prefix_injection: bool,
30
+ ?disable_request_compression: bool,
31
+ ?endpoint: String,
32
+ ?endpoint_cache_max_entries: Integer,
33
+ ?endpoint_cache_max_threads: Integer,
34
+ ?endpoint_cache_poll_interval: Integer,
35
+ ?endpoint_discovery: bool,
36
+ ?ignore_configured_endpoint_urls: bool,
37
+ ?log_formatter: untyped,
38
+ ?log_level: Symbol,
39
+ ?logger: untyped,
40
+ ?max_attempts: Integer,
41
+ ?profile: String,
42
+ ?request_checksum_calculation: String,
43
+ ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
45
+ ?retry_backoff: Proc,
46
+ ?retry_base_delay: Float,
47
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
48
+ ?retry_limit: Integer,
49
+ ?retry_max_delay: Integer,
50
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
51
+ ?sdk_ua_app_id: String,
52
+ ?secret_access_key: String,
53
+ ?session_token: String,
54
+ ?sigv4a_signing_region_set: Array[String],
55
+ ?stub_responses: untyped,
56
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
57
+ ?token_provider: untyped,
58
+ ?use_dualstack_endpoint: bool,
59
+ ?use_fips_endpoint: bool,
60
+ ?validate_params: bool,
61
+ ?endpoint_provider: untyped,
62
+ ?http_proxy: String,
63
+ ?http_open_timeout: (Float | Integer),
64
+ ?http_read_timeout: (Float | Integer),
65
+ ?http_idle_timeout: (Float | Integer),
66
+ ?http_continue_timeout: (Float | Integer),
67
+ ?ssl_timeout: (Float | Integer | nil),
68
+ ?http_wire_trace: bool,
69
+ ?ssl_verify_peer: bool,
70
+ ?ssl_ca_bundle: String,
71
+ ?ssl_ca_directory: String,
72
+ ?ssl_ca_store: String,
73
+ ?on_chunk_received: Proc,
74
+ ?on_chunk_sent: Proc,
75
+ ?raise_response_errors: bool
76
+ ) -> instance
77
+ | (?Hash[Symbol, untyped]) -> instance
78
+
79
+
80
+ interface _DeleteConnectionRecordingPreferencesResponseSuccess
81
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConnectionRecordingPreferencesResponse]
82
+ def client_token: () -> ::String
83
+ end
84
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMGuiConnect/Client.html#delete_connection_recording_preferences-instance_method
85
+ def delete_connection_recording_preferences: (
86
+ ?client_token: ::String
87
+ ) -> _DeleteConnectionRecordingPreferencesResponseSuccess
88
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConnectionRecordingPreferencesResponseSuccess
89
+
90
+ interface _GetConnectionRecordingPreferencesResponseSuccess
91
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectionRecordingPreferencesResponse]
92
+ def client_token: () -> ::String
93
+ def connection_recording_preferences: () -> Types::ConnectionRecordingPreferences
94
+ end
95
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMGuiConnect/Client.html#get_connection_recording_preferences-instance_method
96
+ def get_connection_recording_preferences: () -> _GetConnectionRecordingPreferencesResponseSuccess
97
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectionRecordingPreferencesResponseSuccess
98
+
99
+ interface _UpdateConnectionRecordingPreferencesResponseSuccess
100
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectionRecordingPreferencesResponse]
101
+ def client_token: () -> ::String
102
+ def connection_recording_preferences: () -> Types::ConnectionRecordingPreferences
103
+ end
104
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMGuiConnect/Client.html#update_connection_recording_preferences-instance_method
105
+ def update_connection_recording_preferences: (
106
+ ?client_token: ::String,
107
+ connection_recording_preferences: {
108
+ kms_key_arn: ::String,
109
+ recording_destinations: {
110
+ s3_buckets: Array[
111
+ {
112
+ bucket_name: ::String,
113
+ bucket_owner: ::String
114
+ },
115
+ ]
116
+ }
117
+ }
118
+ ) -> _UpdateConnectionRecordingPreferencesResponseSuccess
119
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectionRecordingPreferencesResponseSuccess
120
+ end
121
+ end
122
+ end
123
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,37 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SSMGuiConnect
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class AccessDeniedException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class ConflictException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ end
20
+ class InternalServerException < ::Aws::Errors::ServiceError
21
+ def message: () -> ::String
22
+ end
23
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
24
+ def message: () -> ::String
25
+ end
26
+ class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ end
29
+ class ThrottlingException < ::Aws::Errors::ServiceError
30
+ def message: () -> ::String
31
+ end
32
+ class ValidationException < ::Aws::Errors::ServiceError
33
+ def message: () -> ::String
34
+ end
35
+ end
36
+ end
37
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,84 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SSMGuiConnect
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMGuiConnect/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMGuiConnect/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?account_id: String,
19
+ ?active_endpoint_cache: bool,
20
+ ?adaptive_retry_wait_to_fill: bool,
21
+ ?client_side_monitoring: bool,
22
+ ?client_side_monitoring_client_id: String,
23
+ ?client_side_monitoring_host: String,
24
+ ?client_side_monitoring_port: Integer,
25
+ ?client_side_monitoring_publisher: untyped,
26
+ ?convert_params: bool,
27
+ ?correct_clock_skew: bool,
28
+ ?defaults_mode: String,
29
+ ?disable_host_prefix_injection: bool,
30
+ ?disable_request_compression: bool,
31
+ ?endpoint: String,
32
+ ?endpoint_cache_max_entries: Integer,
33
+ ?endpoint_cache_max_threads: Integer,
34
+ ?endpoint_cache_poll_interval: Integer,
35
+ ?endpoint_discovery: bool,
36
+ ?ignore_configured_endpoint_urls: bool,
37
+ ?log_formatter: untyped,
38
+ ?log_level: Symbol,
39
+ ?logger: untyped,
40
+ ?max_attempts: Integer,
41
+ ?profile: String,
42
+ ?request_checksum_calculation: String,
43
+ ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
45
+ ?retry_backoff: Proc,
46
+ ?retry_base_delay: Float,
47
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
48
+ ?retry_limit: Integer,
49
+ ?retry_max_delay: Integer,
50
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
51
+ ?sdk_ua_app_id: String,
52
+ ?secret_access_key: String,
53
+ ?session_token: String,
54
+ ?sigv4a_signing_region_set: Array[String],
55
+ ?stub_responses: untyped,
56
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
57
+ ?token_provider: untyped,
58
+ ?use_dualstack_endpoint: bool,
59
+ ?use_fips_endpoint: bool,
60
+ ?validate_params: bool,
61
+ ?endpoint_provider: untyped,
62
+ ?http_proxy: String,
63
+ ?http_open_timeout: (Float | Integer),
64
+ ?http_read_timeout: (Float | Integer),
65
+ ?http_idle_timeout: (Float | Integer),
66
+ ?http_continue_timeout: (Float | Integer),
67
+ ?ssl_timeout: (Float | Integer | nil),
68
+ ?http_wire_trace: bool,
69
+ ?ssl_verify_peer: bool,
70
+ ?ssl_ca_bundle: String,
71
+ ?ssl_ca_directory: String,
72
+ ?ssl_ca_store: String,
73
+ ?on_chunk_received: Proc,
74
+ ?on_chunk_sent: Proc,
75
+ ?raise_response_errors: bool
76
+ ) -> void
77
+ | (?Hash[Symbol, untyped]) -> void
78
+
79
+ def client: () -> Client
80
+
81
+
82
+ end
83
+ end
84
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,91 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::SSMGuiConnect
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class ConflictException
17
+ attr_accessor message: ::String
18
+ SENSITIVE: []
19
+ end
20
+
21
+ class ConnectionRecordingPreferences
22
+ attr_accessor kms_key_arn: ::String
23
+ attr_accessor recording_destinations: Types::RecordingDestinations
24
+ SENSITIVE: []
25
+ end
26
+
27
+ class DeleteConnectionRecordingPreferencesRequest
28
+ attr_accessor client_token: ::String
29
+ SENSITIVE: []
30
+ end
31
+
32
+ class DeleteConnectionRecordingPreferencesResponse
33
+ attr_accessor client_token: ::String
34
+ SENSITIVE: []
35
+ end
36
+
37
+ class GetConnectionRecordingPreferencesResponse
38
+ attr_accessor client_token: ::String
39
+ attr_accessor connection_recording_preferences: Types::ConnectionRecordingPreferences
40
+ SENSITIVE: []
41
+ end
42
+
43
+ class InternalServerException
44
+ attr_accessor message: ::String
45
+ SENSITIVE: []
46
+ end
47
+
48
+ class RecordingDestinations
49
+ attr_accessor s3_buckets: ::Array[Types::S3Bucket]
50
+ SENSITIVE: []
51
+ end
52
+
53
+ class ResourceNotFoundException
54
+ attr_accessor message: ::String
55
+ SENSITIVE: []
56
+ end
57
+
58
+ class S3Bucket
59
+ attr_accessor bucket_name: ::String
60
+ attr_accessor bucket_owner: ::String
61
+ SENSITIVE: []
62
+ end
63
+
64
+ class ServiceQuotaExceededException
65
+ attr_accessor message: ::String
66
+ SENSITIVE: []
67
+ end
68
+
69
+ class ThrottlingException
70
+ attr_accessor message: ::String
71
+ SENSITIVE: []
72
+ end
73
+
74
+ class UpdateConnectionRecordingPreferencesRequest
75
+ attr_accessor client_token: ::String
76
+ attr_accessor connection_recording_preferences: Types::ConnectionRecordingPreferences
77
+ SENSITIVE: []
78
+ end
79
+
80
+ class UpdateConnectionRecordingPreferencesResponse
81
+ attr_accessor client_token: ::String
82
+ attr_accessor connection_recording_preferences: Types::ConnectionRecordingPreferences
83
+ SENSITIVE: []
84
+ end
85
+
86
+ class ValidationException
87
+ attr_accessor message: ::String
88
+ SENSITIVE: []
89
+ end
90
+ end
91
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SSMGuiConnect
10
+ module Waiters
11
+ end
12
+ end
13
+ end