cdk-comprehend-s3olap 2.0.149 → 2.0.151

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.
@@ -1689,6 +1689,147 @@ declare namespace Glue {
1689
1689
  AggFunc: AggFunction;
1690
1690
  }
1691
1691
  export type AggregateOperations = AggregateOperation[];
1692
+ export interface AmazonRedshiftAdvancedOption {
1693
+ /**
1694
+ * The key when specifying a key-value pair.
1695
+ */
1696
+ Key?: GenericString;
1697
+ /**
1698
+ * The value when specifying a key-value pair.
1699
+ */
1700
+ Value?: GenericString;
1701
+ }
1702
+ export type AmazonRedshiftAdvancedOptions = AmazonRedshiftAdvancedOption[];
1703
+ export interface AmazonRedshiftNodeData {
1704
+ /**
1705
+ * The access type for the Redshift connection. Can be a direct connection or catalog connections.
1706
+ */
1707
+ AccessType?: GenericLimitedString;
1708
+ /**
1709
+ * The source type to specify whether a specific table is the source or a custom query.
1710
+ */
1711
+ SourceType?: GenericLimitedString;
1712
+ /**
1713
+ * The Glue connection to the Redshift cluster.
1714
+ */
1715
+ Connection?: Option;
1716
+ /**
1717
+ * The Redshift schema name when working with a direct connection.
1718
+ */
1719
+ Schema?: Option;
1720
+ /**
1721
+ * The Redshift table name when working with a direct connection.
1722
+ */
1723
+ Table?: Option;
1724
+ /**
1725
+ * The name of the Glue Data Catalog database when working with a data catalog.
1726
+ */
1727
+ CatalogDatabase?: Option;
1728
+ /**
1729
+ * The Glue Data Catalog table name when working with a data catalog.
1730
+ */
1731
+ CatalogTable?: Option;
1732
+ /**
1733
+ * The Redshift schema name when working with a data catalog.
1734
+ */
1735
+ CatalogRedshiftSchema?: GenericString;
1736
+ /**
1737
+ * The database table to read from.
1738
+ */
1739
+ CatalogRedshiftTable?: GenericString;
1740
+ /**
1741
+ * The Amazon S3 path where temporary data can be staged when copying out of the database.
1742
+ */
1743
+ TempDir?: EnclosedInStringProperty;
1744
+ /**
1745
+ * Optional. The role name use when connection to S3. The IAM role ill default to the role on the job when left blank.
1746
+ */
1747
+ IamRole?: Option;
1748
+ /**
1749
+ * Optional values when connecting to the Redshift cluster.
1750
+ */
1751
+ AdvancedOptions?: AmazonRedshiftAdvancedOptions;
1752
+ /**
1753
+ * The SQL used to fetch the data from a Redshift sources when the SourceType is 'query'.
1754
+ */
1755
+ SampleQuery?: GenericString;
1756
+ /**
1757
+ * The SQL used before a MERGE or APPEND with upsert is run.
1758
+ */
1759
+ PreAction?: GenericString;
1760
+ /**
1761
+ * The SQL used before a MERGE or APPEND with upsert is run.
1762
+ */
1763
+ PostAction?: GenericString;
1764
+ /**
1765
+ * Specifies how writing to a Redshift cluser will occur.
1766
+ */
1767
+ Action?: GenericString;
1768
+ /**
1769
+ * Specifies the prefix to a table.
1770
+ */
1771
+ TablePrefix?: GenericLimitedString;
1772
+ /**
1773
+ * The action used on Redshift sinks when doing an APPEND.
1774
+ */
1775
+ Upsert?: BooleanValue;
1776
+ /**
1777
+ * The action used when to detemine how a MERGE in a Redshift sink will be handled.
1778
+ */
1779
+ MergeAction?: GenericLimitedString;
1780
+ /**
1781
+ * The action used when to detemine how a MERGE in a Redshift sink will be handled when an existing record matches a new record.
1782
+ */
1783
+ MergeWhenMatched?: GenericLimitedString;
1784
+ /**
1785
+ * The action used when to detemine how a MERGE in a Redshift sink will be handled when an existing record doesn't match a new record.
1786
+ */
1787
+ MergeWhenNotMatched?: GenericLimitedString;
1788
+ /**
1789
+ * The SQL used in a custom merge to deal with matching records.
1790
+ */
1791
+ MergeClause?: GenericString;
1792
+ /**
1793
+ * Specifies the name of the connection that is associated with the catalog table used.
1794
+ */
1795
+ CrawlerConnection?: GenericString;
1796
+ /**
1797
+ * The array of schema output for a given node.
1798
+ */
1799
+ TableSchema?: OptionList;
1800
+ /**
1801
+ * The name of the temporary staging table that is used when doing a MERGE or APPEND with upsert.
1802
+ */
1803
+ StagingTable?: GenericString;
1804
+ /**
1805
+ * The list of column names used to determine a matching record when doing a MERGE or APPEND with upsert.
1806
+ */
1807
+ SelectedColumns?: OptionList;
1808
+ }
1809
+ export interface AmazonRedshiftSource {
1810
+ /**
1811
+ * The name of the Amazon Redshift source.
1812
+ */
1813
+ Name?: NodeName;
1814
+ /**
1815
+ * Specifies the data of the Amazon Reshift source node.
1816
+ */
1817
+ Data?: AmazonRedshiftNodeData;
1818
+ }
1819
+ export interface AmazonRedshiftTarget {
1820
+ /**
1821
+ * The name of the Amazon Redshift target.
1822
+ */
1823
+ Name?: NodeName;
1824
+ /**
1825
+ * Specifies the data of the Amazon Reshift target node.
1826
+ */
1827
+ Data?: AmazonRedshiftNodeData;
1828
+ /**
1829
+ * The nodes that are inputs to the data target.
1830
+ */
1831
+ Inputs?: OneInput;
1832
+ }
1692
1833
  export interface ApplyMapping {
1693
1834
  /**
1694
1835
  * The name of the transform node.
@@ -2846,6 +2987,14 @@ declare namespace Glue {
2846
2987
  * Specifies a target that writes to a Delta Lake data source in Amazon S3.
2847
2988
  */
2848
2989
  S3DeltaDirectTarget?: S3DeltaDirectTarget;
2990
+ /**
2991
+ * Specifies a target that writes to a data source in Amazon Redshift.
2992
+ */
2993
+ AmazonRedshiftSource?: AmazonRedshiftSource;
2994
+ /**
2995
+ * Specifies a target that writes to a data target in Amazon Redshift.
2996
+ */
2997
+ AmazonRedshiftTarget?: AmazonRedshiftTarget;
2849
2998
  }
