aws-sdk-datazone 1.19.0 → 1.21.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-datazone/customizations'
52
52
  # @!group service
53
53
  module Aws::DataZone
54
54
 
55
- GEM_VERSION = '1.19.0'
55
+ GEM_VERSION = '1.21.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
@@ -116,12 +117,112 @@ module Aws
116
117
  end
117
118
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#accept_subscription_request-instance_method
118
119
  def accept_subscription_request: (
120
+ ?asset_scopes: Array[
121
+ {
122
+ asset_id: ::String,
123
+ filter_ids: Array[::String]
124
+ },
125
+ ],
119
126
  ?decision_comment: ::String,
120
127
  domain_identifier: ::String,
121
128
  identifier: ::String
122
129
  ) -> _AcceptSubscriptionRequestResponseSuccess
123
130
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptSubscriptionRequestResponseSuccess
124
131
 
132
+ interface _AddEntityOwnerResponseSuccess
133
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddEntityOwnerOutput]
134
+ end
135
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#add_entity_owner-instance_method
136
+ def add_entity_owner: (
137
+ ?client_token: ::String,
138
+ domain_identifier: ::String,
139
+ entity_identifier: ::String,
140
+ entity_type: ("DOMAIN_UNIT"),
141
+ owner: {
142
+ group: {
143
+ group_identifier: ::String
144
+ }?,
145
+ user: {
146
+ user_identifier: ::String
147
+ }?
148
+ }
149
+ ) -> _AddEntityOwnerResponseSuccess
150
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddEntityOwnerResponseSuccess
151
+
152
+ interface _AddPolicyGrantResponseSuccess
153
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddPolicyGrantOutput]
154
+ end
155
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#add_policy_grant-instance_method
156
+ def add_policy_grant: (
157
+ ?client_token: ::String,
158
+ detail: {
159
+ add_to_project_member_pool: {
160
+ include_child_domain_units: bool?
161
+ }?,
162
+ create_asset_type: {
163
+ include_child_domain_units: bool?
164
+ }?,
165
+ create_domain_unit: {
166
+ include_child_domain_units: bool?
167
+ }?,
168
+ create_environment: {
169
+ }?,
170
+ create_environment_profile: {
171
+ domain_unit_id: ::String?
172
+ }?,
173
+ create_form_type: {
174
+ include_child_domain_units: bool?
175
+ }?,
176
+ create_glossary: {
177
+ include_child_domain_units: bool?
178
+ }?,
179
+ create_project: {
180
+ include_child_domain_units: bool?
181
+ }?,
182
+ delegate_create_environment_profile: {
183
+ }?,
184
+ override_domain_unit_owners: {
185
+ include_child_domain_units: bool?
186
+ }?,
187
+ override_project_owners: {
188
+ include_child_domain_units: bool?
189
+ }?
190
+ },
191
+ domain_identifier: ::String,
192
+ entity_identifier: ::String,
193
+ entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE"),
194
+ policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT"),
195
+ principal: {
196
+ domain_unit: {
197
+ domain_unit_designation: ("OWNER"),
198
+ domain_unit_grant_filter: {
199
+ all_domain_units_grant_filter: {
200
+ }?
201
+ }?,
202
+ domain_unit_identifier: ::String?
203
+ }?,
204
+ group: {
205
+ group_identifier: ::String?
206
+ }?,
207
+ project: {
208
+ project_designation: ("OWNER" | "CONTRIBUTOR"),
209
+ project_grant_filter: {
210
+ domain_unit_filter: {
211
+ domain_unit: ::String,
212
+ include_child_domain_units: bool?
213
+ }?
214
+ }?,
215
+ project_identifier: ::String?
216
+ }?,
217
+ user: {
218
+ all_users_grant_filter: {
219
+ }?,
220
+ user_identifier: ::String?
221
+ }?
222
+ }
223
+ ) -> _AddPolicyGrantResponseSuccess
224
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddPolicyGrantResponseSuccess
225
+
125
226
  interface _AssociateEnvironmentRoleResponseSuccess
126
227
  include ::Seahorse::Client::_ResponseSuccess[Types::AssociateEnvironmentRoleOutput]
127
228
  end
@@ -570,6 +671,7 @@ module Aws
570
671
  def kms_key_identifier: () -> ::String
571
672
  def name: () -> ::String
572
673
  def portal_url: () -> ::String
