cdk-docker-image-deployment 0.0.186 → 0.0.187

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.
@@ -284,11 +284,11 @@ declare class QuickSight extends Service {
284
284
  */
285
285
  deleteThemeAlias(callback?: (err: AWSError, data: QuickSight.Types.DeleteThemeAliasResponse) => void): Request<QuickSight.Types.DeleteThemeAliasResponse, AWSError>;
286
286
  /**
287
- * Deletes the Amazon QuickSight user that is associated with the identity of the Identity and Access Management (IAM) user or role that's making the call. The IAM user isn't deleted as a result of this call.
287
+ * Deletes the Amazon QuickSight user that is associated with the identity of the IAM user or role that's making the call. The IAM user isn't deleted as a result of this call.
288
288
  */
289
289
  deleteUser(params: QuickSight.Types.DeleteUserRequest, callback?: (err: AWSError, data: QuickSight.Types.DeleteUserResponse) => void): Request<QuickSight.Types.DeleteUserResponse, AWSError>;
290
290
  /**
291
- * Deletes the Amazon QuickSight user that is associated with the identity of the Identity and Access Management (IAM) user or role that's making the call. The IAM user isn't deleted as a result of this call.
291
+ * Deletes the Amazon QuickSight user that is associated with the identity of the IAM user or role that's making the call. The IAM user isn't deleted as a result of this call.
292
292
  */
293
293
  deleteUser(callback?: (err: AWSError, data: QuickSight.Types.DeleteUserResponse) => void): Request<QuickSight.Types.DeleteUserResponse, AWSError>;
294
294
  /**
@@ -1225,7 +1225,7 @@ declare namespace QuickSight {
1225
1225
  */
1226
1226
  Message?: NonEmptyString;
1227
1227
  /**
1228
- *
1228
+ * Lists the violated entities that caused the analysis error
1229
1229
  */
1230
1230
  ViolatedEntities?: EntityList;
1231
1231
  }
@@ -7686,7 +7686,7 @@ declare namespace QuickSight {
7686
7686
  */
7687
7687
  SessionLifetimeInMinutes?: SessionLifetimeInMinutes;
7688
7688
  /**
7689
- * The Amazon QuickSight user's Amazon Resource Name (ARN), for use with QUICKSIGHT identity type. You can use this for any type of Amazon QuickSight users in your account (readers, authors, or admins). They need to be authenticated as one of the following: Active Directory (AD) users or group members Invited nonfederated users Identity and Access Management (IAM) users and IAM role-based sessions authenticated through Federated Single Sign-On using SAML, OpenID Connect, or IAM federation Omit this parameter for users in the third group, IAM users and IAM role-based sessions.
7689
+ * The Amazon QuickSight user's Amazon Resource Name (ARN), for use with QUICKSIGHT identity type. You can use this for any type of Amazon QuickSight users in your account (readers, authors, or admins). They need to be authenticated as one of the following: Active Directory (AD) users or group members Invited nonfederated users IAM users and IAM role-based sessions authenticated through Federated Single Sign-On using SAML, OpenID Connect, or IAM federation Omit this parameter for users in the third group, IAM users and IAM role-based sessions.
7690
7690
  */
7691
7691
  UserArn?: Arn;
7692
7692
  }
@@ -10703,6 +10703,10 @@ declare namespace QuickSight {
10703
10703
  * The row alternate color options (widget status, row alternate colors).
10704
10704
  */
10705
10705
  RowAlternateColorOptions?: RowAlternateColorOptions;
10706
+ /**
10707
+ * The visibility setting of a pivot table's collapsed row dimension fields. If the value of this structure is HIDDEN, all collapsed columns in a pivot table are automatically hidden. The default value is VISIBLE.
10708
+ */
10709
+ CollapsedRowDimensionsVisibility?: Visibility;
10706
10710
  }
10707
10711
  export interface PivotTablePaginatedReportOptions {
10708
10712
  /**
@@ -11235,11 +11239,27 @@ declare namespace QuickSight {
11235
11239
  */
11236
11240
  Status?: StatusCode;
11237
11241
  }
