@aws-sdk/client-quicksight 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.
@@ -135,16 +135,26 @@ export interface GetSessionEmbedUrlResponse {
135
135
  }
136
136
  /**
137
137
  * @public
138
+ * @enum
138
139
  */
139
- export declare enum GroupFilterAttribute {
140
- GROUP_NAME = "GROUP_NAME"
141
- }
140
+ export declare const GroupFilterAttribute: {
141
+ readonly GROUP_NAME: "GROUP_NAME";
142
+ };
142
143
  /**
143
144
  * @public
144
145
  */
145
- export declare enum GroupFilterOperator {
146
- StartsWith = "StartsWith"
147
- }
146
+ export type GroupFilterAttribute = (typeof GroupFilterAttribute)[keyof typeof GroupFilterAttribute];
147
+ /**
148
+ * @public
149
+ * @enum
150
+ */
151
+ export declare const GroupFilterOperator: {
152
+ readonly StartsWith: "StartsWith";
153
+ };
154
+ /**
155
+ * @public
156
+ */
157
+ export type GroupFilterOperator = (typeof GroupFilterOperator)[keyof typeof GroupFilterOperator];
148
158
  /**
149
159
  * @public
150
160
  * <p>A <code>GroupSearchFilter</code> object that you want to apply to your search.</p>