674
+ def root_domain_unit_id: () -> ::String
573
675
  def single_sign_on: () -> Types::SingleSignOn
574
676
  def status: () -> ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
575
677
  def tags: () -> ::Hash[::String, ::String]
@@ -589,6 +691,28 @@ module Aws
589
691
  ) -> _CreateDomainResponseSuccess
590
692
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainResponseSuccess
591
693
 
694
+ interface _CreateDomainUnitResponseSuccess
695
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDomainUnitOutput]
696
+ def ancestor_domain_unit_ids: () -> ::Array[::String]
697
+ def created_at: () -> ::Time
698
+ def created_by: () -> ::String
699
+ def description: () -> ::String
700
+ def domain_id: () -> ::String
701
+ def id: () -> ::String
702
+ def name: () -> ::String
703
+ def owners: () -> ::Array[Types::DomainUnitOwnerProperties]
704
+ def parent_domain_unit_id: () -> ::String
705
+ end
706
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_domain_unit-instance_method
707
+ def create_domain_unit: (
708
+ ?client_token: ::String,
709
+ ?description: ::String,
710
+ domain_identifier: ::String,
711
+ name: ::String,
712
+ parent_domain_unit_identifier: ::String
713
+ ) -> _CreateDomainUnitResponseSuccess
714
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainUnitResponseSuccess
715
+
592
716
  interface _CreateEnvironmentResponseSuccess
593
717
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateEnvironmentOutput]
594
718
  def aws_account_id: () -> ::String
@@ -797,6 +921,7 @@ module Aws
797
921
  def created_by: () -> ::String
798
922
  def description: () -> ::String
799
923
  def domain_id: () -> ::String
924
+ def domain_unit_id: () -> ::String
800
925
  def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
801
926
  def glossary_terms: () -> ::Array[::String]
802
927
  def id: () -> ::String
@@ -808,6 +933,7 @@ module Aws
808
933
  def create_project: (
809
934
  ?description: ::String,
810
935
  domain_identifier: ::String,
936
+ ?domain_unit_id: ::String,
811
937
  ?glossary_terms: Array[::String],
812
938
  name: ::String
813
939
  ) -> _CreateProjectResponseSuccess
@@ -1036,6 +1162,16 @@ module Aws
1036
1162
  ) -> _DeleteDomainResponseSuccess
1037
1163
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainResponseSuccess
1038
1164
 
1165
+ interface _DeleteDomainUnitResponseSuccess
1166
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDomainUnitOutput]
1167
+ end
1168
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_domain_unit-instance_method
1169
+ def delete_domain_unit: (
1170
+ domain_identifier: ::String,
1171
+ identifier: ::String
1172
+ ) -> _DeleteDomainUnitResponseSuccess
1173
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainUnitResponseSuccess
1174
+
1039
1175
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_environment-instance_method
1040
1176
  def delete_environment: (
1041
1177
  domain_identifier: ::String,
@@ -1358,6 +1494,7 @@ module Aws
1358
1494
  def last_updated_at: () -> ::Time
1359
1495
  def name: () -> ::String
1360
1496
  def portal_url: () -> ::String
1497
+ def root_domain_unit_id: () -> ::String
1361
1498
  def single_sign_on: () -> Types::SingleSignOn
1362
1499
  def status: () -> ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
1363
1500
  def tags: () -> ::Hash[::String, ::String]
@@ -1368,6 +1505,26 @@ module Aws
1368
1505
  ) -> _GetDomainResponseSuccess
1369
1506
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainResponseSuccess
1370
1507
 
1508
+ interface _GetDomainUnitResponseSuccess
1509
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainUnitOutput]
1510
+ def created_at: () -> ::Time
1511
+ def created_by: () -> ::String
1512
+ def description: () -> ::String
1513
+ def domain_id: () -> ::String
1514
+ def id: () -> ::String
1515
+ def last_updated_at: () -> ::Time
1516
+ def last_updated_by: () -> ::String
1517
+ def name: () -> ::String
1518
+ def owners: () -> ::Array[Types::DomainUnitOwnerProperties]
1519
+ def parent_domain_unit_id: () -> ::String
1520
+ end
1521
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_domain_unit-instance_method
1522
+ def get_domain_unit: (
1523
+ domain_identifier: ::String,
1524
+ identifier: ::String
1525
+ ) -> _GetDomainUnitResponseSuccess
1526
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainUnitResponseSuccess
1527
+
1371
1528
  interface _GetEnvironmentResponseSuccess