11242
+ export interface RegisteredUserConsoleFeatureConfigurations {
11243
+ /**
11244
+ * The state persistence configurations of an embedded Amazon QuickSight console.
11245
+ */
11246
+ StatePersistence?: StatePersistenceConfigurations;
11247
+ }
11238
11248
  export interface RegisteredUserDashboardEmbeddingConfiguration {
11239
11249
  /**
11240
11250
  * The dashboard ID for the dashboard that you want the user to see first. This ID is included in the output URL. When the URL in response is accessed, Amazon QuickSight renders this dashboard if the user has permissions to view it. If the user does not have permission to view this dashboard, they see a permissions error message.
11241
11251
  */
11242
11252
  InitialDashboardId: ShortRestrictiveResourceId;
11253
+ /**
11254
+ * The feature configurations of an embbedded Amazon QuickSight dashboard.
11255
+ */
11256
+ FeatureConfigurations?: RegisteredUserDashboardFeatureConfigurations;
11257
+ }
11258
+ export interface RegisteredUserDashboardFeatureConfigurations {
11259
+ /**
11260
+ * The state persistence settings of an embedded dashboard.
11261
+ */
11262
+ StatePersistence?: StatePersistenceConfigurations;
11243
11263
  }
11244
11264
  export interface RegisteredUserDashboardVisualEmbeddingConfiguration {
11245
11265
  /**
@@ -11276,6 +11296,10 @@ declare namespace QuickSight {
11276
11296
  * The initial URL path for the Amazon QuickSight console. InitialPath is required. The entry point URL is constrained to the following paths: /start /start/analyses /start/dashboards /start/favorites /dashboards/DashboardId. DashboardId is the actual ID key from the Amazon QuickSight console URL of the dashboard. /analyses/AnalysisId. AnalysisId is the actual ID key from the Amazon QuickSight console URL of the analysis.
11277
11297
  */
11278
11298
  InitialPath?: EntryPath;
11299
+ /**
11300
+ * The embedding configuration of an embedded Amazon QuickSight console.
11301
+ */
11302
+ FeatureConfigurations?: RegisteredUserConsoleFeatureConfigurations;
11279
11303
  }
11280
11304
  export interface RelationalTable {
11281
11305
  /**
@@ -12356,6 +12380,12 @@ declare namespace QuickSight {
12356
12380
  */
12357
12381
  DisableSsl?: Boolean;
12358
12382
  }
12383
+ export interface StatePersistenceConfigurations {
12384
+ /**
12385
+ * Determines if a Amazon QuickSight dashboard's state persistence settings are turned on or off.
12386
+ */
12387
+ Enabled: Boolean;
12388
+ }
12359
12389
  export type Status = "ENABLED"|"DISABLED"|string;
12360
12390
  export type StatusCode = number;
12361
12391
  export type String = string;
@@ -13865,7 +13895,7 @@ declare namespace QuickSight {
13865
13895
  */
13866
13896
  AwsAccountId: AwsAccountId;
13867
13897
  /**
13868
- * The default namespace for this Amazon Web Services account. Currently, the default is default. Identity and Access Management (IAM) users that register for the first time with Amazon QuickSight provide an email address that becomes associated with the default namespace.
13898
+ * The default namespace for this Amazon Web Services account. Currently, the default is default. IAM users that register for the first time with Amazon QuickSight provide an email address that becomes associated with the default namespace.
13869
13899
  */
13870
13900
  DefaultNamespace: Namespace;
13871
13901
  /**
@@ -14882,7 +14912,7 @@ declare namespace QuickSight {
14882
14912
  */
14883
14913
  IdentityType?: IdentityType;
14884
14914
  /**
14885
- * The active status of user. When you create an Amazon QuickSight user thats not an IAM user or an Active Directory user, that user is inactive until they sign in and provide a password.
14915
+ * The active status of user. When you create an Amazon QuickSight user that's not an IAM user or an Active Directory user, that user is inactive until they sign in and provide a password.
14886
14916
  */
14887
14917
  Active?: Boolean;
14888
14918
  /**
@@ -127,7 +127,7 @@ declare namespace RedshiftData {
127
127
  */
128
128
  WithEvent?: Boolean;
129
129
  /**
130
- * The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
130
+ * The serverless workgroup name or Amazon Resource Name (ARN). This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
131
131
  */
132
132
  WorkgroupName?: WorkgroupNameString;
133
133
  }