2850
2999
  export type CodeGenConfigurationNodes = {[key: string]: CodeGenConfigurationNode};
2851
3000
  export interface CodeGenEdge {
@@ -5578,6 +5727,10 @@ declare namespace Glue {
5578
5727
  * This field is not used and will be deprecated in future release.
5579
5728
  */
5580
5729
  Version?: EnclosedInStringProperty;
5730
+ /**
5731
+ * Specifies the data schema for the dynamic transform.
5732
+ */
5733
+ OutputSchemas?: GlueSchemas;
5581
5734
  }
5582
5735
  export interface DynamoDBCatalogSource {
5583
5736
  /**
@@ -9473,6 +9626,21 @@ declare namespace Glue {
9473
9626
  export type NullableDouble = number;
9474
9627
  export type NullableInteger = number;
9475
9628
  export type OneInput = NodeId[];
9629
+ export interface Option {
9630
+ /**
9631
+ * Specifies the value of the option.
9632
+ */
9633
+ Value?: EnclosedInStringProperty;
9634
+ /**
9635
+ * Specifies the label of the option.
9636
+ */
9637
+ Label?: EnclosedInStringProperty;
9638
+ /**
9639
+ * Specifies the description of the option.
9640
+ */
9641
+ Description?: EnclosedInStringProperty;
9642
+ }
9643
+ export type OptionList = Option[];
9476
9644
  export interface OracleSQLCatalogSource {
9477
9645
  /**
9478
9646
  * The name of the data source.
@@ -1552,6 +1552,10 @@ declare namespace RDS {
1552
1552
  * The Provisioned IOPS (I/O operations per second) value. This setting is only for non-Aurora Multi-AZ DB clusters.
1553
1553
  */
1554
1554
  Iops?: IntegerOptional;
1555
+ /**
1556
+ * The storage type for the DB cluster.
1557
+ */
1558
+ StorageType?: String;
1555
1559
  }
1556
1560
  export interface ConnectionPoolConfiguration {
1557
1561
  /**
@@ -1911,7 +1915,7 @@ declare namespace RDS {
1911
1915
  */
1912
1916
  EnableCloudwatchLogsExports?: LogTypeList;
1913
1917
  /**
1914
- * The DB engine mode of the DB cluster, either provisioned or serverless. The serverless engine mode only applies for Aurora Serverless v1 DB clusters. Limitations and requirements apply to some DB engine modes. For more information, see the following sections in the Amazon Aurora User Guide: Limitations of Aurora Serverless v1 Requirements for Aurora Serverless v2 Limitations of parallel query Limitations of Aurora global databases Valid for: Aurora DB clusters only
1918
+ * The DB engine mode of the DB cluster, either provisioned or serverless. The serverless engine mode only applies for Aurora Serverless v1 DB clusters. For information about limitations and requirements for Serverless DB clusters, see the following sections in the Amazon Aurora User Guide: Limitations of Aurora Serverless v1 Requirements for Aurora Serverless v2 Valid for: Aurora DB clusters only
1915
1919
  */
1916
1920
  EngineMode?: String;
1917
1921
  /**
@@ -1955,7 +1959,7 @@ declare namespace RDS {
1955
1959
  */
1956
1960
  AllocatedStorage?: IntegerOptional;
1957
1961
  /**
1958
- * Specifies the storage type to be associated with the DB cluster. This setting is required to create a Multi-AZ DB cluster. Valid values: io1 When specified, a value for the Iops parameter is required. Default: io1 Valid for: Multi-AZ DB clusters only
1962
+ * Specifies the storage type to be associated with the DB cluster. This setting is required to create a Multi-AZ DB cluster. When specified for a Multi-AZ DB cluster, a value for the Iops parameter is required. Valid values: aurora, aurora-iopt1 (Aurora DB clusters); io1 (Multi-AZ DB clusters) Default: aurora (Aurora DB clusters); io1 (Multi-AZ DB clusters) Valid for: Aurora DB clusters and Multi-AZ DB clusters
1959
1963
  */
1960
1964
  StorageType?: String;
1961
1965
  /**
@@ -2858,7 +2862,7 @@ declare namespace RDS {
2858
2862
  */
2859
2863
  Capacity?: IntegerOptional;
2860
2864
  /**
2861
- * The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster. For more information, see CreateDBCluster.
2865
+ * The DB engine mode of the DB cluster, either provisioned or serverless. For more information, see CreateDBCluster.
2862
2866
  */
2863
2867
  EngineMode?: String;
2864
2868
  ScalingConfigurationInfo?: ScalingConfigurationInfo;
@@ -2916,7 +2920,7 @@ declare namespace RDS {
2916
2920
  */
2917
2921
  DBClusterInstanceClass?: String;
2918
2922
  /**
2919
- * The storage type associated with the DB cluster. This setting is only for non-Aurora Multi-AZ DB clusters.
2923
+ * The storage type associated with the DB cluster.
2920
2924
  */
2921
2925
  StorageType?: String;
2922
2926
  /**
@@ -2964,6 +2968,10 @@ declare namespace RDS {
2964
2968
  * Contains the secret managed by RDS in Amazon Web Services Secrets Manager for the master user password. For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide and Password management with Amazon Web Services Secrets Manager in the Amazon Aurora User Guide.
2965
2969
  */
2966
2970
  MasterUserSecret?: MasterUserSecret;
2971
+ /**
2972
+ * The next time you can modify the DB cluster to use the aurora-iopt1 storage type. This setting is only for Aurora DB clusters.
2973
+ */
2974
+ IOOptimizedNextAllowedModificationTime?: TStamp;
2967
2975
  }
2968
2976
  export interface DBClusterBacktrack {
2969
2977
  /**
@@ -3269,6 +3277,10 @@ declare namespace RDS {
3269
3277
  * Reserved for future use.
3270
3278
  */
3271
3279
  DBSystemId?: String;
3280
+ /**
3281
+ * The storage type associated with the DB cluster snapshot. This setting is only for Aurora DB clusters.
3282
+ */
3283
+ StorageType?: String;
3272
3284
  }
3273
3285
  export interface DBClusterSnapshotAttribute {
3274
3286
  /**
@@ -3642,7 +3654,7 @@ declare namespace RDS {
3642
3654
  */
3643
3655
  Timezone?: String;
3644
3656
  /**
3645
- * True if mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false. IAM database authentication can be enabled for the following database engines: For MySQL 5.7, minor version 5.7.16 or higher. For Amazon Aurora, all versions of Aurora MySQL and Aurora PostgreSQL.
3657
+ * True if mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false. For a list of engine versions that support IAM database authentication, see IAM database authentication in the Amazon RDS User Guide and IAM database authentication in Aurora in the Amazon Aurora User Guide.
3646
3658
  */
3647
3659
  IAMDatabaseAuthenticationEnabled?: Boolean;
3648
3660
  /**
@@ -4677,7 +4689,7 @@ declare namespace RDS {
4677
4689
  */
4678
4690
  DBClusterIdentifier: String;
4679
4691
  /**
4680
- * If specified, this value is the backtrack identifier of the backtrack to be described. Constraints: Must contain a valid universally unique identifier (UUID). For more information about UUIDs, see A Universally Unique Identifier (UUID) URN Namespace. Example: 123e4567-e89b-12d3-a456-426655440000
4692
+ * If specified, this value is the backtrack identifier of the backtrack to be described. Constraints: Must contain a valid universally unique identifier (UUID). For more information about UUIDs, see Universally unique identifier. Example: 123e4567-e89b-12d3-a456-426655440000
4681
4693
  */
4682
4694
  BacktrackIdentifier?: String;
4683
4695
  /**
@@ -6270,7 +6282,7 @@ declare namespace RDS {
6270
6282
  */
6271
6283
  AllocatedStorage?: IntegerOptional;
6272
6284
  /**
6273
- * Specifies the storage type to be associated with the DB cluster. Valid values: io1 When specified, a value for the Iops parameter is required. Default: io1 Valid for: Multi-AZ DB clusters only
6285
+ * Specifies the storage type to be associated with the DB cluster. When specified for a Multi-AZ DB cluster, a value for the Iops parameter is required. Valid values: aurora, aurora-iopt1 (Aurora DB clusters); io1 (Multi-AZ DB clusters) Default: aurora (Aurora DB clusters); io1 (Multi-AZ DB clusters) Valid for: Aurora DB clusters and Multi-AZ DB clusters
6274
6286
  */
6275
6287
  StorageType?: String;
6276
6288
  /**
@@ -6559,7 +6571,7 @@ declare namespace RDS {
6559
6571
  */
6560
6572
  StorageThroughput?: IntegerOptional;
6561
6573
  /**
6562
- * A value that indicates whether to manage the master user password with Amazon Web Services Secrets Manager. If the DB cluster doesn't manage the master user password with Amazon Web Services Secrets Manager, you can turn on this management. In this case, you can't specify MasterUserPassword. If the DB cluster already manages the master user password with Amazon Web Services Secrets Manager, and you specify that the master user password is not managed with Amazon Web Services Secrets Manager, then you must specify MasterUserPassword. In this case, RDS deletes the secret and uses the new password for the master user specified by MasterUserPassword. For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide. Constraints: Can't manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.
6574
+ * A value that indicates whether to manage the master user password with Amazon Web Services Secrets Manager. If the DB instance doesn't manage the master user password with Amazon Web Services Secrets Manager, you can turn on this management. In this case, you can't specify MasterUserPassword. If the DB instance already manages the master user password with Amazon Web Services Secrets Manager, and you specify that the master user password is not managed with Amazon Web Services Secrets Manager, then you must specify MasterUserPassword. In this case, RDS deletes the secret and uses the new password for the master user specified by MasterUserPassword. For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide. Constraints: Can't manage the master user password with Amazon Web Services Secrets Manager if MasterUserPassword is specified.
6563
6575
  */
6564
6576
  ManageMasterUserPassword?: BooleanOptional;
6565
6577
  /**
@@ -7923,6 +7935,10 @@ declare namespace RDS {
7923
7935
  * The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager. This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB cluster. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN. If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.
7924
7936
  */
7925
7937
  MasterUserSecretKmsKeyId?: String;
7938
+ /**
7939
+ * Specifies the storage type to be associated with the DB cluster. Valid values: aurora, aurora-iopt1 Default: aurora Valid for: Aurora DB clusters only
7940
+ */
7941
+ StorageType?: String;
7926
7942
  }
7927
7943
  export interface RestoreDBClusterFromS3Result {
7928
7944
  DBCluster?: DBCluster;
@@ -8021,7 +8037,7 @@ declare namespace RDS {
8021
8037
  */
8022
8038
  DBClusterInstanceClass?: String;
8023
8039
  /**
8024
- * Specifies the storage type to be associated with the each DB instance in the Multi-AZ DB cluster. Valid values: io1 When specified, a value for the Iops parameter is required. Default: io1 Valid for: Aurora DB clusters and Multi-AZ DB clusters
8040
+ * Specifies the storage type to be associated with the DB cluster. When specified for a Multi-AZ DB cluster, a value for the Iops parameter is required. Valid values: aurora, aurora-iopt1 (Aurora DB clusters); io1 (Multi-AZ DB clusters) Default: aurora (Aurora DB clusters); io1 (Multi-AZ DB clusters) Valid for: Aurora DB clusters and Multi-AZ DB clusters
8025
8041
  */
8026
8042
  StorageType?: String;
8027
8043
  /**
@@ -8128,7 +8144,7 @@ declare namespace RDS {
8128
8144
  */
8129
8145
  DBClusterInstanceClass?: String;
8130
8146
  /**
8131
- * Specifies the storage type to be associated with the each DB instance in the Multi-AZ DB cluster. Valid values: io1 When specified, a value for the Iops parameter is required. Default: io1 Valid for: Multi-AZ DB clusters only
8147
+ * Specifies the storage type to be associated with the DB cluster. When specified for a Multi-AZ DB cluster, a value for the Iops parameter is required. Valid values: aurora, aurora-iopt1 (Aurora DB clusters); io1 (Multi-AZ DB clusters) Default: aurora (Aurora DB clusters); io1 (Multi-AZ DB clusters) Valid for: Aurora DB clusters and Multi-AZ DB clusters
8132
8148
  */
8133
8149
  StorageType?: String;
8134
8150
  /**
@@ -4612,7 +4612,7 @@ declare namespace SageMaker {
4612
4612
  */
4613
4613
  KmsKeyId?: KmsKeyId;
4614
4614
  /**
4615
- * The entity that creates and manages the required security groups for inter-app communication in VPCOnly mode. Required when CreateDomain.AppNetworkAccessType is VPCOnly and DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn is provided.
4615
+ * The entity that creates and manages the required security groups for inter-app communication in VPCOnly mode. Required when CreateDomain.AppNetworkAccessType is VPCOnly and DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn is provided. If setting up the domain for use with RStudio, this value must be set to Service.
4616
4616
  */
4617
4617
  AppSecurityGroupManagement?: AppSecurityGroupManagement;
4618
4618
  /**
@@ -10087,6 +10087,10 @@ declare namespace SageMaker {
10087
10087
  * The variant's capacity.
10088
10088
  */
10089
10089
  DesiredInstanceCount?: TaskCount;
10090
+ /**
10091
+ * Specifies the serverless update concurrency configuration for an endpoint variant.
10092
+ */
10093
+ ServerlessUpdateConfig?: ProductionVariantServerlessUpdateConfig;
10090
10094
  }
10091
10095
  export type DesiredWeightAndCapacityList = DesiredWeightAndCapacity[];
10092
10096
  export type DestinationS3Uri = string;
@@ -10333,7 +10337,7 @@ declare namespace SageMaker {
10333
10337
  }
10334
10338
  export interface DomainSettingsForUpdate {
10335
10339
  /**
10336
- * A collection of RStudioServerPro Domain-level app settings to update.
10340
+ * A collection of RStudioServerPro Domain-level app settings to update. A single RStudioServerPro application is created for a domain.
10337
10341
  */
10338
10342
  RStudioServerProDomainSettingsForUpdate?: RStudioServerProDomainSettingsForUpdate;
10339
10343
  /**
@@ -18539,6 +18543,20 @@ declare namespace SageMaker {
18539
18543
  * The maximum number of concurrent invocations your serverless endpoint can process.
18540
18544
  */
18541
18545
  MaxConcurrency: ServerlessMaxConcurrency;
18546
+ /**
18547
+ * The amount of provisioned concurrency to allocate for the serverless endpoint. Should be less than or equal to MaxConcurrency.
18548
+ */
18549
+ ProvisionedConcurrency?: ServerlessProvisionedConcurrency;
18550
+ }
18551
+ export interface ProductionVariantServerlessUpdateConfig {
18552
+ /**
18553
+ * The updated maximum number of concurrent invocations your serverless endpoint can process.
18554
+ */
18555
+ MaxConcurrency?: ServerlessMaxConcurrency;
18556
+ /**
18557
+ * The updated amount of provisioned concurrency to allocate for the serverless endpoint. Should be less than or equal to MaxConcurrency.
18558
+ */
18559
+ ProvisionedConcurrency?: ServerlessProvisionedConcurrency;
18542
18560
  }
18543
18561
  export interface ProductionVariantStatus {
18544
18562
  /**
@@ -19616,6 +19634,7 @@ declare namespace SageMaker {
19616
19634
  }
19617
19635
  export type ServerlessMaxConcurrency = number;
19618
19636
  export type ServerlessMemorySizeInMB = number;
19637
+ export type ServerlessProvisionedConcurrency = number;
19619
19638
  export type ServiceCatalogEntityId = string;
19620
19639
  export interface ServiceCatalogProvisionedProductDetails {
19621
19640
  /**
@@ -21207,7 +21226,7 @@ declare namespace SageMaker {
21207
21226
  */
21208
21227
  DefaultSpaceSettings?: DefaultSpaceSettings;
21209
21228
  /**
21210
- * The entity that creates and manages the required security groups for inter-app communication in VPCOnly mode. Required when CreateDomain.AppNetworkAccessType is VPCOnly and DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn is provided.
21229
+ * The entity that creates and manages the required security groups for inter-app communication in VPCOnly mode. Required when CreateDomain.AppNetworkAccessType is VPCOnly and DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn is provided. If setting up the domain for use with RStudio, this value must be set to Service.
21211
21230
  */
21212
21231
  AppSecurityGroupManagement?: AppSecurityGroupManagement;
21213
21232
  }
@@ -1192,7 +1192,7 @@ declare namespace SWF {
1192
1192
  */
1193
1193
  execution: WorkflowExecution;
1194
1194
  /**
1195
- * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 60 seconds. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call.
1195
+ * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call.
1196
1196
  */
1197
1197
  nextPageToken?: PageToken;
1198
1198
  /**
@@ -1540,7 +1540,7 @@ declare namespace SWF {
1540
1540
  */
1541
1541
  registrationStatus: RegistrationStatus;
1542
1542
  /**
1543
- * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 60 seconds. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call.
1543
+ * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call.
1544
1544
  */
1545
1545
  nextPageToken?: PageToken;
1546
1546
  /**
@@ -1582,7 +1582,7 @@ declare namespace SWF {
1582
1582
  */
1583
1583
  tagFilter?: TagFilter;
1584
1584
  /**
1585
- * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 60 seconds. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call.
1585
+ * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call.
1586
1586
  */
1587
1587
  nextPageToken?: PageToken;
1588
1588
  /**
@@ -1596,7 +1596,7 @@ declare namespace SWF {
1596
1596
  }
1597
1597
  export interface ListDomainsInput {
1598
1598
  /**
1599
- * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 60 seconds. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call.
1599
+ * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call.
1600
1600
  */
1601
1601
  nextPageToken?: PageToken;
1602
1602
  /**
@@ -1630,7 +1630,7 @@ declare namespace SWF {
1630
1630
  */
1631
1631
  tagFilter?: TagFilter;
1632
1632
  /**
1633
- * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 60 seconds. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call.
1633
+ * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call.
1634
1634
  */
1635
1635
  nextPageToken?: PageToken;
1636
1636
  /**
@@ -1672,7 +1672,7 @@ declare namespace SWF {
1672
1672
  */
1673
1673
  registrationStatus: RegistrationStatus;
1674
1674
  /**
1675
- * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 60 seconds. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call.
1675
+ * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call.
1676
1676
  */
1677
1677
  nextPageToken?: PageToken;
1678
1678
  /**
@@ -1733,7 +1733,7 @@ declare namespace SWF {
1733
1733
  */
1734
1734
  domain: DomainName;
1735
1735
  /**
1736
- * Specifies the task list to poll for decision tasks. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
1736
+ * Specifies the task list to poll for decision tasks. The specified string must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
1737
1737
  */
1738
1738
  taskList: TaskList;
1739
1739
  /**
@@ -1741,7 +1741,7 @@ declare namespace SWF {
1741
1741
  */
1742
1742
  identity?: Identity;
1743
1743
  /**
1744
- * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 60 seconds. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call. The nextPageToken returned by this action cannot be used with GetWorkflowExecutionHistory to get the next page. You must call PollForDecisionTask again (with the nextPageToken) to retrieve the next page of history records. Calling PollForDecisionTask with a nextPageToken doesn't return a new decision task.
1744
+ * If NextPageToken is returned there are more results available. The value of NextPageToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return a 400 error: "Specified token has exceeded its maximum lifetime". The configured maximumPageSize determines how many results can be returned in a single call. The nextPageToken returned by this action cannot be used with GetWorkflowExecutionHistory to get the next page. You must call PollForDecisionTask again (with the nextPageToken) to retrieve the next page of history records. Calling PollForDecisionTask with a nextPageToken doesn't return a new decision task.
1745
1745
  */
1746
1746
  nextPageToken?: PageToken;
1747
1747
  /**
@@ -1752,6 +1752,10 @@ declare namespace SWF {
1752
1752
  * When set to true, returns the events in reverse order. By default the results are returned in ascending order of the eventTimestamp of the events.
1753
1753
  */
1754
1754
  reverseOrder?: ReverseOrder;
1755
+ /**
1756
+ * When set to true, returns the events with eventTimestamp greater than or equal to eventTimestamp of the most recent DecisionTaskStarted event. By default, this parameter is set to false.
1757
+ */
1758
+ startAtPreviousStartedEvent?: StartAtPreviousStartedEvent;
1755
1759
  }
1756
1760
  export interface RecordActivityTaskHeartbeatInput {
1757
1761
  /**
@@ -1794,11 +1798,11 @@ declare namespace SWF {
1794
1798
  */
1795
1799
  domain: DomainName;
1796
1800
  /**
1797
- * The name of the activity type within the domain. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
1801
+ * The name of the activity type within the domain. The specified string must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
1798
1802
  */
1799
1803
  name: Name;
1800
1804
  /**
1801
- * The version of the activity type. The activity type consists of the name and version, the combination of which must be unique within the domain. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
1805
+ * The version of the activity type. The activity type consists of the name and version, the combination of which must be unique within the domain. The specified string must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
1802
1806
  */
1803
1807
  version: Version;
1804
1808
  /**
@@ -1854,11 +1858,11 @@ declare namespace SWF {
1854
1858
  */
1855
1859
  domain: DomainName;
1856
1860
  /**
1857
- * The name of the workflow type. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
1861
+ * The name of the workflow type. The specified string must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
1858
1862
  */
1859
1863
  name: Name;
1860
1864
  /**
1861
- * The version of the workflow type. The workflow type consists of the name and version, the combination of which must be unique within the domain. To get a list of all currently registered workflow types, use the ListWorkflowTypes action. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
1865
+ * The version of the workflow type. The workflow type consists of the name and version, the combination of which must be unique within the domain. To get a list of all currently registered workflow types, use the ListWorkflowTypes action. The specified string must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
1862
1866
  */
1863
1867
  version: Version;
1864
1868
  /**
@@ -2060,7 +2064,7 @@ declare namespace SWF {
2060
2064
  */
2061
2065
  activityType: ActivityType;
2062
2066
  /**
2063
- * The activityId of the activity task. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not contain the literal string arn.
2067
+ * The activityId of the activity task. The specified string must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
2064
2068
  */
2065
2069
  activityId: ActivityId;
2066
2070
  /**
@@ -2076,7 +2080,7 @@ declare namespace SWF {
2076
2080
  */
2077
2081
  scheduleToCloseTimeout?: DurationInSecondsOptional;
2078
2082
  /**
2079
- * If set, specifies the name of the task list in which to schedule the activity task. If not specified, the defaultTaskList registered with the activity type is used. A task list for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default task list was specified at registration time then a fault is returned. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not contain the literal string arn.
2083
+ * If set, specifies the name of the task list in which to schedule the activity task. If not specified, the defaultTaskList registered with the activity type is used. A task list for this activity task must be specified either as a default for the activity type or through this field. If neither this field is set nor a default task list was specified at registration time then a fault is returned. The specified string must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
2080
2084
  */
2081
2085
  taskList?: TaskList;
2082
2086
  /**
@@ -2133,7 +2137,7 @@ declare namespace SWF {
2133
2137
  */
2134
2138
  input?: FunctionInput;
2135
2139
  /**
2136
- * The timeout value, in seconds, after which the Lambda function is considered to be failed once it has started. This can be any integer from 1-300 (1s-5m). If no value is supplied, than a default value of 300s is assumed.
2140
+ * The timeout value, in seconds, after which the Lambda function is considered to be failed once it has started. This can be any integer from 1-900 (1s-15m). If no value is supplied, then a default value of 900s is assumed.
2137
2141
  */
2138
2142
  startToCloseTimeout?: DurationInSecondsOptional;
2139
2143
  }
@@ -2254,13 +2258,14 @@ declare namespace SWF {
2254
2258
  */
2255
2259
  input?: Data;
2256
2260
  }
2261
+ export type StartAtPreviousStartedEvent = boolean;
2257
2262
  export interface StartChildWorkflowExecutionDecisionAttributes {
2258
2263
  /**
2259
2264
  * The type of the workflow execution to be started.
2260
2265
  */
2261
2266
  workflowType: WorkflowType;
2262
2267
  /**
2263
- * The workflowId of the workflow execution. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not contain the literal string arn.
2268
+ * The workflowId of the workflow execution. The specified string must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
2264
2269
  */
2265
2270
  workflowId: WorkflowId;
2266
2271
  /**
@@ -2276,7 +2281,7 @@ declare namespace SWF {
2276
2281
  */
2277
2282
  executionStartToCloseTimeout?: DurationInSecondsOptional;
2278
2283
  /**
2279
- * The name of the task list to be used for decision tasks of the child workflow execution. A task list for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default task list was specified at registration time then a fault is returned. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not contain the literal string arn.
2284
+ * The name of the task list to be used for decision tasks of the child workflow execution. A task list for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default task list was specified at registration time then a fault is returned. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
2280
2285
  */
2281
2286
  taskList?: TaskList;
2282
2287
  /**
@@ -2394,7 +2399,7 @@ declare namespace SWF {
2394
2399
  }
2395
2400
  export interface StartTimerDecisionAttributes {
2396
2401
  /**
2397
- * The unique ID of the timer. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not contain the literal string arn.
2402
+ * The unique ID of the timer. The specified string must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
2398
2403
  */
2399
2404
  timerId: TimerId;
2400
2405
  /**
@@ -2423,11 +2428,11 @@ declare namespace SWF {
2423
2428
  }
2424
2429
  export interface StartWorkflowExecutionInput {
2425
2430
  /**
2426
- * The name of the domain in which the workflow execution is created.
2431
+ * The name of the domain in which the workflow execution is created. The specified string must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
2427
2432
  */
2428
2433
  domain: DomainName;
2429
2434
  /**
2430
- * The user defined identifier associated with the workflow execution. You can use this to associate a custom identifier with the workflow execution. You may specify the same identifier if a workflow execution is logically a restart of a previous execution. You cannot have two open workflow executions with the same workflowId at the same time within the same domain. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
2435
+ * The user defined identifier associated with the workflow execution. You can use this to associate a custom identifier with the workflow execution. You may specify the same identifier if a workflow execution is logically a restart of a previous execution. You cannot have two open workflow executions with the same workflowId at the same time within the same domain. The specified string must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
2431
2436
  */
2432
2437
  workflowId: WorkflowId;
2433
2438
  /**
@@ -2435,7 +2440,7 @@ declare namespace SWF {
2435
2440
  */
2436
2441
  workflowType: WorkflowType;
2437
2442
  /**
2438
- * The task list to use for the decision tasks generated for this workflow execution. This overrides the defaultTaskList specified when registering the workflow type. A task list for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default task list was specified at registration time then a fault is returned. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
2443
+ * The task list to use for the decision tasks generated for this workflow execution. This overrides the defaultTaskList specified when registering the workflow type. A task list for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default task list was specified at registration time then a fault is returned. The specified string must not contain a : (colon), / (slash), | (vertical bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not be the literal string arn.
2439
2444
  */
2440
2445
  taskList?: TaskList;
2441
2446
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1374.0',
86
+ VERSION: '2.1376.0',
87
87
 
88
88
  /**
89
89
  * @api private