cdk-lambda-subminute 2.0.439 → 2.0.440
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/README.md +1 -1
- package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +5 -1
- package/node_modules/aws-sdk/apis/fms-2018-01-01.min.json +331 -144
- package/node_modules/aws-sdk/apis/rds-2013-01-10.min.json +3 -0
- package/node_modules/aws-sdk/apis/rds-2013-02-12.min.json +3 -0
- package/node_modules/aws-sdk/apis/rds-2013-09-09.min.json +3 -0
- package/node_modules/aws-sdk/apis/rds-2014-09-01.min.json +3 -0
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +3 -0
- package/node_modules/aws-sdk/apis/states-2016-11-23.min.json +44 -0
- package/node_modules/aws-sdk/clients/appsync.d.ts +1 -1
- package/node_modules/aws-sdk/clients/fms.d.ts +258 -20
- package/node_modules/aws-sdk/clients/ivs.d.ts +1 -1
- package/node_modules/aws-sdk/clients/rds.d.ts +4 -4
- package/node_modules/aws-sdk/clients/stepfunctions.d.ts +52 -0
- 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 +9 -9
- package/node_modules/aws-sdk/dist/aws-sdk.js +18 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +27 -27
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -2464,7 +2464,7 @@ declare namespace RDS {
|
|
2464
2464
|
*/
|
2465
2465
|
PromotionTier?: IntegerOptional;
|
2466
2466
|
/**
|
2467
|
-
* The time zone of the DB instance. The time zone parameter is currently supported only by
|
2467
|
+
* The time zone of the DB instance. The time zone parameter is currently supported only by RDS for Db2 and RDS for SQL Server.
|
2468
2468
|
*/
|
2469
2469
|
Timezone?: String;
|
2470
2470
|
/**
|
@@ -4196,7 +4196,7 @@ declare namespace RDS {
|
|
4196
4196
|
*/
|
4197
4197
|
DBInstanceArn?: String;
|
4198
4198
|
/**
|
4199
|
-
* The time zone of the DB instance. In most cases, the Timezone element is empty. Timezone content appears only for
|
4199
|
+
* The time zone of the DB instance. In most cases, the Timezone element is empty. Timezone content appears only for RDS for Db2 and RDS for SQL Server DB instances that were created with a time zone specified.
|
4200
4200
|
*/
|
4201
4201
|
Timezone?: String;
|
4202
4202
|
/**
|
@@ -7582,7 +7582,7 @@ declare namespace RDS {
|
|
7582
7582
|
*/
|
7583
7583
|
DBInstanceClass?: String;
|
7584
7584
|
/**
|
7585
|
-
* The new DB subnet group for the DB instance. You can use this parameter to move your DB instance to a different VPC. If your DB instance isn't in a VPC, you can also use this parameter to move your DB instance into a VPC. For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide. Changing the subnet group causes an outage during the change. The change is applied during the next maintenance window, unless you enable ApplyImmediately. This
|
7585
|
+
* The new DB subnet group for the DB instance. You can use this parameter to move your DB instance to a different VPC. If your DB instance isn't in a VPC, you can also use this parameter to move your DB instance into a VPC. For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide. Changing the subnet group causes an outage during the change. The change is applied during the next maintenance window, unless you enable ApplyImmediately. This setting doesn't apply to RDS Custom DB instances. Constraints: If supplied, must match existing DB subnet group. Example: mydbsubnetgroup
|
7586
7586
|
*/
|
7587
7587
|
DBSubnetGroupName?: String;
|
7588
7588
|
/**
|
@@ -7746,7 +7746,7 @@ declare namespace RDS {
|
|
7746
7746
|
*/
|
7747
7747
|
UseDefaultProcessorFeatures?: BooleanOptional;
|
7748
7748
|
/**
|
7749
|
-
* Specifies whether the DB instance has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection isn't enabled. For more information, see Deleting a DB Instance.
|
7749
|
+
* Specifies whether the DB instance has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection isn't enabled. For more information, see Deleting a DB Instance. This setting doesn't apply to Amazon Aurora DB instances. You can enable or disable deletion protection for the DB cluster. For more information, see ModifyDBCluster. DB instances in a DB cluster can be deleted even when deletion protection is enabled for the DB cluster.
|
7750
7750
|
*/
|
7751
7751
|
DeletionProtection?: BooleanOptional;
|
7752
7752
|
/**
|
@@ -299,6 +299,14 @@ declare class StepFunctions extends Service {
|
|
299
299
|
* Updates the configuration of an existing state machine alias by modifying its description or routingConfiguration. You must specify at least one of the description or routingConfiguration parameters to update a state machine alias. UpdateStateMachineAlias is an idempotent API. Step Functions bases the idempotency check on the stateMachineAliasArn, description, and routingConfiguration parameters. Requests with the same parameters return an idempotent response. This operation is eventually consistent. All StartExecution requests made within a few seconds use the latest alias configuration. Executions started immediately after calling UpdateStateMachineAlias may use the previous routing configuration. Related operations: CreateStateMachineAlias DescribeStateMachineAlias ListStateMachineAliases DeleteStateMachineAlias
|
300
300
|
*/
|
301
301
|
updateStateMachineAlias(callback?: (err: AWSError, data: StepFunctions.Types.UpdateStateMachineAliasOutput) => void): Request<StepFunctions.Types.UpdateStateMachineAliasOutput, AWSError>;
|
302
|
+
/**
|
303
|
+
* Validates the syntax of a state machine definition. You can validate that a state machine definition is correct without creating a state machine resource. Step Functions will implicitly perform the same syntax check when you invoke CreateStateMachine and UpdateStateMachine. State machine definitions are specified using a JSON-based, structured language. For more information on Amazon States Language see Amazon States Language (ASL). Suggested uses for ValidateStateMachineDefinition: Integrate automated checks into your code review or Continuous Integration (CI) process to validate state machine definitions before starting deployments. Run the validation from a Git pre-commit hook to check your state machine definitions before committing them to your source repository. Errors found in the state machine definition will be returned in the response as a list of diagnostic elements, rather than raise an exception.
|
304
|
+
*/
|
305
|
+
validateStateMachineDefinition(params: StepFunctions.Types.ValidateStateMachineDefinitionInput, callback?: (err: AWSError, data: StepFunctions.Types.ValidateStateMachineDefinitionOutput) => void): Request<StepFunctions.Types.ValidateStateMachineDefinitionOutput, AWSError>;
|
306
|
+
/**
|
307
|
+
* Validates the syntax of a state machine definition. You can validate that a state machine definition is correct without creating a state machine resource. Step Functions will implicitly perform the same syntax check when you invoke CreateStateMachine and UpdateStateMachine. State machine definitions are specified using a JSON-based, structured language. For more information on Amazon States Language see Amazon States Language (ASL). Suggested uses for ValidateStateMachineDefinition: Integrate automated checks into your code review or Continuous Integration (CI) process to validate state machine definitions before starting deployments. Run the validation from a Git pre-commit hook to check your state machine definitions before committing them to your source repository. Errors found in the state machine definition will be returned in the response as a list of diagnostic elements, rather than raise an exception.
|
308
|
+
*/
|
309
|
+
validateStateMachineDefinition(callback?: (err: AWSError, data: StepFunctions.Types.ValidateStateMachineDefinitionOutput) => void): Request<StepFunctions.Types.ValidateStateMachineDefinitionOutput, AWSError>;
|
302
310
|
}
|
303
311
|
declare namespace StepFunctions {
|
304
312
|
export interface ActivityFailedEventDetails {
|
@@ -2252,6 +2260,50 @@ declare namespace StepFunctions {
|
|
2252
2260
|
*/
|
2253
2261
|
stateMachineVersionArn?: Arn;
|
2254
2262
|
}
|
2263
|
+
export type ValidateStateMachineDefinitionCode = string;
|
2264
|
+
export interface ValidateStateMachineDefinitionDiagnostic {
|
2265
|
+
/**
|
2266
|
+
* A value of ERROR means that you cannot create or update a state machine with this definition.
|
2267
|
+
*/
|
2268
|
+
severity: ValidateStateMachineDefinitionSeverity;
|
2269
|
+
/**
|
2270
|
+
* Identifying code for the diagnostic.
|
2271
|
+
*/
|
2272
|
+
code: ValidateStateMachineDefinitionCode;
|
2273
|
+
/**
|
2274
|
+
* Message describing the diagnostic condition.
|
2275
|
+
*/
|
2276
|
+
message: ValidateStateMachineDefinitionMessage;
|
2277
|
+
/**
|
2278
|
+
* Location of the issue in the state machine, if available. For errors specific to a field, the location could be in the format: /States/<StateName>/<FieldName>, for example: /States/FailState/ErrorPath.
|
2279
|
+
*/
|
2280
|
+
location?: ValidateStateMachineDefinitionLocation;
|
2281
|
+
}
|
2282
|
+
export type ValidateStateMachineDefinitionDiagnosticList = ValidateStateMachineDefinitionDiagnostic[];
|
2283
|
+
export interface ValidateStateMachineDefinitionInput {
|
2284
|
+
/**
|
2285
|
+
* The Amazon States Language definition of the state machine. For more information, see Amazon States Language (ASL).
|
2286
|
+
*/
|
2287
|
+
definition: Definition;
|
2288
|
+
/**
|
2289
|
+
* The target type of state machine for this definition. The default is STANDARD.
|
2290
|
+
*/
|
2291
|
+
type?: StateMachineType;
|
2292
|
+
}
|
2293
|
+
export type ValidateStateMachineDefinitionLocation = string;
|
2294
|
+
export type ValidateStateMachineDefinitionMessage = string;
|
2295
|
+
export interface ValidateStateMachineDefinitionOutput {
|
2296
|
+
/**
|
2297
|
+
* The result value will be OK when no syntax errors are found, or FAIL if the workflow definition does not pass verification.
|
2298
|
+
*/
|
2299
|
+
result: ValidateStateMachineDefinitionResultCode;
|
2300
|
+
/**
|
2301
|
+
* If the result is OK, this field will be empty. When there are errors, this field will contain an array of Diagnostic objects to help you troubleshoot.
|
2302
|
+
*/
|
2303
|
+
diagnostics: ValidateStateMachineDefinitionDiagnosticList;
|
2304
|
+
}
|
2305
|
+
export type ValidateStateMachineDefinitionResultCode = "OK"|"FAIL"|string;
|
2306
|
+
export type ValidateStateMachineDefinitionSeverity = "ERROR"|string;
|
2255
2307
|
export type VersionDescription = string;
|
2256
2308
|
export type VersionWeight = number;
|
2257
2309
|
export type includedDetails = boolean;
|