cdk-docker-image-deployment 0.0.139 → 0.0.141

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.
Files changed (45) hide show
  1. package/.jsii +3 -3
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +20 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/appflow-2020-08-23.min.json +172 -130
  8. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +17 -8
  9. package/node_modules/aws-sdk/apis/connectparticipant-2018-09-07.min.json +3 -1
  10. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +6 -0
  11. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +427 -311
  12. package/node_modules/aws-sdk/apis/groundstation-2019-05-23.min.json +53 -41
  13. package/node_modules/aws-sdk/apis/groundstation-2019-05-23.waiters2.json +22 -0
  14. package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +210 -206
  15. package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +97 -24
  16. package/node_modules/aws-sdk/apis/panorama-2019-07-24.min.json +20 -17
  17. package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +556 -537
  18. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +568 -563
  19. package/node_modules/aws-sdk/clients/appflow.d.ts +60 -1
  20. package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +8 -8
  21. package/node_modules/aws-sdk/clients/codeartifact.d.ts +8 -8
  22. package/node_modules/aws-sdk/clients/connect.d.ts +23 -0
  23. package/node_modules/aws-sdk/clients/connectparticipant.d.ts +10 -2
  24. package/node_modules/aws-sdk/clients/ec2.d.ts +11 -3
  25. package/node_modules/aws-sdk/clients/glue.d.ts +140 -1
  26. package/node_modules/aws-sdk/clients/groundstation.d.ts +26 -0
  27. package/node_modules/aws-sdk/clients/groundstation.js +1 -0
  28. package/node_modules/aws-sdk/clients/ivs.d.ts +12 -12
  29. package/node_modules/aws-sdk/clients/medialive.d.ts +5 -0
  30. package/node_modules/aws-sdk/clients/opensearch.d.ts +83 -5
  31. package/node_modules/aws-sdk/clients/panorama.d.ts +7 -3
  32. package/node_modules/aws-sdk/clients/quicksight.d.ts +30 -5
  33. package/node_modules/aws-sdk/clients/sagemaker.d.ts +9 -2
  34. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +11 -1
  35. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +1060 -1033
  36. package/node_modules/aws-sdk/dist/aws-sdk.js +26 -11
  37. package/node_modules/aws-sdk/dist/aws-sdk.min.js +77 -77
  38. package/node_modules/aws-sdk/lib/core.js +1 -1
  39. package/node_modules/aws-sdk/package.json +1 -1
  40. package/node_modules/get-intrinsic/.eslintrc +1 -0
  41. package/node_modules/get-intrinsic/CHANGELOG.md +12 -0
  42. package/node_modules/get-intrinsic/index.js +10 -0
  43. package/node_modules/get-intrinsic/package.json +7 -6
  44. package/node_modules/get-intrinsic/test/GetIntrinsic.js +1 -1
  45. package/package.json +4 -4
@@ -2,6 +2,7 @@ import {Request} from '../lib/request';
2
2
  import {Response} from '../lib/response';
3
3
  import {AWSError} from '../lib/error';
4
4
  import {Service} from '../lib/service';
5
+ import {WaiterConfiguration} from '../lib/service';
5
6
  import {ServiceConfigurationOptions} from '../lib/service';
6
7
  import {ConfigBase as Config} from '../lib/config-base';
7
8
  interface Blob {}
@@ -251,6 +252,14 @@ declare class GroundStation extends Service {
251
252
  * Updates a mission profile. Updating a mission profile will not update the execution parameters for existing future contacts.
252
253
  */
253
254
  updateMissionProfile(callback?: (err: AWSError, data: GroundStation.Types.MissionProfileIdResponse) => void): Request<GroundStation.Types.MissionProfileIdResponse, AWSError>;
255
+ /**
256
+ * Waits for the contactScheduled state by periodically calling the underlying GroundStation.describeContactoperation every 5 seconds (at most 180 times). Waits until a contact has been scheduled
257
+ */
258
+ waitFor(state: "contactScheduled", params: GroundStation.Types.DescribeContactRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: GroundStation.Types.DescribeContactResponse) => void): Request<GroundStation.Types.DescribeContactResponse, AWSError>;
259
+ /**
260
+ * Waits for the contactScheduled state by periodically calling the underlying GroundStation.describeContactoperation every 5 seconds (at most 180 times). Waits until a contact has been scheduled
261
+ */
262
+ waitFor(state: "contactScheduled", callback?: (err: AWSError, data: GroundStation.Types.DescribeContactResponse) => void): Request<GroundStation.Types.DescribeContactResponse, AWSError>;
254
263
  }
