aws-sdk 2.1658.0 → 2.1660.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.
@@ -59,6 +59,14 @@ declare class DataZone extends Service {
59
59
  * Creates an asset in Amazon DataZone catalog.
60
60
  */
61
61
  createAsset(callback?: (err: AWSError, data: DataZone.Types.CreateAssetOutput) => void): Request<DataZone.Types.CreateAssetOutput, AWSError>;
62
+ /**
63
+ * Creates a data asset filter.
64
+ */
65
+ createAssetFilter(params: DataZone.Types.CreateAssetFilterInput, callback?: (err: AWSError, data: DataZone.Types.CreateAssetFilterOutput) => void): Request<DataZone.Types.CreateAssetFilterOutput, AWSError>;
66
+ /**
67
+ * Creates a data asset filter.
68
+ */
69
+ createAssetFilter(callback?: (err: AWSError, data: DataZone.Types.CreateAssetFilterOutput) => void): Request<DataZone.Types.CreateAssetFilterOutput, AWSError>;
62
70
  /**
63
71
  * Creates a revision of the asset.
64
72
  */
@@ -211,6 +219,14 @@ declare class DataZone extends Service {
211
219
  * Delets an asset in Amazon DataZone.
212
220
  */
213
221
  deleteAsset(callback?: (err: AWSError, data: DataZone.Types.DeleteAssetOutput) => void): Request<DataZone.Types.DeleteAssetOutput, AWSError>;
222
+ /**
223
+ * Deletes an asset filter.
224
+ */
225
+ deleteAssetFilter(params: DataZone.Types.DeleteAssetFilterInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
226
+ /**
227
+ * Deletes an asset filter.
228
+ */
229
+ deleteAssetFilter(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
214
230
  /**
215
231
  * Deletes an asset type in Amazon DataZone.
216
232
  */
@@ -363,6 +379,14 @@ declare class DataZone extends Service {
363
379
  * Gets an Amazon DataZone asset.
364
380
  */
365
381
  getAsset(callback?: (err: AWSError, data: DataZone.Types.GetAssetOutput) => void): Request<DataZone.Types.GetAssetOutput, AWSError>;
382
+ /**
383
+ * Gets an asset filter.
384
+ */
385
+ getAssetFilter(params: DataZone.Types.GetAssetFilterInput, callback?: (err: AWSError, data: DataZone.Types.GetAssetFilterOutput) => void): Request<DataZone.Types.GetAssetFilterOutput, AWSError>;
386
+ /**
387
+ * Gets an asset filter.
388
+ */
389
+ getAssetFilter(callback?: (err: AWSError, data: DataZone.Types.GetAssetFilterOutput) => void): Request<DataZone.Types.GetAssetFilterOutput, AWSError>;
366
390
  /**
367
391
  * Gets an Amazon DataZone asset type.
368
392
  */
@@ -555,6 +579,14 @@ declare class DataZone extends Service {
555
579
  * Gets a user profile in Amazon DataZone.
556
580
  */
557
581
  getUserProfile(callback?: (err: AWSError, data: DataZone.Types.GetUserProfileOutput) => void): Request<DataZone.Types.GetUserProfileOutput, AWSError>;
582
+ /**
583
+ * Lists asset filters.
584
+ */
585
+ listAssetFilters(params: DataZone.Types.ListAssetFiltersInput, callback?: (err: AWSError, data: DataZone.Types.ListAssetFiltersOutput) => void): Request<DataZone.Types.ListAssetFiltersOutput, AWSError>;
586
+ /**
587
+ * Lists asset filters.
588
+ */
589
+ listAssetFilters(callback?: (err: AWSError, data: DataZone.Types.ListAssetFiltersOutput) => void): Request<DataZone.Types.ListAssetFiltersOutput, AWSError>;
558
590
  /**
559
591
  * Lists the revisions for the asset.
560
592
  */
@@ -843,6 +875,14 @@ declare class DataZone extends Service {
843
875
  * Untags a resource in Amazon DataZone.
844
876
  */
845
877
  untagResource(callback?: (err: AWSError, data: DataZone.Types.UntagResourceResponse) => void): Request<DataZone.Types.UntagResourceResponse, AWSError>;
878
+ /**
879
+ * Updates an asset filter.
880
+ */
881
+ updateAssetFilter(params: DataZone.Types.UpdateAssetFilterInput, callback?: (err: AWSError, data: DataZone.Types.UpdateAssetFilterOutput) => void): Request<DataZone.Types.UpdateAssetFilterOutput, AWSError>;
882
+ /**
883
+ * Updates an asset filter.
884
+ */
885
+ updateAssetFilter(callback?: (err: AWSError, data: DataZone.Types.UpdateAssetFilterOutput) => void): Request<DataZone.Types.UpdateAssetFilterOutput, AWSError>;
846
886
  /**
847
887
  * Updates the specified data source in Amazon DataZone.
848
888
  */
@@ -1089,6 +1129,59 @@ declare namespace DataZone {
1089
1129
  awsConsoleLink?: AwsConsoleLinkParameters;
1090
1130
  }
1091
1131
  export type ApplicableAssetTypes = TypeName[];
1132
+ export interface AssetFilterConfiguration {
1133
+ /**
1134
+ * The column configuration of the asset filter.
1135
+ */
1136
+ columnConfiguration?: ColumnFilterConfiguration;
1137
+ /**
1138
+ * The row configuration of the asset filter.
1139
+ */
1140
+ rowConfiguration?: RowFilterConfiguration;
1141
+ }
1142
+ export interface AssetFilterSummary {
1143
+ /**
1144
+ * The ID of the data asset.
1145
+ */
1146
+ assetId: AssetId;
1147
+ /**
1148
+ * The timestamp at which the asset filter was created.
1149
+ */
1150
+ createdAt?: CreatedAt;
1151
+ /**
1152
+ * The description of the asset filter.
1153
+ */
1154
+ description?: Description;
1155
+ /**
1156
+ * The ID of the domain where the asset filter lives.
1157
+ */
1158
+ domainId: DomainId;
1159
+ /**
1160
+ * The effective column names of the asset filter.
1161
+ */
1162
+ effectiveColumnNames?: ColumnNameList;
1163
+ /**
1164
+ * The effective row filter of the asset filter.
1165
+ */
1166
+ effectiveRowFilter?: String;
1167
+ /**
1168
+ * The error message that is displayed if the action does not succeed.
1169
+ */
1170
+ errorMessage?: String;
1171
+ /**
1172
+ * The ID of the asset filter.
1173
+ */
1174
+ id: FilterId;
1175
+ /**
1176
+ * The name of the asset filter.
1177
+ */
1178
+ name: FilterName;
1179
+ /**
1180
+ * The status of the asset filter.
1181
+ */
1182
+ status?: FilterStatus;
1183
+ }
1184
+ export type AssetFilters = AssetFilterSummary[];
1092
1185
  export type AssetId = string;
1093
1186
  export type AssetIdentifier = string;
1094
1187
  export interface AssetItem {
@@ -1468,6 +1561,13 @@ declare namespace DataZone {
1468
1561
  */
1469
1562
  templateUrl: String;
1470
1563
  }
1564
+ export interface ColumnFilterConfiguration {
1565
+ /**
1566
+ * Specifies whether to include column names.
1567
+ */
1568
+ includedColumnNames?: ColumnNameList;
1569
+ }
1570
+ export type ColumnNameList = String[];
1471
1571
  export interface ConfigurableActionParameter {
1472
1572
  /**
1473
1573
  * The key of the configurable action parameter.
@@ -1494,6 +1594,78 @@ declare namespace DataZone {
1494
1594
  */
1495
1595
  type: String;
1496
1596
  }
1597
+ export interface CreateAssetFilterInput {
1598
+ /**
1599
+ * The ID of the data asset.
1600
+ */
1601
+ assetIdentifier: AssetId;
1602
+ /**
1603
+ * A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
1604
+ */
1605
+ clientToken?: String;
1606
+ /**
1607
+ * The configuration of the asset filter.
1608
+ */
1609
+ configuration: AssetFilterConfiguration;
1610
+ /**
1611
+ * The description of the asset filter.
1612
+ */
1613
+ description?: Description;
1614
+ /**
1615
+ * The ID of the domain in which you want to create an asset filter.
1616
+ */
1617
+ domainIdentifier: DomainId;
1618
+ /**
1619
+ * The name of the asset filter.
1620
+ */
1621
+ name: FilterName;
1622
+ }
1623
+ export interface CreateAssetFilterOutput {
1624
+ /**
1625
+ * The ID of the asset.
1626
+ */
1627
+ assetId: AssetId;
1628
+ /**
1629
+ * The configuration of the asset filter.
1630
+ */
1631
+ configuration: AssetFilterConfiguration;
1632
+ /**
1633
+ * The timestamp at which the asset filter was created.
1634
+ */
1635
+ createdAt?: CreatedAt;
1636
+ /**
1637
+ * The description of the asset filter.
1638
+ */
1639
+ description?: Description;
1640
+ /**
1641
+ * The ID of the domain where the asset filter is created.
1642
+ */
1643
+ domainId: DomainId;
1644
+ /**
1645
+ * The column names in the asset filter.
1646
+ */
1647
+ effectiveColumnNames?: ColumnNameList;
1648
+ /**
1649
+ * The row filter in the asset filter.
1650
+ */
1651
+ effectiveRowFilter?: String;
1652
+ /**
1653
+ * The error message that is displayed if the asset filter is not created successfully.
1654
+ */
1655
+ errorMessage?: String;
1656
+ /**
1657
+ * The ID of the asset filter.
1658
+ */
1659
+ id: FilterId;
1660
+ /**
1661
+ * The name of the asset filter.
1662
+ */
1663
+ name: FilterName;
1664
+ /**
1665
+ * The status of the asset filter.
1666
+ */
1667
+ status?: FilterStatus;
1668
+ }
1497
1669
  export interface CreateAssetInput {
1498
1670
  /**
1499
1671
  * A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
@@ -3155,6 +3327,20 @@ declare namespace DataZone {
3155
3327
  export type DataSourceType = string;
3156
3328
  export type DateTime = Date;
3157
3329
  export type DecisionComment = string;
3330
+ export interface DeleteAssetFilterInput {
3331
+ /**
3332
+ * The ID of the data asset.
3333
+ */
3334
+ assetIdentifier: AssetId;
3335
+ /**
3336
+ * The ID of the domain where you want to delete an asset filter.
3337
+ */
3338
+ domainIdentifier: DomainId;
3339
+ /**
3340
+ * The ID of the asset filter that you want to delete.
3341
+ */
3342
+ identifier: FilterId;
3343
+ }
3158
3344
  export interface DeleteAssetInput {
3159
3345
  /**
3160
3346
  * The ID of the Amazon DataZone domain in which the asset is deleted.
@@ -3702,6 +3888,10 @@ declare namespace DataZone {
3702
3888
  * The ARN of the manage access role specified in the environment blueprint configuration.
3703
3889
  */
3704
3890
  manageAccessRoleArn?: RoleArn;
3891
+ /**
3892
+ * The provisioning configuration of a blueprint.
3893
+ */
3894
+ provisioningConfigurations?: ProvisioningConfigurationList;
3705
3895
  /**
3706
3896
  * The ARN of the provisioning role specified in the environment blueprint configuration.
3707
3897
  */
@@ -3877,6 +4067,16 @@ declare namespace DataZone {
3877
4067
  */
3878
4068
  updatedAt?: SyntheticTimestamp_date_time;
3879
4069
  }
4070
+ export interface EqualToExpression {
4071
+ /**
4072
+ * The name of the column.
4073
+ */
4074
+ columnName: String;
4075
+ /**
4076
+ * The value that might be equal to an expression.
4077
+ */
4078
+ value: String;
4079
+ }
3880
4080
  export type ExternalIdentifier = string;
3881
4081
  export interface FailureCause {
3882
4082
  /**
@@ -3922,7 +4122,10 @@ declare namespace DataZone {
3922
4122
  export type FilterExpressionExpressionString = string;
3923
4123
  export type FilterExpressionType = "INCLUDE"|"EXCLUDE"|string;
3924
4124
  export type FilterExpressions = FilterExpression[];
4125
+ export type FilterId = string;
3925
4126
  export type FilterList = FilterClause[];
4127
+ export type FilterName = string;
4128
+ export type FilterStatus = "VALID"|"INVALID"|string;
3926
4129
  export type FilterValueString = string;
3927
4130
  export type FirstName = string;
3928
4131
  export type Float = number;
@@ -4050,6 +4253,66 @@ declare namespace DataZone {
4050
4253
  export type Forms = string;
4051
4254
  export type FormsInputMap = {[key: string]: FormEntryInput};
4052
4255
  export type FormsOutputMap = {[key: string]: FormEntryOutput};
4256
+ export interface GetAssetFilterInput {
4257
+ /**
4258
+ * The ID of the data asset.
4259
+ */
4260
+ assetIdentifier: AssetId;
4261
+ /**
4262
+ * The ID of the domain where you want to get an asset filter.
4263
+ */
4264
+ domainIdentifier: DomainId;
4265
+ /**
4266
+ * The ID of the asset filter.
4267
+ */
4268
+ identifier: FilterId;
4269
+ }
4270
+ export interface GetAssetFilterOutput {
4271
+ /**
4272
+ * The ID of the data asset.
4273
+ */
4274
+ assetId: AssetId;
4275
+ /**
4276
+ * The configuration of the asset filter.
4277
+ */
4278
+ configuration: AssetFilterConfiguration;
4279
+ /**
4280
+ * The timestamp at which the asset filter was created.
4281
+ */
4282
+ createdAt?: CreatedAt;
4283
+ /**
4284
+ * The description of the asset filter.
4285
+ */
4286
+ description?: Description;
4287
+ /**
4288
+ * The ID of the domain where you want to get an asset filter.
4289
+ */
4290
+ domainId: DomainId;
4291
+ /**
4292
+ * The column names of the asset filter.
4293
+ */
4294
+ effectiveColumnNames?: ColumnNameList;
4295
+ /**
4296
+ * The row filter of the asset filter.
4297
+ */
4298
+ effectiveRowFilter?: String;
4299
+ /**
4300
+ * The error message that is displayed if the action does not complete successfully.
4301
+ */
4302
+ errorMessage?: String;
4303
+ /**
4304
+ * The ID of the asset filter.
4305
+ */
4306
+ id: FilterId;
4307
+ /**
4308
+ * The name of the asset filter.
4309
+ */
4310
+ name: FilterName;
4311
+ /**
4312
+ * The status of the asset filter.
4313
+ */
4314
+ status?: FilterStatus;
4315
+ }
4053
4316
  export interface GetAssetInput {
4054
4317
  /**
4055
4318
  * The ID of the Amazon DataZone domain to which the asset belongs.
@@ -4493,6 +4756,10 @@ declare namespace DataZone {
4493
4756
  * The ARN of the manage access role with which this blueprint is created.
4494
4757
  */
4495
4758
  manageAccessRoleArn?: RoleArn;
4759
+ /**
4760
+ * The provisioning configuration of a blueprint.
4761
+ */
4762
+ provisioningConfigurations?: ProvisioningConfigurationList;
4496
4763
  /**
4497
4764
  * The ARN of the provisioning role with which this blueprint is created.
4498
4765
  */
@@ -5651,6 +5918,26 @@ declare namespace DataZone {
5651
5918
  */
5652
5919
  listing?: ListingRevisionInput;
5653
5920
  }
5921
+ export interface GreaterThanExpression {
5922
+ /**
5923
+ * The name of the column.
5924
+ */
5925
+ columnName: String;
5926
+ /**
5927
+ * The value that might be greater than an expression.
5928
+ */
5929
+ value: String;
5930
+ }
5931
+ export interface GreaterThanOrEqualToExpression {
5932
+ /**
5933
+ * The name of the column.
5934
+ */
5935
+ columnName: String;
5936
+ /**
5937
+ * The value that might be greater than or equal to an expression.
5938
+ */
5939
+ value: String;
5940
+ }
5654
5941
  export interface GroupDetails {
5655
5942
  /**
5656
5943
  * The identifier of the group in Amazon DataZone.
@@ -5699,10 +5986,72 @@ declare namespace DataZone {
5699
5986
  revision: Revision;
5700
5987
  }
5701
5988
  export type ImportList = Import[];
5989
+ export interface InExpression {
5990
+ /**
5991
+ * The name of the column.
5992
+ */
5993
+ columnName: String;
5994
+ /**
5995
+ * The values that might be in the expression.
5996
+ */
5997
+ values: StringList;
5998
+ }
5702
5999
  export type Integer = number;
5703
6000
  export type InventorySearchScope = "ASSET"|"GLOSSARY"|"GLOSSARY_TERM"|string;
6001
+ export interface IsNotNullExpression {
6002
+ /**
6003
+ * The name of the column.
6004
+ */
6005
+ columnName: String;
6006
+ }
6007
+ export interface IsNullExpression {
6008
+ /**
6009
+ * The name of the column.
6010
+ */
6011
+ columnName: String;
6012
+ }
5704
6013
  export type KmsKeyArn = string;
6014
+ export interface LakeFormationConfiguration {
6015
+ /**
6016
+ * Specifies certain Amazon S3 locations if you do not want Amazon DataZone to automatically register them in hybrid mode.
6017
+ */
6018
+ locationRegistrationExcludeS3Locations?: S3LocationList;
6019
+ /**
6020
+ * The role that is used to manage read/write access to the chosen Amazon S3 bucket(s) for Data Lake using AWS Lake Formation hybrid access mode.
6021
+ */
6022
+ locationRegistrationRole?: RoleArn;
6023
+ }
5705
6024
  export type LastName = string;
6025
+ export interface LessThanExpression {
6026
+ /**
6027
+ * The name of the column.
6028
+ */
6029
+ columnName: String;
6030
+ /**
6031
+ * The value that might be less than the expression.
6032
+ */
6033
+ value: String;
6034
+ }
6035
+ export interface LessThanOrEqualToExpression {
6036
+ /**
6037
+ * The name of the column.
6038
+ */
6039
+ columnName: String;
6040
+ /**
6041
+ * The value that might be less than or equal to an expression.
6042
+ */
6043
+ value: String;
6044
+ }
6045
+ export interface LikeExpression {
6046
+ /**
6047
+ * The name of the column.
6048
+ */
6049
+ columnName: String;
6050
+ /**
6051
+ * The value that might be like the expression.
6052
+ */
6053
+ value: String;
6054
+ }
5706
6055
  export type LineageEvent = Buffer|Uint8Array|Blob|string;
5707
6056
  export type LineageNodeId = string;
5708
6057
  export type LineageNodeIdentifier = string;
@@ -5806,6 +6155,38 @@ declare namespace DataZone {
5806
6155
  */
5807
6156
  updatedBy?: UpdatedBy;
5808
6157
  }
6158
+ export interface ListAssetFiltersInput {
6159
+ /**
6160
+ * The ID of the data asset.
6161
+ */
6162
+ assetIdentifier: AssetId;
6163
+ /**
6164
+ * The ID of the domain where you want to list asset filters.
6165
+ */
6166
+ domainIdentifier: DomainId;
6167
+ /**
6168
+ * The maximum number of asset filters to return in a single call to ListAssetFilters. When the number of asset filters to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListAssetFilters to list the next set of asset filters.
6169
+ */
6170
+ maxResults?: MaxResults;
6171
+ /**
6172
+ * When the number of asset filters is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of asset filters, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListAssetFilters to list the next set of asset filters.
6173
+ */
6174
+ nextToken?: PaginationToken;
6175
+ /**
6176
+ * The status of the asset filter.
6177
+ */
6178
+ status?: FilterStatus;
6179
+ }
6180
+ export interface ListAssetFiltersOutput {
6181
+ /**
6182
+ * The results of the ListAssetFilters action.
6183
+ */
6184
+ items: AssetFilters;
6185
+ /**
6186
+ * When the number of asset filters is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of asset filters, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListAssetFilters to list the next set of asset filters.
6187
+ */
6188
+ nextToken?: PaginationToken;
6189
+ }
5809
6190
  export interface ListAssetRevisionsInput {
5810
6191
  /**
5811
6192
  * The identifier of the domain.
@@ -6697,6 +7078,36 @@ declare namespace DataZone {
6697
7078
  smithy?: Smithy;
6698
7079
  }
6699
7080
  export type Name = string;
7081
+ export interface NotEqualToExpression {
7082
+ /**
7083
+ * The name of the column.
7084
+ */
7085
+ columnName: String;
7086
+ /**
7087
+ * The value that might not be equal to the expression.
7088
+ */
7089
+ value: String;
7090
+ }
7091
+ export interface NotInExpression {
7092
+ /**
7093
+ * The name of the column.
7094
+ */
7095
+ columnName: String;
7096
+ /**
7097
+ * The value that might not be in the expression.
7098
+ */
7099
+ values: StringList;
7100
+ }
7101
+ export interface NotLikeExpression {
7102
+ /**
7103
+ * The name of the column.
7104
+ */
7105
+ columnName: String;
7106
+ /**
7107
+ * The value that might not be like the expression.
7108
+ */
7109
+ value: String;
7110
+ }
6700
7111
  export interface NotificationOutput {
6701
7112
  /**
6702
7113
  * The action link included in the notification.
@@ -6889,6 +7300,13 @@ declare namespace DataZone {
6889
7300
  */
6890
7301
  updatedAt?: SyntheticTimestamp_date_time;
6891
7302
  }
7303
+ export interface ProvisioningConfiguration {
7304
+ /**
7305
+ * The Lake Formation configuration of the Data Lake blueprint.
7306
+ */
7307
+ lakeFormationConfiguration?: LakeFormationConfiguration;
7308
+ }
7309
+ export type ProvisioningConfigurationList = ProvisioningConfiguration[];
6892
7310
  export interface ProvisioningProperties {
6893
7311
  /**
6894
7312
  * The cloud formation properties included as part of the provisioning properties of an environment blueprint.
@@ -6912,6 +7330,10 @@ declare namespace DataZone {
6912
7330
  * The ARN of the manage access role.
6913
7331
  */
6914
7332
  manageAccessRoleArn?: RoleArn;
7333
+ /**
7334
+ * The provisioning configuration of a blueprint.
7335
+ */
7336
+ provisioningConfigurations?: ProvisioningConfigurationList;
6915
7337
  /**
6916
7338
  * The ARN of the provisioning role.
6917
7339
  */
@@ -6942,6 +7364,10 @@ declare namespace DataZone {
6942
7364
  * The ARN of the manage access role.
6943
7365
  */
6944
7366
  manageAccessRoleArn?: RoleArn;
7367
+ /**
7368
+ * The provisioning configuration of a blueprint.
7369
+ */
7370
+ provisioningConfigurations?: ProvisioningConfigurationList;
6945
7371
  /**
6946
7372
  * The ARN of the provisioning role.
6947
7373
  */
@@ -7264,6 +7690,81 @@ declare namespace DataZone {
7264
7690
  updatedBy?: UpdatedBy;
7265
7691
  }
7266
7692
  export type RoleArn = string;
7693
+ export interface RowFilter {
7694
+ /**
7695
+ * The 'and' clause of the row filter.
7696
+ */
7697
+ and?: RowFilterList;
7698
+ /**
7699
+ * The expression of the row filter.
7700
+ */
7701
+ expression?: RowFilterExpression;
7702
+ /**
7703
+ * The 'or' clause of the row filter.
7704
+ */
7705
+ or?: RowFilterList;
7706
+ }
7707
+ export interface RowFilterConfiguration {
7708
+ /**
7709
+ * The row filter.
7710
+ */
7711
+ rowFilter: RowFilter;
7712
+ /**
7713
+ * Specifies whether the row filter is sensitive.
7714
+ */
7715
+ sensitive?: Boolean;
7716
+ }
7717
+ export interface RowFilterExpression {
7718
+ /**
7719
+ * The 'equal to' clause of the row filter expression.
7720
+ */
7721
+ equalTo?: EqualToExpression;
7722
+ /**
7723
+ * The 'greater than' clause of the row filter expression.
7724
+ */
7725
+ greaterThan?: GreaterThanExpression;
7726
+ /**
7727
+ * The 'greater than or equal to' clause of the filter expression.
7728
+ */
7729
+ greaterThanOrEqualTo?: GreaterThanOrEqualToExpression;
7730
+ /**
7731
+ * The 'in' clause of the row filter expression.
7732
+ */
7733
+ in?: InExpression;
7734
+ /**
7735
+ * The 'is not null' clause of the row filter expression.
7736
+ */
7737
+ isNotNull?: IsNotNullExpression;
7738
+ /**
7739
+ * The 'is null' clause of the row filter expression.
7740
+ */
7741
+ isNull?: IsNullExpression;
7742
+ /**
7743
+ * The 'less than' clause of the row filter expression.
7744
+ */
7745
+ lessThan?: LessThanExpression;
7746
+ /**
7747
+ * The 'less than or equal to' clause of the row filter expression.
7748
+ */
7749
+ lessThanOrEqualTo?: LessThanOrEqualToExpression;
7750
+ /**
7751
+ * The 'like' clause of the row filter expression.
7752
+ */
7753
+ like?: LikeExpression;
7754
+ /**
7755
+ * The 'no equal to' clause of the row filter expression.
7756
+ */
7757
+ notEqualTo?: NotEqualToExpression;
7758
+ /**
7759
+ * The 'not in' clause of the row filter expression.
7760
+ */
7761
+ notIn?: NotInExpression;
7762
+ /**
7763
+ * The 'not like' clause of the row filter expression.
7764
+ */
7765
+ notLike?: NotLikeExpression;
7766
+ }
7767
+ export type RowFilterList = RowFilter[];
7267
7768
  export interface RunStatisticsForAssets {
7268
7769
  /**
7269
7770
  * The added statistic for the data source run.
@@ -7286,6 +7787,8 @@ declare namespace DataZone {
7286
7787
  */
7287
7788
  updated?: Integer;
7288
7789
  }
7790
+ export type S3Location = string;
7791
+ export type S3LocationList = S3Location[];
7289
7792
  export interface ScheduleConfiguration {
7290
7793
  /**
7291
7794
  * The schedule of the data source runs.
@@ -7759,6 +8262,7 @@ declare namespace DataZone {
7759
8262
  type?: MetadataGenerationRunType;
7760
8263
  }
7761
8264
  export type String = string;
8265
+ export type StringList = String[];
7762
8266
  export interface SubscribedAsset {
7763
8267
  /**
7764
8268
  * The identifier of the asset for which the subscription grant is created.
@@ -8256,6 +8760,78 @@ declare namespace DataZone {
8256
8760
  }
8257
8761
  export interface UntagResourceResponse {
8258
8762
  }
8763
+ export interface UpdateAssetFilterInput {
8764
+ /**
8765
+ * The ID of the data asset.
8766
+ */
8767
+ assetIdentifier: AssetId;
8768
+ /**
8769
+ * The configuration of the asset filter.
8770
+ */
8771
+ configuration?: AssetFilterConfiguration;
8772
+ /**
8773
+ * The description of the asset filter.
8774
+ */
8775
+ description?: Description;
8776
+ /**
8777
+ * The ID of the domain where you want to update an asset filter.
8778
+ */
8779
+ domainIdentifier: DomainId;
8780
+ /**
8781
+ * The ID of the asset filter.
8782
+ */
8783
+ identifier: FilterId;
8784
+ /**
8785
+ * The name of the asset filter.
8786
+ */
8787
+ name?: String;
8788
+ }
8789
+ export interface UpdateAssetFilterOutput {
8790
+ /**
8791
+ * The ID of the data asset.
8792
+ */
8793
+ assetId: AssetId;
8794
+ /**
8795
+ * The configuration of the asset filter.
8796
+ */
8797
+ configuration: AssetFilterConfiguration;
8798
+ /**
8799
+ * The timestamp at which the asset filter was created.
8800
+ */
8801
+ createdAt?: CreatedAt;
8802
+ /**
8803
+ * The description of the asset filter.
8804
+ */
8805
+ description?: Description;
8806
+ /**
8807
+ * The ID of the domain where the asset filter was created.
8808
+ */
8809
+ domainId: DomainId;
8810
+ /**
8811
+ * The column names of the asset filter.
8812
+ */
8813
+ effectiveColumnNames?: ColumnNameList;
8814
+ /**
8815
+ * The row filter of the asset filter.
8816
+ */
8817
+ effectiveRowFilter?: String;
8818
+ /**
8819
+ * The error message that is displayed if the action is not completed successfully.
8820
+ */
8821
+ errorMessage?: String;
8822
+ /**
8823
+ * The ID of the asset filter.
8824
+ */
8825
+ id: FilterId;
8826
+ /**
8827
+ * The name of the asset filter.
8828
+ */
8829
+ name: FilterName;
8830
+ /**
8831
+ * The status of the asset filter.
8832
+ */
8833
+ status?: FilterStatus;
8834
+ }
8259
8835
  export interface UpdateDataSourceInput {
8260
8836
  /**
8261
8837
  * The asset forms to be updated as part of the UpdateDataSource action.