cdk-lambda-subminute 2.0.290 → 2.0.291
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +11 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/ce-2017-10-25.min.json +42 -28
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +433 -346
- package/node_modules/aws-sdk/apis/docdb-2014-10-31.min.json +63 -43
- package/node_modules/aws-sdk/apis/mwaa-2020-07-01.min.json +23 -7
- package/node_modules/aws-sdk/clients/codebuild.d.ts +12 -12
- package/node_modules/aws-sdk/clients/connect.d.ts +116 -0
- package/node_modules/aws-sdk/clients/costexplorer.d.ts +32 -6
- package/node_modules/aws-sdk/clients/docdb.d.ts +31 -0
- package/node_modules/aws-sdk/clients/mwaa.d.ts +3 -3
- package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +478 -377
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +99 -99
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -115,6 +115,14 @@ declare class Connect extends Service {
|
|
115
115
|
* Retrieve the flow associations for the given resources.
|
116
116
|
*/
|
117
117
|
batchGetFlowAssociation(callback?: (err: AWSError, data: Connect.Types.BatchGetFlowAssociationResponse) => void): Request<Connect.Types.BatchGetFlowAssociationResponse, AWSError>;
|
118
|
+
/**
|
119
|
+
* Only the Amazon Connect outbound campaigns service principal is allowed to assume a role in your account and call this API. Allows you to create a batch of contacts in Amazon Connect. The outbound campaigns capability ingests dial requests via the PutDialRequestBatch API. It then uses BatchPutContact to create contacts corresponding to those dial requests. If agents are available, the dial requests are dialed out, which results in a voice call. The resulting voice call uses the same contactId that was created by BatchPutContact.
|
120
|
+
*/
|
121
|
+
batchPutContact(params: Connect.Types.BatchPutContactRequest, callback?: (err: AWSError, data: Connect.Types.BatchPutContactResponse) => void): Request<Connect.Types.BatchPutContactResponse, AWSError>;
|
122
|
+
/**
|
123
|
+
* Only the Amazon Connect outbound campaigns service principal is allowed to assume a role in your account and call this API. Allows you to create a batch of contacts in Amazon Connect. The outbound campaigns capability ingests dial requests via the PutDialRequestBatch API. It then uses BatchPutContact to create contacts corresponding to those dial requests. If agents are available, the dial requests are dialed out, which results in a voice call. The resulting voice call uses the same contactId that was created by BatchPutContact.
|
124
|
+
*/
|
125
|
+
batchPutContact(callback?: (err: AWSError, data: Connect.Types.BatchPutContactResponse) => void): Request<Connect.Types.BatchPutContactResponse, AWSError>;
|
118
126
|
/**
|
119
127
|
* Claims an available phone number to your Amazon Connect instance or traffic distribution group. You can call this API only in the same Amazon Web Services Region where the Amazon Connect instance or traffic distribution group was created. For more information about how to use this operation, see Claim a phone number in your country and Claim phone numbers to traffic distribution groups in the Amazon Connect Administrator Guide. You can call the SearchAvailablePhoneNumbers API for available phone numbers that you can claim. Call the DescribePhoneNumber API to verify the status of a previous ClaimPhoneNumber operation. If you plan to claim and release numbers frequently during a 30 day period, contact us for a service quota exception. Otherwise, it is possible you will be blocked from claiming and releasing any more numbers until 30 days past the oldest number released has expired. By default you can claim and release up to 200% of your maximum number of active phone numbers during any 30 day period. If you claim and release phone numbers using the UI or API during a rolling 30 day cycle that exceeds 200% of your phone number service level quota, you will be blocked from claiming any more numbers until 30 days past the oldest number released has expired. For example, if you already have 99 claimed numbers and a service level quota of 99 phone numbers, and in any 30 day period you release 99, claim 99, and then release 99, you will have exceeded the 200% limit. At that point you are blocked from claiming any more numbers until you open an Amazon Web Services support ticket.
|
120
128
|
*/
|
@@ -2140,11 +2148,41 @@ declare namespace Connect {
|
|
2140
2148
|
*/
|
2141
2149
|
FlowAssociationSummaryList?: FlowAssociationSummaryList;
|
2142
2150
|
}
|
2151
|
+
export interface BatchPutContactRequest {
|
2152
|
+
/**
|
2153
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
|
2154
|
+
*/
|
2155
|
+
ClientToken?: ClientToken;
|
2156
|
+
/**
|
2157
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
2158
|
+
*/
|
2159
|
+
InstanceId: InstanceId;
|
2160
|
+
/**
|
2161
|
+
* List of individual contact requests.
|
2162
|
+
*/
|
2163
|
+
ContactDataRequestList: ContactDataRequestList;
|
2164
|
+
}
|
2165
|
+
export interface BatchPutContactResponse {
|
2166
|
+
/**
|
2167
|
+
* List of requests for which contact was successfully created.
|
2168
|
+
*/
|
2169
|
+
SuccessfulRequestList?: SuccessfulRequestList;
|
2170
|
+
/**
|
2171
|
+
* List of requests for which contact creation failed.
|
2172
|
+
*/
|
2173
|
+
FailedRequestList?: FailedRequestList;
|
2174
|
+
}
|
2143
2175
|
export type BehaviorType = "ROUTE_CURRENT_CHANNEL_ONLY"|"ROUTE_ANY_CHANNEL"|string;
|
2144
2176
|
export type Boolean = boolean;
|
2145
2177
|
export type BotName = string;
|
2146
2178
|
export type BoxedBoolean = boolean;
|
2147
2179
|
export type BucketName = string;
|
2180
|
+
export interface Campaign {
|
2181
|
+
/**
|
2182
|
+
* A unique identifier for a campaign.
|
2183
|
+
*/
|
2184
|
+
CampaignId?: CampaignId;
|
2185
|
+
}
|
2148
2186
|
export type CampaignId = string;
|
2149
2187
|
export type Channel = "VOICE"|"CHAT"|"TASK"|string;
|
2150
2188
|
export type ChannelToCountMap = {[key: string]: IntegerCount};
|
@@ -2323,6 +2361,33 @@ declare namespace Connect {
|
|
2323
2361
|
*/
|
2324
2362
|
WisdomInfo?: WisdomInfo;
|
2325
2363
|
}
|
2364
|
+
export interface ContactDataRequest {
|
2365
|
+
/**
|
2366
|
+
* Endpoint associated with the Amazon Connect instance from which outbound contact will be initiated for the campaign.
|
2367
|
+
*/
|
2368
|
+
SystemEndpoint?: Endpoint;
|
2369
|
+
/**
|
2370
|
+
* Endpoint of the customer for which contact will be initiated.
|
2371
|
+
*/
|
2372
|
+
CustomerEndpoint?: Endpoint;
|
2373
|
+
/**
|
2374
|
+
* Identifier to uniquely identify individual requests in the batch.
|
2375
|
+
*/
|
2376
|
+
RequestIdentifier?: RequestIdentifier;
|
2377
|
+
/**
|
2378
|
+
* The identifier of the queue associated with the Amazon Connect instance in which contacts that are created will be queued.
|
2379
|
+
*/
|
2380
|
+
QueueId?: QueueId;
|
2381
|
+
/**
|
2382
|
+
* List of attributes to be stored in a contact.
|
2383
|
+
*/
|
2384
|
+
Attributes?: Attributes;
|
2385
|
+
/**
|
2386
|
+
* Structure to store information associated with a campaign.
|
2387
|
+
*/
|
2388
|
+
Campaign?: Campaign;
|
2389
|
+
}
|
2390
|
+
export type ContactDataRequestList = ContactDataRequest[];
|
2326
2391
|
export interface ContactFilter {
|
2327
2392
|
/**
|
2328
2393
|
* A list of up to 9 contact states.
|
@@ -4180,6 +4245,13 @@ declare namespace Connect {
|
|
4180
4245
|
}
|
4181
4246
|
export interface DisassociateTrafficDistributionGroupUserResponse {
|
4182
4247
|
}
|
4248
|
+
export interface DisconnectReason {
|
4249
|
+
/**
|
4250
|
+
* A code that indicates how the contact was terminated.
|
4251
|
+
*/
|
4252
|
+
Code?: DisconnectReasonCode;
|
4253
|
+
}
|
4254
|
+
export type DisconnectReasonCode = string;
|
4183
4255
|
export interface DismissUserContactRequest {
|
4184
4256
|
/**
|
4185
4257
|
* The identifier of the user account.
|
@@ -4230,6 +4302,18 @@ declare namespace Connect {
|
|
4230
4302
|
KeyId: KeyId;
|
4231
4303
|
}
|
4232
4304
|
export type EncryptionType = "KMS"|string;
|
4305
|
+
export interface Endpoint {
|
4306
|
+
/**
|
4307
|
+
* Type of the endpoint.
|
4308
|
+
*/
|
4309
|
+
Type?: EndpointType;
|
4310
|
+
/**
|
4311
|
+
* Address of the endpoint.
|
4312
|
+
*/
|
4313
|
+
Address?: EndpointAddress;
|
4314
|
+
}
|
4315
|
+
export type EndpointAddress = string;
|
4316
|
+
export type EndpointType = "TELEPHONE_NUMBER"|"VOIP"|"CONTACT_FLOW"|string;
|
4233
4317
|
export interface Evaluation {
|
4234
4318
|
/**
|
4235
4319
|
* A unique identifier for the contact evaluation.
|
@@ -4760,6 +4844,22 @@ declare namespace Connect {
|
|
4760
4844
|
}
|
4761
4845
|
export type EventBridgeActionName = string;
|
4762
4846
|
export type EventSourceName = "OnPostCallAnalysisAvailable"|"OnRealTimeCallAnalysisAvailable"|"OnPostChatAnalysisAvailable"|"OnZendeskTicketCreate"|"OnZendeskTicketStatusUpdate"|"OnSalesforceCaseCreate"|"OnContactEvaluationSubmit"|"OnMetricDataUpdate"|string;
|
4847
|
+
export interface FailedRequest {
|
4848
|
+
/**
|
4849
|
+
* Request identifier provided in the API call in the ContactDataRequest to create a contact.
|
4850
|
+
*/
|
4851
|
+
RequestIdentifier?: RequestIdentifier;
|
4852
|
+
/**
|
4853
|
+
* Reason code for the failure.
|
4854
|
+
*/
|
4855
|
+
FailureReasonCode?: FailureReasonCode;
|
4856
|
+
/**
|
4857
|
+
* Why the request to create a contact failed.
|
4858
|
+
*/
|
4859
|
+
FailureReasonMessage?: String;
|
4860
|
+
}
|
4861
|
+
export type FailedRequestList = FailedRequest[];
|
4862
|
+
export type FailureReasonCode = "INVALID_ATTRIBUTE_KEY"|"INVALID_CUSTOMER_ENDPOINT"|"INVALID_SYSTEM_ENDPOINT"|"INVALID_QUEUE"|"MISSING_CAMPAIGN"|"MISSING_CUSTOMER_ENDPOINT"|"MISSING_QUEUE_ID_AND_SYSTEM_ENDPOINT"|"REQUEST_THROTTLED"|"IDEMPOTENCY_EXCEPTION"|"INTERNAL_ERROR"|string;
|
4763
4863
|
export interface FilterV2 {
|
4764
4864
|
/**
|
4765
4865
|
* The key to use for filtering data. For example, QUEUE, ROUTING_PROFILE, AGENT, CHANNEL, AGENT_HIERARCHY_LEVEL_ONE, AGENT_HIERARCHY_LEVEL_TWO, AGENT_HIERARCHY_LEVEL_THREE, AGENT_HIERARCHY_LEVEL_FOUR, AGENT_HIERARCHY_LEVEL_FIVE. There must be at least 1 key and a maximum 5 keys.
|
@@ -7555,6 +7655,7 @@ declare namespace Connect {
|
|
7555
7655
|
*/
|
7556
7656
|
Arn?: ARN;
|
7557
7657
|
}
|
7658
|
+
export type RequestIdentifier = string;
|
7558
7659
|
export interface RequiredFieldInfo {
|
7559
7660
|
/**
|
7560
7661
|
* The unique identifier for the field.
|
@@ -8697,6 +8798,10 @@ declare namespace Connect {
|
|
8697
8798
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
8698
8799
|
*/
|
8699
8800
|
InstanceId: InstanceId;
|
8801
|
+
/**
|
8802
|
+
* The reason a contact can be disconnected. Only Amazon Connect outbound campaigns can provide this field.
|
8803
|
+
*/
|
8804
|
+
DisconnectReason?: DisconnectReason;
|
8700
8805
|
}
|
8701
8806
|
export interface StopContactResponse {
|
8702
8807
|
}
|
@@ -8773,6 +8878,17 @@ declare namespace Connect {
|
|
8773
8878
|
*/
|
8774
8879
|
EvaluationArn: ARN;
|
8775
8880
|
}
|
8881
|
+
export interface SuccessfulRequest {
|
8882
|
+
/**
|
8883
|
+
* Request identifier provided in the API call in the ContactDataRequest to create a contact.
|
8884
|
+
*/
|
8885
|
+
RequestIdentifier?: RequestIdentifier;
|
8886
|
+
/**
|
8887
|
+
* The contactId of the contact that was created successfully.
|
8888
|
+
*/
|
8889
|
+
ContactId?: ContactId;
|
8890
|
+
}
|
8891
|
+
export type SuccessfulRequestList = SuccessfulRequest[];
|
8776
8892
|
export type SupportedMessagingContentType = string;
|
8777
8893
|
export type SupportedMessagingContentTypes = SupportedMessagingContentType[];
|
8778
8894
|
export interface SuspendContactRecordingRequest {
|
@@ -1963,25 +1963,29 @@ declare namespace CostExplorer {
|
|
1963
1963
|
}
|
1964
1964
|
export interface InstanceDetails {
|
1965
1965
|
/**
|
1966
|
-
* The Amazon EC2
|
1966
|
+
* The Amazon EC2 reservations that Amazon Web Services recommends that you purchase.
|
1967
1967
|
*/
|
1968
1968
|
EC2InstanceDetails?: EC2InstanceDetails;
|
1969
1969
|
/**
|
1970
|
-
* The Amazon RDS
|
1970
|
+
* The Amazon RDS reservations that Amazon Web Services recommends that you purchase.
|
1971
1971
|
*/
|
1972
1972
|
RDSInstanceDetails?: RDSInstanceDetails;
|
1973
1973
|
/**
|
1974
|
-
* The Amazon Redshift
|
1974
|
+
* The Amazon Redshift reservations that Amazon Web Services recommends that you purchase.
|
1975
1975
|
*/
|
1976
1976
|
RedshiftInstanceDetails?: RedshiftInstanceDetails;
|
1977
1977
|
/**
|
1978
|
-
* The ElastiCache
|
1978
|
+
* The ElastiCache reservations that Amazon Web Services recommends that you purchase.
|
1979
1979
|
*/
|
1980
1980
|
ElastiCacheInstanceDetails?: ElastiCacheInstanceDetails;
|
1981
1981
|
/**
|
1982
|
-
* The Amazon OpenSearch Service
|
1982
|
+
* The Amazon OpenSearch Service reservations that Amazon Web Services recommends that you purchase.
|
1983
1983
|
*/
|
1984
1984
|
ESInstanceDetails?: ESInstanceDetails;
|
1985
|
+
/**
|
1986
|
+
* The MemoryDB reservations that Amazon Web Services recommends that you purchase.
|
1987
|
+
*/
|
1988
|
+
MemoryDBInstanceDetails?: MemoryDBInstanceDetails;
|
1985
1989
|
}
|
1986
1990
|
export type Key = string;
|
1987
1991
|
export type Keys = Key[];
|
@@ -2085,6 +2089,28 @@ declare namespace CostExplorer {
|
|
2085
2089
|
export type MatchOption = "EQUALS"|"ABSENT"|"STARTS_WITH"|"ENDS_WITH"|"CONTAINS"|"CASE_SENSITIVE"|"CASE_INSENSITIVE"|"GREATER_THAN_OR_EQUAL"|string;
|
2086
2090
|
export type MatchOptions = MatchOption[];
|
2087
2091
|
export type MaxResults = number;
|
2092
|
+
export interface MemoryDBInstanceDetails {
|
2093
|
+
/**
|
2094
|
+
* The instance family of the recommended reservation.
|
2095
|
+
*/
|
2096
|
+
Family?: GenericString;
|
2097
|
+
/**
|
2098
|
+
* The node type of the recommended reservation.
|
2099
|
+
*/
|
2100
|
+
NodeType?: GenericString;
|
2101
|
+
/**
|
2102
|
+
* The Amazon Web Services Region of the recommended reservation.
|
2103
|
+
*/
|
2104
|
+
Region?: GenericString;
|
2105
|
+
/**
|
2106
|
+
* Determines whether the recommendation is for a current generation instance.
|
2107
|
+
*/
|
2108
|
+
CurrentGeneration?: GenericBoolean;
|
2109
|
+
/**
|
2110
|
+
* Determines whether the recommended reservation is size flexible.
|
2111
|
+
*/
|
2112
|
+
SizeFlexEligible?: GenericBoolean;
|
2113
|
+
}
|
2088
2114
|
export type Metric = "BLENDED_COST"|"UNBLENDED_COST"|"AMORTIZED_COST"|"NET_UNBLENDED_COST"|"NET_AMORTIZED_COST"|"USAGE_QUANTITY"|"NORMALIZED_USAGE_AMOUNT"|string;
|
2089
2115
|
export type MetricAmount = string;
|
2090
2116
|
export type MetricName = string;
|
@@ -2478,7 +2504,7 @@ declare namespace CostExplorer {
|
|
2478
2504
|
*/
|
2479
2505
|
AccountId?: GenericString;
|
2480
2506
|
/**
|
2481
|
-
* Details about the
|
2507
|
+
* Details about the reservations that Amazon Web Services recommends that you purchase.
|
2482
2508
|
*/
|
2483
2509
|
InstanceDetails?: InstanceDetails;
|
2484
2510
|
/**
|
@@ -506,6 +506,7 @@ declare namespace DocDB {
|
|
506
506
|
export type AvailabilityZones = String[];
|
507
507
|
export type Boolean = boolean;
|
508
508
|
export type BooleanOptional = boolean;
|
509
|
+
export type CACertificateIdentifiersList = String[];
|
509
510
|
export interface Certificate {
|
510
511
|
/**
|
511
512
|
* The unique key that identifies a certificate. Example: rds-ca-2019
|
@@ -532,6 +533,16 @@ declare namespace DocDB {
|
|
532
533
|
*/
|
533
534
|
CertificateArn?: String;
|
534
535
|
}
|
536
|
+
export interface CertificateDetails {
|
537
|
+
/**
|
538
|
+
* The CA identifier of the CA certificate used for the DB instance's server certificate.
|
539
|
+
*/
|
540
|
+
CAIdentifier?: String;
|
541
|
+
/**
|
542
|
+
* The expiration date of the DB instance’s server certificate.
|
543
|
+
*/
|
544
|
+
ValidTill?: TStamp;
|
545
|
+
}
|
535
546
|
export type CertificateList = Certificate[];
|
536
547
|
export interface CertificateMessage {
|
537
548
|
/**
|
@@ -775,6 +786,10 @@ declare namespace DocDB {
|
|
775
786
|
* The KMS key identifier for encryption of Performance Insights data. The KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon DocumentDB uses your default 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.
|
776
787
|
*/
|
777
788
|
PerformanceInsightsKMSKeyId?: String;
|
789
|
+
/**
|
790
|
+
* The CA certificate identifier to use for the DB instance's server certificate. For more information, see Updating Your Amazon DocumentDB TLS Certificates and Encrypting Data in Transit in the Amazon DocumentDB Developer Guide.
|
791
|
+
*/
|
792
|
+
CACertificateIdentifier?: String;
|
778
793
|
}
|
779
794
|
export interface CreateDBInstanceResult {
|
780
795
|
DBInstance?: DBInstance;
|
@@ -1217,6 +1232,14 @@ declare namespace DocDB {
|
|
1217
1232
|
* A value that indicates whether the engine version supports exporting the log types specified by ExportableLogTypes to CloudWatch Logs.
|
1218
1233
|
*/
|
1219
1234
|
SupportsLogExportsToCloudwatchLogs?: Boolean;
|
1235
|
+
/**
|
1236
|
+
* A list of the supported CA certificate identifiers. For more information, see Updating Your Amazon DocumentDB TLS Certificates and Encrypting Data in Transit in the Amazon DocumentDB Developer Guide.
|
1237
|
+
*/
|
1238
|
+
SupportedCACertificateIdentifiers?: CACertificateIdentifiersList;
|
1239
|
+
/**
|
1240
|
+
* Indicates whether the engine version supports rotating the server certificate without rebooting the DB instance.
|
1241
|
+
*/
|
1242
|
+
SupportsCertificateRotationWithoutRestart?: BooleanOptional;
|
1220
1243
|
}
|
1221
1244
|
export type DBEngineVersionList = DBEngineVersion[];
|
1222
1245
|
export interface DBEngineVersionMessage {
|
@@ -1338,6 +1361,10 @@ declare namespace DocDB {
|
|
1338
1361
|
* A list of log types that this instance is configured to export to CloudWatch Logs.
|
1339
1362
|
*/
|
1340
1363
|
EnabledCloudwatchLogsExports?: LogTypeList;
|
1364
|
+
/**
|
1365
|
+
* The details of the DB instance's server certificate.
|
1366
|
+
*/
|
1367
|
+
CertificateDetails?: CertificateDetails;
|
1341
1368
|
}
|
1342
1369
|
export type DBInstanceList = DBInstance[];
|
1343
1370
|
export interface DBInstanceMessage {
|
@@ -2202,6 +2229,10 @@ declare namespace DocDB {
|
|
2202
2229
|
* The KMS key identifier for encryption of Performance Insights data. The KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon DocumentDB uses your default 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.
|
2203
2230
|
*/
|
2204
2231
|
PerformanceInsightsKMSKeyId?: String;
|
2232
|
+
/**
|
2233
|
+
* Specifies whether the DB instance is restarted when you rotate your SSL/TLS certificate. By default, the DB instance is restarted when you rotate your SSL/TLS certificate. The certificate is not updated until the DB instance is restarted. Set this parameter only if you are not using SSL/TLS to connect to the DB instance. If you are using SSL/TLS to connect to the DB instance, see Updating Your Amazon DocumentDB TLS Certificates and Encrypting Data in Transit in the Amazon DocumentDB Developer Guide.
|
2234
|
+
*/
|
2235
|
+
CertificateRotationRestart?: BooleanOptional;
|
2205
2236
|
}
|
2206
2237
|
export interface ModifyDBInstanceResult {
|
2207
2238
|
DBInstance?: DBInstance;
|
@@ -128,7 +128,7 @@ declare namespace MWAA {
|
|
128
128
|
*/
|
129
129
|
AirflowConfigurationOptions?: AirflowConfigurationOptions;
|
130
130
|
/**
|
131
|
-
* The Apache Airflow version for your environment. If no value is specified, it defaults to the latest version. Valid values: 1.10.12, 2.0.2, 2.2.2, 2.4.3,
|
131
|
+
* The Apache Airflow version for your environment. If no value is specified, it defaults to the latest version. For more information, see Apache Airflow versions on Amazon Managed Workflows for Apache Airflow (MWAA). Valid values: 1.10.12, 2.0.2, 2.2.2, 2.4.3, 2.5.1, 2.6.3, 2.7.2.
|
132
132
|
*/
|
133
133
|
AirflowVersion?: AirflowVersion;
|
134
134
|
/**
|
@@ -261,7 +261,7 @@ declare namespace MWAA {
|
|
261
261
|
*/
|
262
262
|
AirflowConfigurationOptions?: AirflowConfigurationOptions;
|
263
263
|
/**
|
264
|
-
* The Apache Airflow version on your environment. Valid values: 1.10.12, 2.0.2, 2.2.2, 2.4.3,
|
264
|
+
* The Apache Airflow version on your environment. Valid values: 1.10.12, 2.0.2, 2.2.2, 2.4.3, 2.5.1, 2.6.3, 2.7.2.
|
265
265
|
*/
|
266
266
|
AirflowVersion?: AirflowVersion;
|
267
267
|
/**
|
@@ -630,7 +630,7 @@ declare namespace MWAA {
|
|
630
630
|
*/
|
631
631
|
AirflowConfigurationOptions?: AirflowConfigurationOptions;
|
632
632
|
/**
|
633
|
-
* The Apache Airflow version for your environment. To upgrade your environment, specify a newer version of Apache Airflow supported by Amazon MWAA. Before you upgrade an environment, make sure your requirements, DAGs, plugins, and other resources used in your workflows are compatible with the new Apache Airflow version. For more information about updating your resources, see Upgrading an Amazon MWAA environment. Valid values: 1.10.12, 2.0.2, 2.2.2, 2.4.3,
|
633
|
+
* The Apache Airflow version for your environment. To upgrade your environment, specify a newer version of Apache Airflow supported by Amazon MWAA. Before you upgrade an environment, make sure your requirements, DAGs, plugins, and other resources used in your workflows are compatible with the new Apache Airflow version. For more information about updating your resources, see Upgrading an Amazon MWAA environment. Valid values: 1.10.12, 2.0.2, 2.2.2, 2.4.3, 2.5.1, 2.6.3, 2.7.2.
|
634
634
|
*/
|
635
635
|
AirflowVersion?: AirflowVersion;
|
636
636
|
/**
|
@@ -488,7 +488,7 @@ declare namespace Polly {
|
|
488
488
|
*/
|
489
489
|
SupportedEngines?: EngineList;
|
490
490
|
}
|
491
|
-
export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|"Ayanda"|"Arlet"|"Hannah"|"Arthur"|"Daniel"|"Liam"|"Pedro"|"Kajal"|"Hiujin"|"Laura"|"Elin"|"Ida"|"Suvi"|"Ola"|"Hala"|"Andres"|"Sergio"|"Remi"|"Adriano"|"Thiago"|"Ruth"|"Stephen"|"Kazuha"|"Tomoko"|"Niamh"|"Sofie"|"Lisa"|"Isabelle"|"Zayd"|string;
|
491
|
+
export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|"Ayanda"|"Arlet"|"Hannah"|"Arthur"|"Daniel"|"Liam"|"Pedro"|"Kajal"|"Hiujin"|"Laura"|"Elin"|"Ida"|"Suvi"|"Ola"|"Hala"|"Andres"|"Sergio"|"Remi"|"Adriano"|"Thiago"|"Ruth"|"Stephen"|"Kazuha"|"Tomoko"|"Niamh"|"Sofie"|"Lisa"|"Isabelle"|"Zayd"|"Danielle"|"Gregory"|string;
|
492
492
|
export type VoiceList = Voice[];
|
493
493
|
export type VoiceName = string;
|
494
494
|
/**
|