255
264
  declare namespace GroundStation {
256
265
  export type AWSRegion = string;
@@ -458,6 +467,14 @@ declare namespace GroundStation {
458
467
  tags?: TagsMap;
459
468
  }
460
469
  export interface CreateDataflowEndpointGroupRequest {
470
+ /**
471
+ * Amount of time, in seconds, after a contact ends for the contact to remain in a POSTPASS state. A CloudWatch event is emitted when the contact enters and exits the POSTPASS state.
472
+ */
473
+ contactPostPassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
474
+ /**
475
+ * Amount of time, in seconds, prior to contact start for the contact to remain in a PREPASS state. A CloudWatch event is emitted when the contact enters and exits the PREPASS state.
476
+ */
477
+ contactPrePassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
461
478
  /**
462
479
  * Endpoint details of each endpoint in the dataflow endpoint group.
463
480
  */
@@ -572,6 +589,7 @@ declare namespace GroundStation {
572
589
  dataflowEndpointRegion?: String;
573
590
  }
574
591
  export type DataflowEndpointGroupArn = string;
592
+ export type DataflowEndpointGroupDurationInSeconds = number;
575
593
  export interface DataflowEndpointGroupIdResponse {
576
594
  /**
577
595
  * UUID of a dataflow endpoint group.
@@ -938,6 +956,14 @@ declare namespace GroundStation {
938
956
  dataflowEndpointGroupId: Uuid;
939
957
  }
940
958
  export interface GetDataflowEndpointGroupResponse {
959
+ /**
960
+ * Amount of time, in seconds, after a contact ends for the contact to remain in a POSTPASS state. A CloudWatch event is emitted when the contact enters and exits the POSTPASS state.
961
+ */
962
+ contactPostPassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
963
+ /**
964
+ * Amount of time, in seconds, prior to contact start for the contact to remain in a PREPASS state. A CloudWatch event is emitted when the contact enters and exits the PREPASS state.
965
+ */
966
+ contactPrePassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
941
967
  /**
942
968
  * ARN of a dataflow endpoint group.
943
969
  */
@@ -9,6 +9,7 @@ Object.defineProperty(apiLoader.services['groundstation'], '2019-05-23', {
9
9
  get: function get() {
10
10
  var model = require('../apis/groundstation-2019-05-23.min.json');
11
11
  model.paginators = require('../apis/groundstation-2019-05-23.paginators.json').pagination;
12
+ model.waiters = require('../apis/groundstation-2019-05-23.waiters2.json').waiters;
12
13
  return model;
13
14
  },
14
15
  enumerable: true,
@@ -288,7 +288,7 @@ declare namespace IVS {
288
288
  }
289
289
  export interface BatchGetStreamKeyRequest {
290
290
  /**
291
- * Array of ARNs, one per channel.
291
+ * Array of ARNs, one per stream key.
292
292
  */
293
293
  arns: StreamKeyArnList;
294
294
  }
@@ -333,7 +333,7 @@ declare namespace IVS {
333
333
  */
334
334
  recordingConfigurationArn?: ChannelRecordingConfigurationArn;
335
335
  /**
336
- * Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
336
+ * Tags attached to the resource. Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
337
337
  */
338
338
  tags?: Tags;
339
339
  /**
@@ -369,7 +369,7 @@ declare namespace IVS {
369
369
  */
370
370
  recordingConfigurationArn?: ChannelRecordingConfigurationArn;
371
371
  /**
372
- * Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
372
+ * Tags attached to the resource. Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
373
373
  */
374
374
  tags?: Tags;
375
375
  }
@@ -744,7 +744,7 @@ declare namespace IVS {
744
744
  }
745
745
  export interface ListTagsForResourceResponse {
746
746
  /**
747
- *
747
+ * Tags attached to the resource. Array of maps, each of the form string:string (key:value).
748
748
  */
749
749
  tags: Tags;
750
750
  }
@@ -768,7 +768,7 @@ declare namespace IVS {
768
768
  */
769
769
  name?: PlaybackKeyPairName;
770
770
  /**
771
- * Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
771
+ * Tags attached to the resource. Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
772
772
  */
773
773
  tags?: Tags;
774
774
  }
@@ -786,7 +786,7 @@ declare namespace IVS {
786
786
  */
787
787
  name?: PlaybackKeyPairName;
788
788
  /**
789
- * Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
789
+ * Tags attached to the resource. Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
790
790
  */
791
791
  tags?: Tags;
792
792
  }
@@ -824,7 +824,7 @@ declare namespace IVS {
824
824
  */
825
825
  state: RecordingConfigurationState;
826
826
  /**
827
- * Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
827
+ * Tags attached to the resource. Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
828
828
  */
829
829
  tags?: Tags;
830
830
  /**
@@ -854,7 +854,7 @@ declare namespace IVS {
854
854
  */
855
855
  state: RecordingConfigurationState;
856
856
  /**
857
- * Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
857
+ * Tags attached to the resource. Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
858
858
  */
859
859
  tags?: Tags;
860
860
  }
@@ -939,7 +939,7 @@ declare namespace IVS {
939
939
  */
940
940
  channelArn?: ChannelArn;
941
941
  /**
942
- * Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
942
+ * Tags attached to the resource. Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
943
943
  */
944
944
  tags?: Tags;
945
945
  /**
@@ -960,7 +960,7 @@ declare namespace IVS {
960
960
  */
961
961
  channelArn?: ChannelArn;
962
962
  /**
963
- * Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
963
+ * Tags attached to the resource. Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
964
964
  */
965
965
  tags?: Tags;
966
966
  }
@@ -1055,7 +1055,7 @@ declare namespace IVS {
1055
1055
  */
1056
1056
  resourceArn: ResourceArn;
1057
1057
  /**
1058
- * Array of tags to be added or updated. See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
1058
+ * Array of tags to be added or updated. Array of maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
1059
1059
  */
1060
1060
  tags: Tags;
1061
1061
  }
@@ -1081,7 +1081,7 @@ declare namespace IVS {
1081
1081
  */
1082
1082
  resourceArn: ResourceArn;
1083
1083
  /**
1084
- * Array of tags to be removed. See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
1084
+ * Array of tags to be removed. Array of maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
1085
1085
  */
1086
1086
  tagKeys: TagKeyList;
1087
1087
  }
@@ -4801,6 +4801,10 @@ When a segmentation style of "maintainCadence" is selected and a segment is trun
4801
4801
  * Packet Identifier (PID) of the elementary video stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
4802
4802
  */
4803
4803
  VideoPid?: __string;
4804
+ /**
4805
+ * Defines the amount SCTE-35 preroll will be increased (in milliseconds) on the output. Preroll is the amount of time between the presence of a SCTE-35 indication in a transport stream and the PTS of the video frame it references. Zero means don't add pullup (it doesn't mean set the preroll to zero). Negative pullup is not supported, which means that you can't make the preroll shorter. Be aware that latency in the output will increase by the pullup amount.
4806
+ */
4807
+ Scte35PrerollPullupMilliseconds?: __doubleMin0Max5000;
4804
4808
  }
4805
4809
  export type M2tsTimedMetadataBehavior = "NO_PASSTHROUGH"|"PASSTHROUGH"|string;
4806
4810
  export type M3u8NielsenId3Behavior = "NO_PASSTHROUGH"|"PASSTHROUGH"|string;
@@ -7092,6 +7096,7 @@ If STANDARD channel, subnet IDs must be mapped to two unique availability zones
7092
7096
  export type __doubleMin0 = number;
7093
7097
  export type __doubleMin0Max1 = number;
7094
7098
  export type __doubleMin0Max100 = number;
7099
+ export type __doubleMin0Max5000 = number;
7095
7100
  export type __doubleMin1 = number;
7096
7101
  export type __doubleMin1Max65535 = number;
7097
7102
  export type __doubleMinNegative59Max0 = number;
@@ -20,11 +20,11 @@ declare class OpenSearch extends Service {
20
20
  */
21
21
  acceptInboundConnection(callback?: (err: AWSError, data: OpenSearch.Types.AcceptInboundConnectionResponse) => void): Request<OpenSearch.Types.AcceptInboundConnectionResponse, AWSError>;
22
22
  /**
23
- * Attaches tags to an existing Amazon OpenSearch Service domain. Tags are a set of case-sensitive key-value pairs. An domain can have up to 10 tags. For more information, see Tagging Amazon OpenSearch Service domains.
23
+ * Attaches tags to an existing Amazon OpenSearch Service domain. Tags are a set of case-sensitive key-value pairs. A domain can have up to 10 tags. For more information, see Tagging Amazon OpenSearch Service domains.
24
24
  */
25
25
  addTags(params: OpenSearch.Types.AddTagsRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
26
26
  /**
27
- * Attaches tags to an existing Amazon OpenSearch Service domain. Tags are a set of case-sensitive key-value pairs. An domain can have up to 10 tags. For more information, see Tagging Amazon OpenSearch Service domains.
27
+ * Attaches tags to an existing Amazon OpenSearch Service domain. Tags are a set of case-sensitive key-value pairs. A domain can have up to 10 tags. For more information, see Tagging Amazon OpenSearch Service domains.
28
28
  */
29
29
  addTags(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
30
30
  /**
@@ -163,6 +163,14 @@ declare class OpenSearch extends Service {
163
163
  * Returns domain configuration information about the specified Amazon OpenSearch Service domains.
164
164
  */
165
165
  describeDomains(callback?: (err: AWSError, data: OpenSearch.Types.DescribeDomainsResponse) => void): Request<OpenSearch.Types.DescribeDomainsResponse, AWSError>;
166
+ /**
167
+ * Describes the progress of a pre-update dry run analysis on an Amazon OpenSearch Service domain. For more information, see Determining whether a change will cause a blue/green deployment.
168
+ */
169
+ describeDryRunProgress(params: OpenSearch.Types.DescribeDryRunProgressRequest, callback?: (err: AWSError, data: OpenSearch.Types.DescribeDryRunProgressResponse) => void): Request<OpenSearch.Types.DescribeDryRunProgressResponse, AWSError>;
170
+ /**
171
+ * Describes the progress of a pre-update dry run analysis on an Amazon OpenSearch Service domain. For more information, see Determining whether a change will cause a blue/green deployment.
172
+ */
173
+ describeDryRunProgress(callback?: (err: AWSError, data: OpenSearch.Types.DescribeDryRunProgressResponse) => void): Request<OpenSearch.Types.DescribeDryRunProgressResponse, AWSError>;
166
174
  /**
167
175
  * Lists all the inbound cross-cluster search connections for a destination (remote) Amazon OpenSearch Service domain. For more information, see Cross-cluster search for Amazon OpenSearch Service.
168
176
  */
@@ -994,7 +1002,7 @@ declare namespace OpenSearch {
994
1002
  }
995
1003
  export interface CreateVpcEndpointRequest {
996
1004
  /**
997
- * The Amazon Resource Name (ARN) of the domain to grant access to.
1005
+ * The Amazon Resource Name (ARN) of the domain to create the endpoint for.
998
1006
  */
999
1007
  DomainArn: DomainArn;
1000
1008
  /**
@@ -1152,6 +1160,34 @@ declare namespace OpenSearch {
1152
1160
  */
1153
1161
  DomainStatusList: DomainStatusList;
1154
1162
  }
1163
+ export interface DescribeDryRunProgressRequest {
1164
+ /**
1165
+ * The name of the domain.
1166
+ */
1167
+ DomainName: DomainName;
1168
+ /**
1169
+ * The unique identifier of the dry run.
1170
+ */
1171
+ DryRunId?: GUID;
1172
+ /**
1173
+ * Whether to include the configuration of the dry run in the response. The configuration specifies the updates that you're planning to make on the domain.
1174
+ */
1175
+ LoadDryRunConfig?: Boolean;
1176
+ }
1177
+ export interface DescribeDryRunProgressResponse {
1178
+ /**
1179
+ * The current status of the dry run, including any validation errors.
1180
+ */
1181
+ DryRunProgressStatus?: DryRunProgressStatus;
1182
+ /**
1183
+ * Details about the changes you're planning to make on the domain.
1184
+ */
1185
+ DryRunConfig?: DomainStatus;
1186
+ /**
1187
+ * The results of the dry run.
1188
+ */
1189
+ DryRunResults?: DryRunResults;
1190
+ }
1155
1191
  export interface DescribeInboundConnectionsRequest {
1156
1192
  /**
1157
1193
  * A list of filters used to match properties for inbound cross-cluster connections.
@@ -1601,6 +1637,29 @@ declare namespace OpenSearch {
1601
1637
  export type DomainStatusList = DomainStatus[];
1602
1638
  export type Double = number;
1603
1639
  export type DryRun = boolean;
1640
+ export type DryRunMode = "Basic"|"Verbose"|string;
1641
+ export interface DryRunProgressStatus {
1642
+ /**
1643
+ * The unique identifier of the dry run.
1644
+ */
1645
+ DryRunId: GUID;
1646
+ /**
1647
+ * The current status of the dry run.
1648
+ */
1649
+ DryRunStatus: String;
1650
+ /**
1651
+ * The timestamp when the dry run was initiated.
1652
+ */
1653
+ CreationDate: String;
1654
+ /**
1655
+ * The timestamp when the dry run was last updated.
1656
+ */
1657
+ UpdateDate: String;
1658
+ /**
1659
+ * Any validation failures that occurred as a result of the dry run.
1660
+ */
1661
+ ValidationFailures?: ValidationFailures;
1662
+ }
1604
1663
  export interface DryRunResults {
1605
1664
  /**
1606
1665
  * Specifies the way in which OpenSearch Service will apply an update. Possible values are: Blue/Green - The update requires a blue/green deployment. DynamicUpdate - No blue/green deployment required Undetermined - The domain is in the middle of an update and can't predict the deployment type. Try again after the update is complete. None - The request doesn't include any configuration changes.
@@ -2685,9 +2744,13 @@ declare namespace OpenSearch {
2685
2744
  */
2686
2745
  AutoTuneOptions?: AutoTuneOptions;
2687
2746
  /**
2688
- * This flag, when set to True, specifies whether the UpdateDomain request should return the results of validation check without actually applying the change.
2747
+ * This flag, when set to True, specifies whether the UpdateDomain request should return the results of a dry run analysis without actually applying the change. A dry run determines what type of deployment the update will cause.
2689
2748
  */
2690
2749
  DryRun?: DryRun;
2750
+ /**
2751
+ * The type of dry run to perform. Basic only returns the type of deployment (blue/green or dynamic) that the update will cause. Verbose runs an additional check to validate the changes you're making. For more information, see Validating a domain update.
2752
+ */
2753
+ DryRunMode?: DryRunMode;
2691
2754
  }
2692
2755
  export interface UpdateDomainConfigResponse {
2693
2756
  /**
@@ -2695,9 +2758,13 @@ declare namespace OpenSearch {
2695
2758
  */
2696
2759
  DomainConfig: DomainConfig;
2697
2760
  /**
2698
- * Results of a dry run performed in an update domain request.
2761
+ * Results of the dry run performed in the update domain request.
2699
2762
  */
2700
2763
  DryRunResults?: DryRunResults;
2764
+ /**
2765
+ * The status of the dry run being performed on the domain, if any.
2766
+ */
2767
+ DryRunProgressStatus?: DryRunProgressStatus;
2701
2768
  }
2702
2769
  export interface UpdatePackageRequest {
2703
2770
  /**
@@ -2865,6 +2932,17 @@ declare namespace OpenSearch {
2865
2932
  */
2866
2933
  SecurityGroupIds?: StringList;
2867
2934
  }
2935
+ export interface ValidationFailure {
2936
+ /**
2937
+ * The error code of the failure.
2938
+ */
2939
+ Code?: String;
2940
+ /**
2941
+ * A message corresponding to the failure.
2942
+ */
2943
+ Message?: String;
2944
+ }
2945
+ export type ValidationFailures = ValidationFailure[];
2868
2946
  export type ValueStringList = NonEmptyString[];
2869
2947
  export type VersionList = VersionString[];
2870
2948
  export interface VersionStatus {
@@ -20,11 +20,11 @@ declare class Panorama extends Service {
20
20
  */
21
21
  createApplicationInstance(callback?: (err: AWSError, data: Panorama.Types.CreateApplicationInstanceResponse) => void): Request<Panorama.Types.CreateApplicationInstanceResponse, AWSError>;
22
22
  /**
23
- * Creates a job to run on one or more devices. A job can update a device's software or reboot it.
23
+ * Creates a job to run on a device. A job can update a device's software or reboot it.
24
24
  */
25
25
  createJobForDevices(params: Panorama.Types.CreateJobForDevicesRequest, callback?: (err: AWSError, data: Panorama.Types.CreateJobForDevicesResponse) => void): Request<Panorama.Types.CreateJobForDevicesResponse, AWSError>;
26
26
  /**
27
- * Creates a job to run on one or more devices. A job can update a device's software or reboot it.
27
+ * Creates a job to run on a device. A job can update a device's software or reboot it.
28
28
  */
29
29
  createJobForDevices(callback?: (err: AWSError, data: Panorama.Types.CreateJobForDevicesResponse) => void): Request<Panorama.Types.CreateJobForDevicesResponse, AWSError>;
30
30
  /**
@@ -397,7 +397,7 @@ declare namespace Panorama {
397
397
  }
398
398
  export interface CreateJobForDevicesRequest {
399
399
  /**
400
- * IDs of target devices.
400
+ * ID of target device.
401
401
  */
402
402
  DeviceIds: DeviceIdList;
403
403
  /**
@@ -1744,6 +1744,10 @@ declare namespace Panorama {
1744
1744
  NtpServerName?: NtpServerName;
1745
1745
  }
1746
1746
  export interface OTAJobConfig {
1747
+ /**
1748
+ * Whether to apply the update if it is a major version change.
1749
+ */
1750
+ AllowMajorVersionUpdate?: Boolean;
1747
1751
  /**
1748
1752
  * The target version of the device software.
1749
1753
  */
@@ -748,11 +748,11 @@ declare class QuickSight extends Service {
748
748
  */
749
749
  listUsers(callback?: (err: AWSError, data: QuickSight.Types.ListUsersResponse) => void): Request<QuickSight.Types.ListUsersResponse, AWSError>;
750
750
  /**
751
- * Creates an Amazon QuickSight user, whose identity is associated with the Identity and Access Management (IAM) identity or role specified in the request.
751
+ * Creates an Amazon QuickSight user whose identity is associated with the Identity and Access Management (IAM) identity or role specified in the request. When you register a new user from the Amazon QuickSight API, Amazon QuickSight generates a registration URL. The user accesses this registration URL to create their account. Amazon QuickSight doesn't send a registration email to users who are registered from the Amazon QuickSight API. If you want new users to receive a registration email, then add those users in the Amazon QuickSight console. For more information on registering a new user in the Amazon QuickSight console, see Inviting users to access Amazon QuickSight.
752
752
  */
753
753
  registerUser(params: QuickSight.Types.RegisterUserRequest, callback?: (err: AWSError, data: QuickSight.Types.RegisterUserResponse) => void): Request<QuickSight.Types.RegisterUserResponse, AWSError>;
754
754
  /**
755
- * Creates an Amazon QuickSight user, whose identity is associated with the Identity and Access Management (IAM) identity or role specified in the request.
755
+ * Creates an Amazon QuickSight user whose identity is associated with the Identity and Access Management (IAM) identity or role specified in the request. When you register a new user from the Amazon QuickSight API, Amazon QuickSight generates a registration URL. The user accesses this registration URL to create their account. Amazon QuickSight doesn't send a registration email to users who are registered from the Amazon QuickSight API. If you want new users to receive a registration email, then add those users in the Amazon QuickSight console. For more information on registering a new user in the Amazon QuickSight console, see Inviting users to access Amazon QuickSight.
756
756
  */
757
757
  registerUser(callback?: (err: AWSError, data: QuickSight.Types.RegisterUserResponse) => void): Request<QuickSight.Types.RegisterUserResponse, AWSError>;
758
758
  /**
@@ -3865,6 +3865,20 @@ declare namespace QuickSight {
3865
3865
  */
3866
3866
  ExportHiddenFieldsOption?: ExportHiddenFieldsOption;
3867
3867
  }
3868
+ export interface DataBarsOptions {
3869
+ /**
3870
+ * The field ID for the data bars options.
3871
+ */
3872
+ FieldId: FieldId;
3873
+ /**
3874
+ * The color of the positive data bar.
3875
+ */
3876
+ PositiveColor?: HexColor;
3877
+ /**
3878
+ * The color of the negative data bar.
3879
+ */
3880
+ NegativeColor?: HexColor;
3881
+ }
3868
3882
  export interface DataColor {
3869
3883
  /**
3870
3884
  * The color that is applied to the data value.
@@ -9476,7 +9490,7 @@ declare namespace QuickSight {
9476
9490
  */
9477
9491
  Alias: LogicalTableAlias;
9478
9492
  /**
9479
- * Transform operations that act on this logical table.
9493
+ * Transform operations that act on this logical table. For this structure to be valid, only one of the attributes can be non-null.
9480
9494
  */
9481
9495
  DataTransforms?: TransformOperationList;
9482
9496
  /**
@@ -12351,6 +12365,10 @@ declare namespace QuickSight {
12351
12365
  * The paginated report options for a table visual.
12352
12366
  */
12353
12367
  PaginatedReportOptions?: TablePaginatedReportOptions;
12368
+ /**
12369
+ * A collection of inline visualizations to display within a chart.
12370
+ */
12371
+ TableInlineVisualizations?: TableInlineVisualizationList;
12354
12372
  }
12355
12373
  export interface TableFieldCustomIconContent {
12356
12374
  /**
@@ -12449,6 +12467,13 @@ declare namespace QuickSight {
12449
12467
  */
12450
12468
  TableUnaggregatedFieldWells?: TableUnaggregatedFieldWells;
12451
12469
  }
12470
+ export interface TableInlineVisualization {
12471
+ /**
12472
+ * The configuration of the inline visualization of the data bars within a chart.
12473
+ */
12474
+ DataBars?: DataBarsOptions;
12475
+ }
12476
+ export type TableInlineVisualizationList = TableInlineVisualization[];
12452
12477
  export interface TableOptions {
12453
12478
  /**
12454
12479
  * The orientation (vertical, horizontal) for a table.
@@ -12655,7 +12680,7 @@ declare namespace QuickSight {
12655
12680
  */
12656
12681
  Message?: NonEmptyString;
12657
12682
  /**
12658
- *
12683
+ * An error path that shows which entities caused the template error.
12659
12684
  */
12660
12685
  ViolatedEntities?: EntityList;
12661
12686
  }
@@ -12729,7 +12754,7 @@ declare namespace QuickSight {
12729
12754
  */
12730
12755
  VersionNumber?: VersionNumber;
12731
12756
  /**
12732
- * The HTTP status of the request.
12757
+ * The status that is associated with the template. CREATION_IN_PROGRESS CREATION_SUCCESSFUL CREATION_FAILED UPDATE_IN_PROGRESS UPDATE_SUCCESSFUL UPDATE_FAILED DELETED
12733
12758
  */
12734
12759
  Status?: ResourceStatus;
12735
12760
  /**
@@ -11525,9 +11525,16 @@ declare namespace SageMaker {
11525
11525
  * The configuration for the hyperparameter tuning resources, including the compute instances and storage volumes, used for training jobs launched by the tuning job. By default, storage volumes hold model artifacts and incremental states. Choose File for TrainingInputMode in the AlgorithmSpecification parameter to additionally store training data in the storage volume (optional).
11526
11526
  */
11527
11527
  HyperParameterTuningResourceConfig?: HyperParameterTuningResourceConfig;
11528
+ /**
11529
+ * An environment variable that you can pass into the SageMaker CreateTrainingJob API. You can use an existing environment variable from the training container or use your own. See Define metrics and variables for more information. The maximum number of items specified for Map Entries refers to the maximum number of environment variables for each TrainingJobDefinition and also the maximum for the hyperparameter tuning job itself. That is, the sum of the number of environment variables for all the training job definitions can't exceed the maximum number specified.
11530
+ */
11531
+ Environment?: HyperParameterTrainingJobEnvironmentMap;
11528
11532
  }
11529
11533
  export type HyperParameterTrainingJobDefinitionName = string;
11530
11534
  export type HyperParameterTrainingJobDefinitions = HyperParameterTrainingJobDefinition[];
11535
+ export type HyperParameterTrainingJobEnvironmentKey = string;
11536
+ export type HyperParameterTrainingJobEnvironmentMap = {[key: string]: HyperParameterTrainingJobEnvironmentValue};
11537
+ export type HyperParameterTrainingJobEnvironmentValue = string;
11531
11538
  export type HyperParameterTrainingJobSummaries = HyperParameterTrainingJobSummary[];
11532
11539
  export interface HyperParameterTrainingJobSummary {
11533
11540
  /**
@@ -11586,7 +11593,7 @@ declare namespace SageMaker {
11586
11593
  */
11587
11594
  InstanceType: TrainingInstanceType;
11588
11595
  /**
11589
- * The number of instances of the type specified by InstanceType. Choose an instance count larger than 1 for distributed training algorithms. See SageMaker distributed training jobs for more informcration.
11596
+ * The number of instances of the type specified by InstanceType. Choose an instance count larger than 1 for distributed training algorithms. See SageMaker distributed training jobs for more information.
11590
11597
  */
11591
11598
  InstanceCount: TrainingInstanceCount;
11592
11599
  /**
@@ -20849,7 +20856,7 @@ declare namespace SageMaker {
20849
20856
  */
20850
20857
  RetainAllVariantProperties?: Boolean;
20851
20858
  /**
20852
- * When you are updating endpoint resources with UpdateEndpointInput$RetainAllVariantProperties, whose value is set to true, ExcludeRetainedVariantProperties specifies the list of type VariantProperty to override with the values provided by EndpointConfig. If you don't specify a value for ExcludeAllVariantProperties, no variant properties are overridden.
20859
+ * When you are updating endpoint resources with UpdateEndpointInput$RetainAllVariantProperties, whose value is set to true, ExcludeRetainedVariantProperties specifies the list of type VariantProperty to override with the values provided by EndpointConfig. If you don't specify a value for ExcludeRetainedVariantProperties, no variant properties are overridden.
20853
20860
  */
20854
20861
  ExcludeRetainedVariantProperties?: VariantPropertyList;
20855
20862
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1297.0',
86
+ VERSION: '2.1299.0',
87
87
 
88
88
  /**
89
89
  * @api private
@@ -9504,6 +9504,8 @@ return /******/ (function(modules) { // webpackBootstrap
9504
9504
  '%AsyncIteratorPrototype%': needsEval,
9505
9505
  '%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,
9506
9506
  '%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,
9507
+ '%BigInt64Array%': typeof BigInt64Array === 'undefined' ? undefined : BigInt64Array,
9508
+ '%BigUint64Array%': typeof BigUint64Array === 'undefined' ? undefined : BigUint64Array,
9507
9509
  '%Boolean%': Boolean,
9508
9510
  '%DataView%': typeof DataView === 'undefined' ? undefined : DataView,
9509
9511
  '%Date%': Date,
@@ -9559,6 +9561,14 @@ return /******/ (function(modules) { // webpackBootstrap
9559
9561
  '%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet
9560
9562
  };
9561
9563
 
9564
+ try {
9565
+ null.error; // eslint-disable-line no-unused-expressions
9566
+ } catch (e) {
9567
+ // https://github.com/tc39/proposal-shadowrealm/pull/384#issuecomment-1364264229
9568
+ var errorProto = getProto(getProto(e));
9569
+ INTRINSICS['%Error.prototype%'] = errorProto;
9570
+ }
9571
+
9562
9572
  var doEval = function doEval(name) {
9563
9573
  var value;
9564
9574
  if (name === '%AsyncFunction%') {