1372
1529
  include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentOutput]
1373
1530
  def aws_account_id: () -> ::String
@@ -1653,6 +1810,7 @@ module Aws
1653
1810
  def created_by: () -> ::String
1654
1811
  def description: () -> ::String
1655
1812
  def domain_id: () -> ::String
1813
+ def domain_unit_id: () -> ::String
1656
1814
  def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
1657
1815
  def glossary_terms: () -> ::Array[::String]
1658
1816
  def id: () -> ::String
@@ -1882,6 +2040,20 @@ module Aws
1882
2040
  ) -> _ListDataSourcesResponseSuccess
1883
2041
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataSourcesResponseSuccess
1884
2042
 
2043
+ interface _ListDomainUnitsForParentResponseSuccess
2044
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainUnitsForParentOutput]
2045
+ def items: () -> ::Array[Types::DomainUnitSummary]
2046
+ def next_token: () -> ::String
2047
+ end
2048
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_domain_units_for_parent-instance_method
2049
+ def list_domain_units_for_parent: (
2050
+ domain_identifier: ::String,
2051
+ ?max_results: ::Integer,
2052
+ ?next_token: ::String,
2053
+ parent_domain_unit_identifier: ::String
2054
+ ) -> _ListDomainUnitsForParentResponseSuccess
2055
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainUnitsForParentResponseSuccess
2056
+
1885
2057
  interface _ListDomainsResponseSuccess
1886
2058
  include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainsOutput]
1887
2059
  def items: () -> ::Array[Types::DomainSummary]
@@ -1895,6 +2067,21 @@ module Aws
1895
2067
  ) -> _ListDomainsResponseSuccess
1896
2068
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainsResponseSuccess
1897
2069
 
2070
+ interface _ListEntityOwnersResponseSuccess
2071
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEntityOwnersOutput]
2072
+ def next_token: () -> ::String
2073
+ def owners: () -> ::Array[Types::OwnerPropertiesOutput]
2074
+ end
2075
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_entity_owners-instance_method
2076
+ def list_entity_owners: (
2077
+ domain_identifier: ::String,
2078
+ entity_identifier: ::String,
2079
+ entity_type: ("DOMAIN_UNIT"),
2080
+ ?max_results: ::Integer,
2081
+ ?next_token: ::String
2082
+ ) -> _ListEntityOwnersResponseSuccess
2083
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEntityOwnersResponseSuccess
2084
+
1898
2085
  interface _ListEnvironmentActionsResponseSuccess
1899
2086
  include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentActionsOutput]
1900
2087
  def items: () -> ::Array[Types::EnvironmentActionSummary]
@@ -2027,6 +2214,22 @@ module Aws
2027
2214
  ) -> _ListNotificationsResponseSuccess
2028
2215
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNotificationsResponseSuccess
2029
2216
 
2217
+ interface _ListPolicyGrantsResponseSuccess
2218
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPolicyGrantsOutput]
2219
+ def grant_list: () -> ::Array[Types::PolicyGrantMember]
2220
+ def next_token: () -> ::String
2221
+ end
2222
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_policy_grants-instance_method
2223
+ def list_policy_grants: (
2224
+ domain_identifier: ::String,
2225
+ entity_identifier: ::String,
2226
+ entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE"),
2227
+ ?max_results: ::Integer,
2228
+ ?next_token: ::String,
2229
+ policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT")
2230
+ ) -> _ListPolicyGrantsResponseSuccess
2231
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyGrantsResponseSuccess
2232
+
2030
2233
  interface _ListProjectMembershipsResponseSuccess
2031
2234
  include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectMembershipsOutput]
2032
2235
  def members: () -> ::Array[Types::ProjectMember]
@@ -2277,6 +2480,67 @@ module Aws
2277
2480
  ) -> _RejectSubscriptionRequestResponseSuccess
2278
2481
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectSubscriptionRequestResponseSuccess
2279
2482
 
