@@ -111,9 +111,9 @@ defmodule AWS.DataExchange do
111
111
## Example:
112
112
113
113
scope_details() :: %{
114
- "LakeFormationTagPolicies" => list(lake_formation_tag_policy_details()() ),
115
- "RedshiftDataShares" => list(redshift_data_share_details()() ),
116
- "S3DataAccesses" => list(s3_data_access_details()() )
114
+ "LakeFormationTagPolicies" => list(lake_formation_tag_policy_details()),
115
+ "RedshiftDataShares" => list(redshift_data_share_details()),
116
+ "S3DataAccesses" => list(s3_data_access_details())
117
117
}
118
118
119
119
"""
@@ -208,7 +208,7 @@ defmodule AWS.DataExchange do
208
208
## Example:
209
209
210
210
list_received_data_grants_request() :: %{
211
- optional("AcceptanceState") => list(String.t()() ),
211
+ optional("AcceptanceState") => list(String.t()),
212
212
optional("MaxResults") => integer(),
213
213
optional("NextToken") => String.t()
214
214
}
@@ -221,7 +221,7 @@ defmodule AWS.DataExchange do
221
221
## Example:
222
222
223
223
list_data_sets_response() :: %{
224
- optional("DataSets") => list(data_set_entry()() ),
224
+ optional("DataSets") => list(data_set_entry()),
225
225
optional("NextToken") => String.t()
226
226
}
227
227
@@ -236,7 +236,7 @@ defmodule AWS.DataExchange do
236
236
"DataSetId" => String.t(),
237
237
"Encryption" => export_server_side_encryption(),
238
238
"EventActionArn" => String.t(),
239
- "RevisionDestinations" => list(revision_destination_entry()() )
239
+ "RevisionDestinations" => list(revision_destination_entry())
240
240
}
241
241
242
242
"""
@@ -250,7 +250,7 @@ defmodule AWS.DataExchange do
250
250
optional("Arn") => String.t(),
251
251
optional("CreatedAt") => non_neg_integer(),
252
252
optional("Details") => response_details(),
253
- optional("Errors") => list(job_error()() ),
253
+ optional("Errors") => list(job_error()),
254
254
optional("Id") => String.t(),
255
255
optional("State") => String.t(),
256
256
optional("Type") => String.t(),
@@ -300,7 +300,7 @@ defmodule AWS.DataExchange do
300
300
## Example:
301
301
302
302
list_received_data_grants_response() :: %{
303
- "DataGrantSummaries" => list(received_data_grant_summaries_entry()() ),
303
+ "DataGrantSummaries" => list(received_data_grant_summaries_entry()),
304
304
"NextToken" => String.t()
305
305
}
306
306
@@ -475,7 +475,7 @@ defmodule AWS.DataExchange do
475
475
## Example:
476
476
477
477
list_jobs_response() :: %{
478
- optional("Jobs") => list(job_entry()() ),
478
+ optional("Jobs") => list(job_entry()),
479
479
optional("NextToken") => String.t()
480
480
}
481
481
@@ -499,7 +499,7 @@ defmodule AWS.DataExchange do
499
499
## Example:
500
500
501
501
untag_resource_request() :: %{
502
- required("TagKeys") => list(String.t()() )
502
+ required("TagKeys") => list(String.t())
503
503
}
504
504
505
505
"""
@@ -510,8 +510,8 @@ defmodule AWS.DataExchange do
510
510
## Example:
511
511
512
512
database_l_f_tag_policy_and_permissions() :: %{
513
- "Expression" => list(l_f_tag()() ),
514
- "Permissions" => list(String.t()() )
513
+ "Expression" => list(l_f_tag()),
514
+ "Permissions" => list(String.t())
515
515
}
516
516
517
517
"""
@@ -689,7 +689,7 @@ defmodule AWS.DataExchange do
689
689
690
690
list_data_set_revisions_response() :: %{
691
691
optional("NextToken") => String.t(),
692
- optional("Revisions") => list(revision_entry()() )
692
+ optional("Revisions") => list(revision_entry())
693
693
}
694
694
695
695
"""
@@ -782,8 +782,8 @@ defmodule AWS.DataExchange do
782
782
## Example:
783
783
784
784
table_l_f_tag_policy_and_permissions() :: %{
785
- "Expression" => list(l_f_tag()() ),
786
- "Permissions" => list(String.t()() )
785
+ "Expression" => list(l_f_tag()),
786
+ "Permissions" => list(String.t())
787
787
}
788
788
789
789
"""
@@ -794,7 +794,7 @@ defmodule AWS.DataExchange do
794
794
## Example:
795
795
796
796
export_assets_to_s3_request_details() :: %{
797
- "AssetDestinations" => list(asset_destination_entry()() ),
797
+ "AssetDestinations" => list(asset_destination_entry()),
798
798
"DataSetId" => String.t(),
799
799
"Encryption" => export_server_side_encryption(),
800
800
"RevisionId" => String.t()
@@ -845,7 +845,7 @@ defmodule AWS.DataExchange do
845
845
## Example:
846
846
847
847
export_assets_to_s3_response_details() :: %{
848
- "AssetDestinations" => list(asset_destination_entry()() ),
848
+ "AssetDestinations" => list(asset_destination_entry()),
849
849
"DataSetId" => String.t(),
850
850
"Encryption" => export_server_side_encryption(),
851
851
"RevisionId" => String.t()
@@ -859,7 +859,7 @@ defmodule AWS.DataExchange do
859
859
## Example:
860
860
861
861
list_revision_assets_response() :: %{
862
- optional("Assets") => list(asset_entry()() ),
862
+ optional("Assets") => list(asset_entry()),
863
863
optional("NextToken") => String.t()
864
864
}
865
865
@@ -872,7 +872,7 @@ defmodule AWS.DataExchange do
872
872
873
873
details() :: %{
874
874
"ImportAssetFromSignedUrlJobErrorDetails" => import_asset_from_signed_url_job_error_details(),
875
- "ImportAssetsFromS3JobErrorDetails" => list(asset_source_entry()() )
875
+ "ImportAssetsFromS3JobErrorDetails" => list(asset_source_entry())
876
876
}
877
877
878
878
"""
@@ -930,7 +930,7 @@ defmodule AWS.DataExchange do
930
930
## Example:
931
931
932
932
schema_change_request_details() :: %{
933
- "Changes" => list(schema_change_details()() ),
933
+ "Changes" => list(schema_change_details()),
934
934
"SchemaChangeAt" => non_neg_integer()
935
935
}
936
936
@@ -963,7 +963,7 @@ defmodule AWS.DataExchange do
963
963
## Example:
964
964
965
965
database_l_f_tag_policy() :: %{
966
- "Expression" => list(l_f_tag()() )
966
+ "Expression" => list(l_f_tag())
967
967
}
968
968
969
969
"""
@@ -975,9 +975,9 @@ defmodule AWS.DataExchange do
975
975
976
976
s3_data_access_asset() :: %{
977
977
"Bucket" => String.t(),
978
- "KeyPrefixes" => list(String.t()() ),
979
- "Keys" => list(String.t()() ),
980
- "KmsKeysToGrant" => list(kms_key_to_grant()() ),
978
+ "KeyPrefixes" => list(String.t()),
979
+ "Keys" => list(String.t()),
980
+ "KmsKeysToGrant" => list(kms_key_to_grant()),
981
981
"S3AccessPointAlias" => String.t(),
982
982
"S3AccessPointArn" => String.t()
983
983
}
@@ -1012,7 +1012,7 @@ defmodule AWS.DataExchange do
1012
1012
## Example:
1013
1013
1014
1014
table_l_f_tag_policy() :: %{
1015
- "Expression" => list(l_f_tag()() )
1015
+ "Expression" => list(l_f_tag())
1016
1016
}
1017
1017
1018
1018
"""
@@ -1100,9 +1100,9 @@ defmodule AWS.DataExchange do
1100
1100
1101
1101
s3_data_access_asset_source_entry() :: %{
1102
1102
"Bucket" => String.t(),
1103
- "KeyPrefixes" => list(String.t()() ),
1104
- "Keys" => list(String.t()() ),
1105
- "KmsKeysToGrant" => list(kms_key_to_grant()() )
1103
+ "KeyPrefixes" => list(String.t()),
1104
+ "Keys" => list(String.t()),
1105
+ "KmsKeysToGrant" => list(kms_key_to_grant())
1106
1106
}
1107
1107
1108
1108
"""
@@ -1251,8 +1251,8 @@ defmodule AWS.DataExchange do
1251
1251
## Example:
1252
1252
1253
1253
s3_data_access_details() :: %{
1254
- "KeyPrefixes" => list(String.t()() ),
1255
- "Keys" => list(String.t()() )
1254
+ "KeyPrefixes" => list(String.t()),
1255
+ "Keys" => list(String.t())
1256
1256
}
1257
1257
1258
1258
"""
@@ -1300,7 +1300,7 @@ defmodule AWS.DataExchange do
1300
1300
## Example:
1301
1301
1302
1302
import_assets_from_s3_response_details() :: %{
1303
- "AssetSources" => list(asset_source_entry()() ),
1303
+ "AssetSources" => list(asset_source_entry()),
1304
1304
"DataSetId" => String.t(),
1305
1305
"RevisionId" => String.t()
1306
1306
}
@@ -1322,7 +1322,7 @@ defmodule AWS.DataExchange do
1322
1322
## Example:
1323
1323
1324
1324
import_assets_from_redshift_data_shares_request_details() :: %{
1325
- "AssetSources" => list(redshift_data_share_asset_source_entry()() ),
1325
+ "AssetSources" => list(redshift_data_share_asset_source_entry()),
1326
1326
"DataSetId" => String.t(),
1327
1327
"RevisionId" => String.t()
1328
1328
}
@@ -1368,7 +1368,7 @@ defmodule AWS.DataExchange do
1368
1368
## Example:
1369
1369
1370
1370
import_assets_from_redshift_data_shares_response_details() :: %{
1371
- "AssetSources" => list(redshift_data_share_asset_source_entry()() ),
1371
+ "AssetSources" => list(redshift_data_share_asset_source_entry()),
1372
1372
"DataSetId" => String.t(),
1373
1373
"RevisionId" => String.t()
1374
1374
}
@@ -1430,7 +1430,7 @@ defmodule AWS.DataExchange do
1430
1430
optional("Arn") => String.t(),
1431
1431
optional("CreatedAt") => non_neg_integer(),
1432
1432
optional("Details") => response_details(),
1433
- optional("Errors") => list(job_error()() ),
1433
+ optional("Errors") => list(job_error()),
1434
1434
optional("Id") => String.t(),
1435
1435
optional("State") => String.t(),
1436
1436
optional("Type") => String.t(),
@@ -1613,7 +1613,7 @@ defmodule AWS.DataExchange do
1613
1613
## Example:
1614
1614
1615
1615
import_assets_from_s3_request_details() :: %{
1616
- "AssetSources" => list(asset_source_entry()() ),
1616
+ "AssetSources" => list(asset_source_entry()),
1617
1617
"DataSetId" => String.t(),
1618
1618
"RevisionId" => String.t()
1619
1619
}
@@ -1628,7 +1628,7 @@ defmodule AWS.DataExchange do
1628
1628
lake_formation_data_permission_asset() :: %{
1629
1629
"LakeFormationDataPermissionDetails" => lake_formation_data_permission_details(),
1630
1630
"LakeFormationDataPermissionType" => String.t(),
1631
- "Permissions" => list(String.t()() ),
1631
+ "Permissions" => list(String.t()),
1632
1632
"RoleArn" => String.t()
1633
1633
}
1634
1634
@@ -1653,7 +1653,7 @@ defmodule AWS.DataExchange do
1653
1653
## Example:
1654
1654
1655
1655
list_data_grants_response() :: %{
1656
- "DataGrantSummaries" => list(data_grant_summary_entry()() ),
1656
+ "DataGrantSummaries" => list(data_grant_summary_entry()),
1657
1657
"NextToken" => String.t()
1658
1658
}
1659
1659
@@ -1715,7 +1715,7 @@ defmodule AWS.DataExchange do
1715
1715
## Example:
1716
1716
1717
1717
list_event_actions_response() :: %{
1718
- optional("EventActions") => list(event_action_entry()() ),
1718
+ optional("EventActions") => list(event_action_entry()),
1719
1719
optional("NextToken") => String.t()
1720
1720
}
1721
1721
@@ -1749,7 +1749,7 @@ defmodule AWS.DataExchange do
1749
1749
"Arn" => String.t(),
1750
1750
"CreatedAt" => non_neg_integer(),
1751
1751
"Details" => response_details(),
1752
- "Errors" => list(job_error()() ),
1752
+ "Errors" => list(job_error()),
1753
1753
"Id" => String.t(),
1754
1754
"State" => String.t(),
1755
1755
"Type" => String.t(),
@@ -1875,7 +1875,7 @@ defmodule AWS.DataExchange do
1875
1875
export_revisions_to_s3_request_details() :: %{
1876
1876
"DataSetId" => String.t(),
1877
1877
"Encryption" => export_server_side_encryption(),
1878
- "RevisionDestinations" => list(revision_destination_entry()() )
1878
+ "RevisionDestinations" => list(revision_destination_entry())
1879
1879
}
1880
1880
1881
1881
"""
0 commit comments