aws-sdk-notificationscontacts 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,172 @@
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 NotificationsContacts
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NotificationsContacts/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_min_compression_size_bytes: Integer,
43
+ ?retry_backoff: Proc,
44
+ ?retry_base_delay: Float,
45
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
46
+ ?retry_limit: Integer,
47
+ ?retry_max_delay: Integer,
48
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
49
+ ?sdk_ua_app_id: String,
50
+ ?secret_access_key: String,
51
+ ?session_token: String,
52
+ ?sigv4a_signing_region_set: Array[String],
53
+ ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
55
+ ?token_provider: untyped,
56
+ ?use_dualstack_endpoint: bool,
57
+ ?use_fips_endpoint: bool,
58
+ ?validate_params: bool,
59
+ ?endpoint_provider: untyped,
60
+ ?http_proxy: String,
61
+ ?http_open_timeout: (Float | Integer),
62
+ ?http_read_timeout: (Float | Integer),
63
+ ?http_idle_timeout: (Float | Integer),
64
+ ?http_continue_timeout: (Float | Integer),
65
+ ?ssl_timeout: (Float | Integer | nil),
66
+ ?http_wire_trace: bool,
67
+ ?ssl_verify_peer: bool,
68
+ ?ssl_ca_bundle: String,
69
+ ?ssl_ca_directory: String,
70
+ ?ssl_ca_store: String,
71
+ ?on_chunk_received: Proc,
72
+ ?on_chunk_sent: Proc,
73
+ ?raise_response_errors: bool
74
+ ) -> instance
75
+ | (?Hash[Symbol, untyped]) -> instance
76
+
77
+
78
+ interface _ActivateEmailContactResponseSuccess
79
+ include ::Seahorse::Client::_ResponseSuccess[Types::ActivateEmailContactResponse]
80
+ end
81
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NotificationsContacts/Client.html#activate_email_contact-instance_method
82
+ def activate_email_contact: (
83
+ arn: ::String,
84
+ code: ::String
85
+ ) -> _ActivateEmailContactResponseSuccess
86
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ActivateEmailContactResponseSuccess
87
+
88
+ interface _CreateEmailContactResponseSuccess
89
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEmailContactResponse]
90
+ def arn: () -> ::String
91
+ end
92
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NotificationsContacts/Client.html#create_email_contact-instance_method
93
+ def create_email_contact: (
94
+ name: ::String,
95
+ email_address: ::String,
96
+ ?tags: Hash[::String, ::String]
97
+ ) -> _CreateEmailContactResponseSuccess
98
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEmailContactResponseSuccess
99
+
100
+ interface _DeleteEmailContactResponseSuccess
101
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEmailContactResponse]
102
+ end
103
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NotificationsContacts/Client.html#delete_email_contact-instance_method
104
+ def delete_email_contact: (
105
+ arn: ::String
106
+ ) -> _DeleteEmailContactResponseSuccess
107
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEmailContactResponseSuccess
108
+
109
+ interface _GetEmailContactResponseSuccess
110
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEmailContactResponse]
111
+ def email_contact: () -> Types::EmailContact
112
+ end
113
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NotificationsContacts/Client.html#get_email_contact-instance_method
114
+ def get_email_contact: (
115
+ arn: ::String
116
+ ) -> _GetEmailContactResponseSuccess
117
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEmailContactResponseSuccess
118
+
119
+ interface _ListEmailContactsResponseSuccess
120
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEmailContactsResponse]
121
+ def next_token: () -> ::String
122
+ def email_contacts: () -> ::Array[Types::EmailContact]
123
+ end
124
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NotificationsContacts/Client.html#list_email_contacts-instance_method
125
+ def list_email_contacts: (
126
+ ?max_results: ::Integer,
127
+ ?next_token: ::String
128
+ ) -> _ListEmailContactsResponseSuccess
129
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEmailContactsResponseSuccess
130
+
131
+ interface _ListTagsForResourceResponseSuccess
132
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
133
+ def tags: () -> ::Hash[::String, ::String]
134
+ end
135
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NotificationsContacts/Client.html#list_tags_for_resource-instance_method
136
+ def list_tags_for_resource: (
137
+ arn: ::String
138
+ ) -> _ListTagsForResourceResponseSuccess
139
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
140
+
141
+ interface _SendActivationCodeResponseSuccess
142
+ include ::Seahorse::Client::_ResponseSuccess[Types::SendActivationCodeResponse]
143
+ end
144
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NotificationsContacts/Client.html#send_activation_code-instance_method
145
+ def send_activation_code: (
146
+ arn: ::String
147
+ ) -> _SendActivationCodeResponseSuccess
148
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendActivationCodeResponseSuccess
149
+
150
+ interface _TagResourceResponseSuccess
151
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
152
+ end
153
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NotificationsContacts/Client.html#tag_resource-instance_method
154
+ def tag_resource: (
155
+ arn: ::String,
156
+ tags: Hash[::String, ::String]
157
+ ) -> _TagResourceResponseSuccess
158
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
159
+
160
+ interface _UntagResourceResponseSuccess
161
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
162
+ end
163
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NotificationsContacts/Client.html#untag_resource-instance_method
164
+ def untag_resource: (
165
+ arn: ::String,
166
+ tag_keys: Array[::String]
167
+ ) -> _UntagResourceResponseSuccess
168
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
169
+ end
170
+ end
171
+ end
172
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,50 @@
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 NotificationsContacts
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
+ def resource_id: () -> ::String
20
+ def resource_type: () -> ::String
21
+ end
22
+ class InternalServerException < ::Aws::Errors::ServiceError
23
+ def message: () -> ::String
24
+ end
25
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
26
+ def message: () -> ::String
27
+ def resource_id: () -> ::String
28
+ def resource_type: () -> ::String
29
+ end
30
+ class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
31
+ def message: () -> ::String
32
+ def resource_id: () -> ::String
33
+ def resource_type: () -> ::String
34
+ def service_code: () -> ::String
35
+ def quota_code: () -> ::String
36
+ end
37
+ class ThrottlingException < ::Aws::Errors::ServiceError
38
+ def message: () -> ::String
39
+ def service_code: () -> ::String
40
+ def quota_code: () -> ::String
41
+ def retry_after_seconds: () -> ::String
42
+ end
43
+ class ValidationException < ::Aws::Errors::ServiceError
44
+ def message: () -> ::String
45
+ def reason: () -> ::String
46
+ def field_list: () -> ::String
47
+ end
48
+ end
49
+ end
50
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,82 @@
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 NotificationsContacts
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NotificationsContacts/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NotificationsContacts/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_min_compression_size_bytes: Integer,
43
+ ?retry_backoff: Proc,
44
+ ?retry_base_delay: Float,
45
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
46
+ ?retry_limit: Integer,
47
+ ?retry_max_delay: Integer,
48
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
49
+ ?sdk_ua_app_id: String,
50
+ ?secret_access_key: String,
51
+ ?session_token: String,
52
+ ?sigv4a_signing_region_set: Array[String],
53
+ ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
55
+ ?token_provider: untyped,
56
+ ?use_dualstack_endpoint: bool,
57
+ ?use_fips_endpoint: bool,
58
+ ?validate_params: bool,
59
+ ?endpoint_provider: untyped,
60
+ ?http_proxy: String,
61
+ ?http_open_timeout: (Float | Integer),
62
+ ?http_read_timeout: (Float | Integer),
63
+ ?http_idle_timeout: (Float | Integer),
64
+ ?http_continue_timeout: (Float | Integer),
65
+ ?ssl_timeout: (Float | Integer | nil),
66
+ ?http_wire_trace: bool,
67
+ ?ssl_verify_peer: bool,
68
+ ?ssl_ca_bundle: String,
69
+ ?ssl_ca_directory: String,
70
+ ?ssl_ca_store: String,
71
+ ?on_chunk_received: Proc,
72
+ ?on_chunk_sent: Proc,
73
+ ?raise_response_errors: bool
74
+ ) -> void
75
+ | (?Hash[Symbol, untyped]) -> void
76
+
77
+ def client: () -> Client
78
+
79
+
80
+ end
81
+ end
82
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,162 @@
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::NotificationsContacts
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class ActivateEmailContactRequest
17
+ attr_accessor arn: ::String
18
+ attr_accessor code: ::String
19
+ SENSITIVE: [:code]
20
+ end
21
+
22
+ class ActivateEmailContactResponse < Aws::EmptyStructure
23
+ end
24
+
25
+ class ConflictException
26
+ attr_accessor message: ::String
27
+ attr_accessor resource_id: ::String
28
+ attr_accessor resource_type: ::String
29
+ SENSITIVE: []
30
+ end
31
+
32
+ class CreateEmailContactRequest
33
+ attr_accessor name: ::String
34
+ attr_accessor email_address: ::String
35
+ attr_accessor tags: ::Hash[::String, ::String]
36
+ SENSITIVE: [:name]
37
+ end
38
+
39
+ class CreateEmailContactResponse
40
+ attr_accessor arn: ::String
41
+ SENSITIVE: []
42
+ end
43
+
44
+ class DeleteEmailContactRequest
45
+ attr_accessor arn: ::String
46
+ SENSITIVE: []
47
+ end
48
+
49
+ class DeleteEmailContactResponse < Aws::EmptyStructure
50
+ end
51
+
52
+ class EmailContact
53
+ attr_accessor arn: ::String
54
+ attr_accessor name: ::String
55
+ attr_accessor address: ::String
56
+ attr_accessor status: ("inactive" | "active")
57
+ attr_accessor creation_time: ::Time
58
+ attr_accessor update_time: ::Time
59
+ SENSITIVE: [:name, :address]
60
+ end
61
+
62
+ class GetEmailContactRequest
63
+ attr_accessor arn: ::String
64
+ SENSITIVE: []
65
+ end
66
+
67
+ class GetEmailContactResponse
68
+ attr_accessor email_contact: Types::EmailContact
69
+ SENSITIVE: []
70
+ end
71
+
72
+ class InternalServerException
73
+ attr_accessor message: ::String
74
+ SENSITIVE: []
75
+ end
76
+
77
+ class ListEmailContactsRequest
78
+ attr_accessor max_results: ::Integer
79
+ attr_accessor next_token: ::String
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class ListEmailContactsResponse
84
+ attr_accessor next_token: ::String
85
+ attr_accessor email_contacts: ::Array[Types::EmailContact]
86
+ SENSITIVE: []
87
+ end
88
+
89
+ class ListTagsForResourceRequest
90
+ attr_accessor arn: ::String
91
+ SENSITIVE: []
92
+ end
93
+
94
+ class ListTagsForResourceResponse
95
+ attr_accessor tags: ::Hash[::String, ::String]
96
+ SENSITIVE: []
97
+ end
98
+
99
+ class ResourceNotFoundException
100
+ attr_accessor message: ::String
101
+ attr_accessor resource_id: ::String
102
+ attr_accessor resource_type: ::String
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class SendActivationCodeRequest
107
+ attr_accessor arn: ::String
108
+ SENSITIVE: []
109
+ end
110
+
111
+ class SendActivationCodeResponse < Aws::EmptyStructure
112
+ end
113
+
114
+ class ServiceQuotaExceededException
115
+ attr_accessor message: ::String
116
+ attr_accessor resource_id: ::String
117
+ attr_accessor resource_type: ::String
118
+ attr_accessor service_code: ::String
119
+ attr_accessor quota_code: ::String
120
+ SENSITIVE: []
121
+ end
122
+
123
+ class TagResourceRequest
124
+ attr_accessor arn: ::String
125
+ attr_accessor tags: ::Hash[::String, ::String]
126
+ SENSITIVE: []
127
+ end
128
+
129
+ class TagResourceResponse < Aws::EmptyStructure
130
+ end
131
+
132
+ class ThrottlingException
133
+ attr_accessor message: ::String
134
+ attr_accessor service_code: ::String
135
+ attr_accessor quota_code: ::String
136
+ attr_accessor retry_after_seconds: ::Integer
137
+ SENSITIVE: []
138
+ end
139
+
140
+ class UntagResourceRequest
141
+ attr_accessor arn: ::String
142
+ attr_accessor tag_keys: ::Array[::String]
143
+ SENSITIVE: []
144
+ end
145
+
146
+ class UntagResourceResponse < Aws::EmptyStructure
147
+ end
148
+
149
+ class ValidationException
150
+ attr_accessor message: ::String
151
+ attr_accessor reason: ("fieldValidationFailed" | "other")
152
+ attr_accessor field_list: ::Array[Types::ValidationExceptionField]
153
+ SENSITIVE: []
154
+ end
155
+
156
+ class ValidationExceptionField
157
+ attr_accessor name: ::String
158
+ attr_accessor message: ::String
159
+ SENSITIVE: []
160
+ end
161
+ end
162
+ 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 NotificationsContacts
10
+ module Waiters
11
+ end
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aws-sdk-notificationscontacts
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Amazon Web Services
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-11-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: aws-sdk-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 3.210.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '3'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 3.210.0
33
+ - !ruby/object:Gem::Dependency
34
+ name: aws-sigv4
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.5'
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.5'
47
+ description: Official AWS Ruby gem for AWS User Notifications Contacts. This gem is
48
+ part of the AWS SDK for Ruby.
49
+ email:
50
+ - aws-dr-rubygems@amazon.com
51
+ executables: []
52
+ extensions: []
53
+ extra_rdoc_files: []
54
+ files:
55
+ - CHANGELOG.md
56
+ - LICENSE.txt
57
+ - VERSION
58
+ - lib/aws-sdk-notificationscontacts.rb
59
+ - lib/aws-sdk-notificationscontacts/client.rb
60
+ - lib/aws-sdk-notificationscontacts/client_api.rb
61
+ - lib/aws-sdk-notificationscontacts/customizations.rb
62
+ - lib/aws-sdk-notificationscontacts/endpoint_parameters.rb
63
+ - lib/aws-sdk-notificationscontacts/endpoint_provider.rb
64
+ - lib/aws-sdk-notificationscontacts/endpoints.rb
65
+ - lib/aws-sdk-notificationscontacts/errors.rb
66
+ - lib/aws-sdk-notificationscontacts/plugins/endpoints.rb
67
+ - lib/aws-sdk-notificationscontacts/resource.rb
68
+ - lib/aws-sdk-notificationscontacts/types.rb
69
+ - lib/aws-sdk-notificationscontacts/waiters.rb
70
+ - sig/client.rbs
71
+ - sig/errors.rbs
72
+ - sig/resource.rbs
73
+ - sig/types.rbs
74
+ - sig/waiters.rbs
75
+ homepage: https://github.com/aws/aws-sdk-ruby
76
+ licenses:
77
+ - Apache-2.0
78
+ metadata:
79
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-notificationscontacts
80
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-notificationscontacts/CHANGELOG.md
81
+ post_install_message:
82
+ rdoc_options: []
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '2.5'
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ requirements: []
96
+ rubygems_version: 3.4.10
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: AWS SDK for Ruby - AWS User Notifications Contacts
100
+ test_files: []