2483
+ interface _RemoveEntityOwnerResponseSuccess
2484
+ include ::Seahorse::Client::_ResponseSuccess[Types::RemoveEntityOwnerOutput]
2485
+ end
2486
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#remove_entity_owner-instance_method
2487
+ def remove_entity_owner: (
2488
+ ?client_token: ::String,
2489
+ domain_identifier: ::String,
2490
+ entity_identifier: ::String,
2491
+ entity_type: ("DOMAIN_UNIT"),
2492
+ owner: {
2493
+ group: {
2494
+ group_identifier: ::String
2495
+ }?,
2496
+ user: {
2497
+ user_identifier: ::String
2498
+ }?
2499
+ }
2500
+ ) -> _RemoveEntityOwnerResponseSuccess
2501
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveEntityOwnerResponseSuccess
2502
+
2503
+ interface _RemovePolicyGrantResponseSuccess
2504
+ include ::Seahorse::Client::_ResponseSuccess[Types::RemovePolicyGrantOutput]
2505
+ end
2506
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#remove_policy_grant-instance_method
2507
+ def remove_policy_grant: (
2508
+ ?client_token: ::String,
2509
+ domain_identifier: ::String,
2510
+ entity_identifier: ::String,
2511
+ entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE"),
2512
+ policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT"),
2513
+ principal: {
2514
+ domain_unit: {
2515
+ domain_unit_designation: ("OWNER"),
2516
+ domain_unit_grant_filter: {
2517
+ all_domain_units_grant_filter: {
2518
+ }?
2519
+ }?,
2520
+ domain_unit_identifier: ::String?
2521
+ }?,
2522
+ group: {
2523
+ group_identifier: ::String?
2524
+ }?,
2525
+ project: {
2526
+ project_designation: ("OWNER" | "CONTRIBUTOR"),
2527
+ project_grant_filter: {
2528
+ domain_unit_filter: {
2529
+ domain_unit: ::String,
2530
+ include_child_domain_units: bool?
2531
+ }?
2532
+ }?,
2533
+ project_identifier: ::String?
2534
+ }?,
2535
+ user: {
2536
+ all_users_grant_filter: {
2537
+ }?,
2538
+ user_identifier: ::String?
2539
+ }?
2540
+ }
2541
+ ) -> _RemovePolicyGrantResponseSuccess
2542
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemovePolicyGrantResponseSuccess
2543
+
2280
2544
  interface _RevokeSubscriptionResponseSuccess
2281
2545
  include ::Seahorse::Client::_ResponseSuccess[Types::RevokeSubscriptionOutput]
2282
2546
  def created_at: () -> ::Time
@@ -2702,6 +2966,7 @@ module Aws
2702
2966
  def id: () -> ::String
2703
2967
  def last_updated_at: () -> ::Time
2704
2968
  def name: () -> ::String
2969
+ def root_domain_unit_id: () -> ::String
2705
2970
  def single_sign_on: () -> Types::SingleSignOn
2706
2971
  end
2707
2972
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_domain-instance_method
@@ -2718,6 +2983,28 @@ module Aws
2718
2983
  ) -> _UpdateDomainResponseSuccess
2719
2984
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainResponseSuccess
2720
2985
 
2986
+ interface _UpdateDomainUnitResponseSuccess
2987
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainUnitOutput]
2988
+ def created_at: () -> ::Time
2989
+ def created_by: () -> ::String
2990
+ def description: () -> ::String
2991
+ def domain_id: () -> ::String
2992
+ def id: () -> ::String
2993
+ def last_updated_at: () -> ::Time
2994
+ def last_updated_by: () -> ::String
2995
+ def name: () -> ::String
2996
+ def owners: () -> ::Array[Types::DomainUnitOwnerProperties]
2997
+ def parent_domain_unit_id: () -> ::String
2998
+ end
2999
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_domain_unit-instance_method
3000
+ def update_domain_unit: (
3001
+ ?description: ::String,
3002
+ domain_identifier: ::String,
3003
+ identifier: ::String,
3004
+ ?name: ::String
3005
+ ) -> _UpdateDomainUnitResponseSuccess
3006
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainUnitResponseSuccess
3007
+
2721
3008
  interface _UpdateEnvironmentResponseSuccess
2722
3009
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnvironmentOutput]
2723
3010
  def aws_account_id: () -> ::String
@@ -2876,6 +3163,7 @@ module Aws
2876
3163
  def created_by: () -> ::String
2877
3164
  def description: () -> ::String
2878
3165
  def domain_id: () -> ::String
3166
+ def domain_unit_id: () -> ::String
2879
3167
  def failure_reasons: () -> ::Array[Types::ProjectDeletionError]
2880
3168
  def glossary_terms: () -> ::Array[::String]
2881
3169
  def id: () -> ::String
data/sig/resource.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,