@aws-sdk/client-macie2 3.301.0 → 3.303.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.
- package/dist-cjs/models/models_0.js +304 -358
- package/dist-cjs/models/models_1.js +6 -7
- package/dist-es/models/models_0.js +304 -358
- package/dist-es/models/models_1.js +6 -7
- package/dist-types/models/models_0.d.ts +574 -304
- package/dist-types/models/models_1.d.ts +11 -6
- package/dist-types/ts3.4/models/models_0.d.ts +392 -304
- package/dist-types/ts3.4/models/models_1.d.ts +8 -6
- package/package.json +35 -35
|
@@ -265,13 +265,18 @@ export interface SearchResourcesBucketCriteria {
|
|
|
265
265
|
}
|
|
266
266
|
/**
|
|
267
267
|
* @public
|
|
268
|
+
* @enum
|
|
268
269
|
*/
|
|
269
|
-
export declare
|
|
270
|
-
ACCOUNT_ID
|
|
271
|
-
RESOURCE_NAME
|
|
272
|
-
S3_CLASSIFIABLE_OBJECT_COUNT
|
|
273
|
-
S3_CLASSIFIABLE_SIZE_IN_BYTES
|
|
274
|
-
}
|
|
270
|
+
export declare const SearchResourcesSortAttributeName: {
|
|
271
|
+
readonly ACCOUNT_ID: "ACCOUNT_ID";
|
|
272
|
+
readonly RESOURCE_NAME: "RESOURCE_NAME";
|
|
273
|
+
readonly S3_CLASSIFIABLE_OBJECT_COUNT: "S3_CLASSIFIABLE_OBJECT_COUNT";
|
|
274
|
+
readonly S3_CLASSIFIABLE_SIZE_IN_BYTES: "S3_CLASSIFIABLE_SIZE_IN_BYTES";
|
|
275
|
+
};
|
|
276
|
+
/**
|
|
277
|
+
* @public
|
|
278
|
+
*/
|
|
279
|
+
export type SearchResourcesSortAttributeName = (typeof SearchResourcesSortAttributeName)[keyof typeof SearchResourcesSortAttributeName];
|
|
275
280
|
/**
|
|
276
281
|
* @public
|
|
277
282
|
* <p>Specifies criteria for sorting the results of a query for information about Amazon Web Services resources that Amazon Macie monitors and analyzes.</p>
|