@@ -157,7 +157,7 @@ declare namespace RedshiftData {
157
157
  */
158
158
  SecretArn?: SecretArn;
159
159
  /**
160
- * The serverless workgroup name. This element is not returned when connecting to a provisioned cluster.
160
+ * The serverless workgroup name or Amazon Resource Name (ARN). This element is not returned when connecting to a provisioned cluster.
161
161
  */
162
162
  WorkgroupName?: WorkgroupNameString;
163
163
  }
@@ -316,7 +316,7 @@ declare namespace RedshiftData {
316
316
  */
317
317
  UpdatedAt?: Timestamp;
318
318
  /**
319
- * The serverless workgroup name.
319
+ * The serverless workgroup name or Amazon Resource Name (ARN).
320
320
  */
321
321
  WorkgroupName?: WorkgroupNameString;
322
322
  }
@@ -358,7 +358,7 @@ declare namespace RedshiftData {
358
358
  */
359
359
  Table?: String;
360
360
  /**
361
- * The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
361
+ * The serverless workgroup name or Amazon Resource Name (ARN). This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
362
362
  */
363
363
  WorkgroupName?: WorkgroupNameString;
364
364
  }
@@ -414,7 +414,7 @@ declare namespace RedshiftData {
414
414
  */
415
415
  WithEvent?: Boolean;
416
416
  /**
417
- * The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
417
+ * The serverless workgroup name or Amazon Resource Name (ARN). This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
418
418
  */
419
419
  WorkgroupName?: WorkgroupNameString;
420
420
  }
@@ -444,7 +444,7 @@ declare namespace RedshiftData {
444
444
  */
445
445
  SecretArn?: SecretArn;
446
446
  /**
447
- * The serverless workgroup name. This element is not returned when connecting to a provisioned cluster.
447
+ * The serverless workgroup name or Amazon Resource Name (ARN). This element is not returned when connecting to a provisioned cluster.
448
448
  */
449
449
  WorkgroupName?: WorkgroupNameString;
450
450
  }
@@ -530,7 +530,7 @@ declare namespace RedshiftData {
530
530
  */
531
531
  SecretArn?: SecretArn;
532
532
  /**
533
- * The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
533
+ * The serverless workgroup name or Amazon Resource Name (ARN). This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
534
534
  */
535
535
  WorkgroupName?: WorkgroupNameString;
536
536
  }
@@ -578,7 +578,7 @@ declare namespace RedshiftData {
578
578
  */
579
579
  SecretArn?: SecretArn;
580
580
  /**
581
- * The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
581
+ * The serverless workgroup name or Amazon Resource Name (ARN). This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
582
582
  */
583
583
  WorkgroupName?: WorkgroupNameString;
584
584
  }
@@ -663,7 +663,7 @@ declare namespace RedshiftData {
663
663
  */
664
664
  TablePattern?: String;
665
665
  /**
666
- * The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
666
+ * The serverless workgroup name or Amazon Resource Name (ARN). This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
667
667
  */
668
668
  WorkgroupName?: WorkgroupNameString;
669
669
  }
@@ -11043,11 +11043,11 @@ declare namespace SageMaker {
11043
11043
  }
11044
11044
  export interface FinalHyperParameterTuningJobObjectiveMetric {
11045
11045
  /**
11046
- * Whether to minimize or maximize the objective metric. Valid values are Minimize and Maximize.
11046
+ * Select if you want to minimize or maximize the objective metric during hyperparameter tuning.
11047
11047
  */
11048
11048
  Type?: HyperParameterTuningJobObjectiveType;
11049
11049
  /**
11050
- * The name of the objective metric.
11050
+ * The name of the objective metric. For SageMaker built-in algorithms, metrics are defined per algorithm. See the metrics for XGBoost as an example. You can also use a custom algorithm for training and define your own metrics. For more information, see Define metrics and environment variables.
11051
11051
  */
11052
11052
  MetricName: MetricName;
11053
11053
  /**
@@ -17490,7 +17490,7 @@ declare namespace SageMaker {
17490
17490
  }
17491
17491
  export interface OnlineStoreSecurityConfig {
17492
17492
  /**
17493
- * The ID of the Amazon Web Services Key Management Service (Amazon Web Services KMS) key that SageMaker Feature Store uses to encrypt the Amazon S3 objects at rest using Amazon S3 server-side encryption. The caller (either IAM user or IAM role) of CreateFeatureGroup must have below permissions to the OnlineStore KmsKeyId: "kms:Encrypt" "kms:Decrypt" "kms:DescribeKey" "kms:CreateGrant" "kms:RetireGrant" "kms:ReEncryptFrom" "kms:ReEncryptTo" "kms:GenerateDataKey" "kms:ListAliases" "kms:ListGrants" "kms:RevokeGrant" The caller (either user or IAM role) to all DataPlane operations (PutRecord, GetRecord, DeleteRecord) must have the following permissions to the KmsKeyId: "kms:Decrypt"
17493
+ * The Amazon Web Services Key Management Service (KMS) key ARN that SageMaker Feature Store uses to encrypt the Amazon S3 objects at rest using Amazon S3 server-side encryption. The caller (either IAM user or IAM role) of CreateFeatureGroup must have below permissions to the OnlineStore KmsKeyId: "kms:Encrypt" "kms:Decrypt" "kms:DescribeKey" "kms:CreateGrant" "kms:RetireGrant" "kms:ReEncryptFrom" "kms:ReEncryptTo" "kms:GenerateDataKey" "kms:ListAliases" "kms:ListGrants" "kms:RevokeGrant" The caller (either user or IAM role) to all DataPlane operations (PutRecord, GetRecord, DeleteRecord) must have the following permissions to the KmsKeyId: "kms:Decrypt"
17494
17494
  */
17495
17495
  KmsKeyId?: KmsKeyId;
17496
17496
  }
@@ -18291,6 +18291,10 @@ declare namespace SageMaker {
18291
18291
  * The timeout value, in seconds, for your inference container to pass health check by SageMaker Hosting. For more information about health check, see How Your Container Should Respond to Health Check (Ping) Requests.
18292
18292
  */
18293
18293
  ContainerStartupHealthCheckTimeoutInSeconds?: ProductionVariantContainerStartupHealthCheckTimeoutInSeconds;
18294
+ /**
18295
+ * You can use this parameter to turn on native Amazon Web Services Systems Manager (SSM) access for a production variant behind an endpoint. By default, SSM access is disabled for all production variants behind an endpoints. You can turn on or turn off SSM access for a production variant behind an existing endpoint by creating a new endpoint configuration and calling UpdateEndpoint.
18296
+ */
18297
+ EnableSSMAccess?: ProductionVariantSSMAccess;
18294
18298
  }
18295
18299
  export type ProductionVariantAcceleratorType = "ml.eia1.medium"|"ml.eia1.large"|"ml.eia1.xlarge"|"ml.eia2.medium"|"ml.eia2.large"|"ml.eia2.xlarge"|string;
18296
18300
  export type ProductionVariantContainerStartupHealthCheckTimeoutInSeconds = number;
@@ -18307,6 +18311,7 @@ declare namespace SageMaker {
18307
18311
  export type ProductionVariantInstanceType = "ml.t2.medium"|"ml.t2.large"|"ml.t2.xlarge"|"ml.t2.2xlarge"|"ml.m4.xlarge"|"ml.m4.2xlarge"|"ml.m4.4xlarge"|"ml.m4.10xlarge"|"ml.m4.16xlarge"|"ml.m5.large"|"ml.m5.xlarge"|"ml.m5.2xlarge"|"ml.m5.4xlarge"|"ml.m5.12xlarge"|"ml.m5.24xlarge"|"ml.m5d.large"|"ml.m5d.xlarge"|"ml.m5d.2xlarge"|"ml.m5d.4xlarge"|"ml.m5d.12xlarge"|"ml.m5d.24xlarge"|"ml.c4.large"|"ml.c4.xlarge"|"ml.c4.2xlarge"|"ml.c4.4xlarge"|"ml.c4.8xlarge"|"ml.p2.xlarge"|"ml.p2.8xlarge"|"ml.p2.16xlarge"|"ml.p3.2xlarge"|"ml.p3.8xlarge"|"ml.p3.16xlarge"|"ml.c5.large"|"ml.c5.xlarge"|"ml.c5.2xlarge"|"ml.c5.4xlarge"|"ml.c5.9xlarge"|"ml.c5.18xlarge"|"ml.c5d.large"|"ml.c5d.xlarge"|"ml.c5d.2xlarge"|"ml.c5d.4xlarge"|"ml.c5d.9xlarge"|"ml.c5d.18xlarge"|"ml.g4dn.xlarge"|"ml.g4dn.2xlarge"|"ml.g4dn.4xlarge"|"ml.g4dn.8xlarge"|"ml.g4dn.12xlarge"|"ml.g4dn.16xlarge"|"ml.r5.large"|"ml.r5.xlarge"|"ml.r5.2xlarge"|"ml.r5.4xlarge"|"ml.r5.12xlarge"|"ml.r5.24xlarge"|"ml.r5d.large"|"ml.r5d.xlarge"|"ml.r5d.2xlarge"|"ml.r5d.4xlarge"|"ml.r5d.12xlarge"|"ml.r5d.24xlarge"|"ml.inf1.xlarge"|"ml.inf1.2xlarge"|"ml.inf1.6xlarge"|"ml.inf1.24xlarge"|"ml.c6i.large"|"ml.c6i.xlarge"|"ml.c6i.2xlarge"|"ml.c6i.4xlarge"|"ml.c6i.8xlarge"|"ml.c6i.12xlarge"|"ml.c6i.16xlarge"|"ml.c6i.24xlarge"|"ml.c6i.32xlarge"|"ml.g5.xlarge"|"ml.g5.2xlarge"|"ml.g5.4xlarge"|"ml.g5.8xlarge"|"ml.g5.12xlarge"|"ml.g5.16xlarge"|"ml.g5.24xlarge"|"ml.g5.48xlarge"|"ml.p4d.24xlarge"|"ml.c7g.large"|"ml.c7g.xlarge"|"ml.c7g.2xlarge"|"ml.c7g.4xlarge"|"ml.c7g.8xlarge"|"ml.c7g.12xlarge"|"ml.c7g.16xlarge"|"ml.m6g.large"|"ml.m6g.xlarge"|"ml.m6g.2xlarge"|"ml.m6g.4xlarge"|"ml.m6g.8xlarge"|"ml.m6g.12xlarge"|"ml.m6g.16xlarge"|"ml.m6gd.large"|"ml.m6gd.xlarge"|"ml.m6gd.2xlarge"|"ml.m6gd.4xlarge"|"ml.m6gd.8xlarge"|"ml.m6gd.12xlarge"|"ml.m6gd.16xlarge"|"ml.c6g.large"|"ml.c6g.xlarge"|"ml.c6g.2xlarge"|"ml.c6g.4xlarge"|"ml.c6g.8xlarge"|"ml.c6g.12xlarge"|"ml.c6g.16xlarge"|"ml.c6gd.large"|"ml.c6gd.xlarge"|"ml.c6gd.2xlarge"|"ml.c6gd.4xlarge"|"ml.c6gd.8xlarge"|"ml.c6gd.12xlarge"|"ml.c6gd.16xlarge"|"ml.c6gn.large"|"ml.c6gn.xlarge"|"ml.c6gn.2xlarge"|"ml.c6gn.4xlarge"|"ml.c6gn.8xlarge"|"ml.c6gn.12xlarge"|"ml.c6gn.16xlarge"|"ml.r6g.large"|"ml.r6g.xlarge"|"ml.r6g.2xlarge"|"ml.r6g.4xlarge"|"ml.r6g.8xlarge"|"ml.r6g.12xlarge"|"ml.r6g.16xlarge"|"ml.r6gd.large"|"ml.r6gd.xlarge"|"ml.r6gd.2xlarge"|"ml.r6gd.4xlarge"|"ml.r6gd.8xlarge"|"ml.r6gd.12xlarge"|"ml.r6gd.16xlarge"|"ml.p4de.24xlarge"|string;
18308
18312
  export type ProductionVariantList = ProductionVariant[];
18309
18313
  export type ProductionVariantModelDataDownloadTimeoutInSeconds = number;
18314
+ export type ProductionVariantSSMAccess = boolean;
18310
18315
  export interface ProductionVariantServerlessConfig {
18311
18316
  /**
18312
18317
  * The memory size of your serverless endpoint. Valid values are in 1 GB increments: 1024 MB, 2048 MB, 3072 MB, 4096 MB, 5120 MB, or 6144 MB.
@@ -19207,7 +19212,7 @@ declare namespace SageMaker {
19207
19212
  */
19208
19213
  S3Uri: S3Uri;
19209
19214
  /**
19210
- * The Amazon Web Services Key Management Service (KMS) key ID of the key used to encrypt any objects written into the OfflineStore S3 location. The IAM roleARN that is passed as a parameter to CreateFeatureGroup must have below permissions to the KmsKeyId: "kms:GenerateDataKey"
19215
+ * The Amazon Web Services Key Management Service (KMS) key ARN of the key used to encrypt any objects written into the OfflineStore S3 location. The IAM roleARN that is passed as a parameter to CreateFeatureGroup must have below permissions to the KmsKeyId: "kms:GenerateDataKey"
19211
19216
  */
19212
19217
  KmsKeyId?: KmsKeyId;
19213
19218
  /**
@@ -1605,7 +1605,7 @@ declare namespace SESV2 {
1605
1605
  */
1606
1606
  Enabled?: Enabled;
1607
1607
  /**
1608
- * The types of events that Amazon SES sends to the specified event destinations.
1608
+ * The types of events that Amazon SES sends to the specified event destinations. SEND - The send request was successful and SES will attempt to deliver the message to the recipient’s mail server. (If account-level or global suppression is being used, SES will still count it as a send, but delivery is suppressed.) REJECT - SES accepted the email, but determined that it contained a virus and didn’t attempt to deliver it to the recipient’s mail server. BOUNCE - (Hard bounce) The recipient's mail server permanently rejected the email. (Soft bounces are only included when SES fails to deliver the email after retrying for a period of time.) COMPLAINT - The email was successfully delivered to the recipient’s mail server, but the recipient marked it as spam. DELIVERY - SES successfully delivered the email to the recipient's mail server. OPEN - The recipient received the message and opened it in their email client. CLICK - The recipient clicked one or more links in the email. RENDERING_FAILURE - The email wasn't sent because of a template rendering issue. This event type can occur when template data is missing, or when there is a mismatch between template parameters and data. (This event type only occurs when you send email using the SendTemplatedEmail or SendBulkTemplatedEmail API operations.) DELIVERY_DELAY - The email couldn't be delivered to the recipient’s mail server because a temporary issue occurred. Delivery delays can occur, for example, when the recipient's inbox is full, or when the receiving email server experiences a transient issue. SUBSCRIPTION - The email was successfully delivered, but the recipient updated their subscription preferences by clicking on an unsubscribe link as part of your subscription management.
1609
1609
  */
1610
1610
  MatchingEventTypes: EventTypes;
1611
1611
  /**
@@ -2981,7 +2981,7 @@ declare namespace SESV2 {
2981
2981
  */
2982
2982
  ResourceArn?: AmazonResourceName;
2983
2983
  /**
2984
- * The recommendation type, with values like DKIM, SPF or DMARC.
2984
+ * The recommendation type, with values like DKIM, SPF, DMARC or BIMI.
2985
2985
  */
2986
2986
  Type?: RecommendationType;
2987
2987
  /**
@@ -3008,7 +3008,7 @@ declare namespace SESV2 {
3008
3008
  export type RecommendationDescription = string;
3009
3009
  export type RecommendationImpact = "LOW"|"HIGH"|string;
3010
3010
  export type RecommendationStatus = "OPEN"|"FIXED"|string;
3011
- export type RecommendationType = "DKIM"|"DMARC"|"SPF"|string;
3011
+ export type RecommendationType = "DKIM"|"DMARC"|"SPF"|"BIMI"|string;
3012
3012
  export type RecommendationsList = Recommendation[];
3013
3013
  export type RenderedEmailTemplate = string;
3014
3014
  export interface ReplacementEmailContent {
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1331.0',
86
+ VERSION: '2.1332.0',
87
87
 
88
88
  /**
89
89
  * @api private