stacktape 3.2.0 → 3.2.2
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/index.d.ts +10 -10
- package/package.json +1 -1
- package/{sdk.d.ts → plain.d.ts} +335 -935
- package/types.d.ts +108 -108
package/{sdk.d.ts → plain.d.ts}
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
// @ts-nocheck
|
|
3
3
|
// Generated file - Do not edit manually
|
|
4
|
-
// Plain
|
|
4
|
+
// Plain types (YAML-equivalent) - no class augmentation
|
|
5
5
|
// For class-based types, use: import { X } from 'stacktape'
|
|
6
6
|
|
|
7
7
|
export type StacktapeResourceDefinition =
|
|
@@ -112,9 +112,7 @@ export interface StacktapeConfig {
|
|
|
112
112
|
*
|
|
113
113
|
* Example: `dbAddress: $ResourceParam('myDatabase', 'host')`
|
|
114
114
|
*/
|
|
115
|
-
variables?:
|
|
116
|
-
[k: string]: unknown;
|
|
117
|
-
};
|
|
115
|
+
variables?: any;
|
|
118
116
|
budgetControl?: BudgetControl;
|
|
119
117
|
hooks?: Hooks;
|
|
120
118
|
/**
|
|
@@ -1114,9 +1112,7 @@ export interface ContainerWorkload {
|
|
|
1114
1112
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
1115
1113
|
*/
|
|
1116
1114
|
overrides?: {
|
|
1117
|
-
[k: string]:
|
|
1118
|
-
[k: string]: unknown;
|
|
1119
|
-
};
|
|
1115
|
+
[k: string]: any;
|
|
1120
1116
|
};
|
|
1121
1117
|
}
|
|
1122
1118
|
export interface ContainerWorkloadProps {
|
|
@@ -2616,9 +2612,7 @@ export interface StpIamRoleStatement {
|
|
|
2616
2612
|
*
|
|
2617
2613
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
2618
2614
|
*/
|
|
2619
|
-
Condition?:
|
|
2620
|
-
[k: string]: unknown;
|
|
2621
|
-
};
|
|
2615
|
+
Condition?: any;
|
|
2622
2616
|
/**
|
|
2623
2617
|
* #### Resource
|
|
2624
2618
|
*
|
|
@@ -2655,9 +2649,7 @@ export interface BatchJob {
|
|
|
2655
2649
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
2656
2650
|
*/
|
|
2657
2651
|
overrides?: {
|
|
2658
|
-
[k: string]:
|
|
2659
|
-
[k: string]: unknown;
|
|
2660
|
-
};
|
|
2652
|
+
[k: string]: any;
|
|
2661
2653
|
};
|
|
2662
2654
|
}
|
|
2663
2655
|
export interface BatchJobProps {
|
|
@@ -3254,9 +3246,7 @@ export interface SnsIntegration {
|
|
|
3254
3246
|
* If you need to filter based on the message content, consider using an EventBridge event bus instead.
|
|
3255
3247
|
* For more details on filter policies, see the [AWS documentation](https://docs.aws.amazon.com/sns/latest/dg/sns-subscription-filter-policies.html).
|
|
3256
3248
|
*/
|
|
3257
|
-
filterPolicy?:
|
|
3258
|
-
[k: string]: unknown;
|
|
3259
|
-
};
|
|
3249
|
+
filterPolicy?: any;
|
|
3260
3250
|
onDeliveryFailure?: SnsOnDeliveryFailure;
|
|
3261
3251
|
};
|
|
3262
3252
|
}
|
|
@@ -3610,9 +3600,7 @@ export interface ScheduleIntegration {
|
|
|
3610
3600
|
* source: 'my-scheduled-event'
|
|
3611
3601
|
* ```
|
|
3612
3602
|
*/
|
|
3613
|
-
input?:
|
|
3614
|
-
[k: string]: unknown;
|
|
3615
|
-
};
|
|
3603
|
+
input?: any;
|
|
3616
3604
|
/**
|
|
3617
3605
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
3618
3606
|
*
|
|
@@ -3657,9 +3645,7 @@ export interface EventInputTransformer {
|
|
|
3657
3645
|
*
|
|
3658
3646
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
3659
3647
|
*/
|
|
3660
|
-
inputPathsMap?:
|
|
3661
|
-
[k: string]: unknown;
|
|
3662
|
-
};
|
|
3648
|
+
inputPathsMap?: any;
|
|
3663
3649
|
/**
|
|
3664
3650
|
* #### A template for constructing a new event payload.
|
|
3665
3651
|
*
|
|
@@ -3667,9 +3653,7 @@ export interface EventInputTransformer {
|
|
|
3667
3653
|
*
|
|
3668
3654
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
3669
3655
|
*/
|
|
3670
|
-
inputTemplate:
|
|
3671
|
-
[k: string]: unknown;
|
|
3672
|
-
};
|
|
3656
|
+
inputTemplate: any;
|
|
3673
3657
|
}
|
|
3674
3658
|
/**
|
|
3675
3659
|
* #### Triggers a function when a new log record is added to a CloudWatch log group.
|
|
@@ -3807,9 +3791,7 @@ export interface EventBusIntegration {
|
|
|
3807
3791
|
* source: 'my-custom-event'
|
|
3808
3792
|
* ```
|
|
3809
3793
|
*/
|
|
3810
|
-
input?:
|
|
3811
|
-
[k: string]: unknown;
|
|
3812
|
-
};
|
|
3794
|
+
input?: any;
|
|
3813
3795
|
/**
|
|
3814
3796
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
3815
3797
|
*
|
|
@@ -3844,9 +3826,7 @@ export interface EventBusIntegrationPattern {
|
|
|
3844
3826
|
*
|
|
3845
3827
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
3846
3828
|
*/
|
|
3847
|
-
version?:
|
|
3848
|
-
[k: string]: unknown;
|
|
3849
|
-
};
|
|
3829
|
+
version?: any;
|
|
3850
3830
|
/**
|
|
3851
3831
|
* #### A filter for the `detail-type` field of the event.
|
|
3852
3832
|
*
|
|
@@ -3854,9 +3834,7 @@ export interface EventBusIntegrationPattern {
|
|
|
3854
3834
|
*
|
|
3855
3835
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
3856
3836
|
*/
|
|
3857
|
-
"detail-type"?:
|
|
3858
|
-
[k: string]: unknown;
|
|
3859
|
-
};
|
|
3837
|
+
"detail-type"?: any;
|
|
3860
3838
|
/**
|
|
3861
3839
|
* #### A filter for the `source` field of the event.
|
|
3862
3840
|
*
|
|
@@ -3864,9 +3842,7 @@ export interface EventBusIntegrationPattern {
|
|
|
3864
3842
|
*
|
|
3865
3843
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
3866
3844
|
*/
|
|
3867
|
-
source?:
|
|
3868
|
-
[k: string]: unknown;
|
|
3869
|
-
};
|
|
3845
|
+
source?: any;
|
|
3870
3846
|
/**
|
|
3871
3847
|
* #### A filter for the `account` field of the event.
|
|
3872
3848
|
*
|
|
@@ -3874,9 +3850,7 @@ export interface EventBusIntegrationPattern {
|
|
|
3874
3850
|
*
|
|
3875
3851
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
3876
3852
|
*/
|
|
3877
|
-
account?:
|
|
3878
|
-
[k: string]: unknown;
|
|
3879
|
-
};
|
|
3853
|
+
account?: any;
|
|
3880
3854
|
/**
|
|
3881
3855
|
* #### A filter for the `region` field of the event.
|
|
3882
3856
|
*
|
|
@@ -3884,9 +3858,7 @@ export interface EventBusIntegrationPattern {
|
|
|
3884
3858
|
*
|
|
3885
3859
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
3886
3860
|
*/
|
|
3887
|
-
region?:
|
|
3888
|
-
[k: string]: unknown;
|
|
3889
|
-
};
|
|
3861
|
+
region?: any;
|
|
3890
3862
|
/**
|
|
3891
3863
|
* #### A filter for the `resources` field of the event.
|
|
3892
3864
|
*
|
|
@@ -3894,9 +3866,7 @@ export interface EventBusIntegrationPattern {
|
|
|
3894
3866
|
*
|
|
3895
3867
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
3896
3868
|
*/
|
|
3897
|
-
resources?:
|
|
3898
|
-
[k: string]: unknown;
|
|
3899
|
-
};
|
|
3869
|
+
resources?: any;
|
|
3900
3870
|
/**
|
|
3901
3871
|
* #### A filter for the `detail` field of the event.
|
|
3902
3872
|
*
|
|
@@ -3905,9 +3875,7 @@ export interface EventBusIntegrationPattern {
|
|
|
3905
3875
|
* The `detail` field contains the main payload of the event as a JSON object. You can create complex matching rules based on its contents.
|
|
3906
3876
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
3907
3877
|
*/
|
|
3908
|
-
detail?:
|
|
3909
|
-
[k: string]: unknown;
|
|
3910
|
-
};
|
|
3878
|
+
detail?: any;
|
|
3911
3879
|
/**
|
|
3912
3880
|
* #### A filter for the `replay-name` field of the event.
|
|
3913
3881
|
*
|
|
@@ -3915,9 +3883,7 @@ export interface EventBusIntegrationPattern {
|
|
|
3915
3883
|
*
|
|
3916
3884
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
3917
3885
|
*/
|
|
3918
|
-
"replay-name"?:
|
|
3919
|
-
[k: string]: unknown;
|
|
3920
|
-
};
|
|
3886
|
+
"replay-name"?: any;
|
|
3921
3887
|
}
|
|
3922
3888
|
/**
|
|
3923
3889
|
* #### A destination for events that fail to be delivered to the target.
|
|
@@ -3963,9 +3929,7 @@ export interface EventInputTransformer1 {
|
|
|
3963
3929
|
*
|
|
3964
3930
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
3965
3931
|
*/
|
|
3966
|
-
inputPathsMap?:
|
|
3967
|
-
[k: string]: unknown;
|
|
3968
|
-
};
|
|
3932
|
+
inputPathsMap?: any;
|
|
3969
3933
|
/**
|
|
3970
3934
|
* #### A template for constructing a new event payload.
|
|
3971
3935
|
*
|
|
@@ -3973,9 +3937,7 @@ export interface EventInputTransformer1 {
|
|
|
3973
3937
|
*
|
|
3974
3938
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
3975
3939
|
*/
|
|
3976
|
-
inputTemplate:
|
|
3977
|
-
[k: string]: unknown;
|
|
3978
|
-
};
|
|
3940
|
+
inputTemplate: any;
|
|
3979
3941
|
}
|
|
3980
3942
|
/**
|
|
3981
3943
|
* #### Web Service
|
|
@@ -4000,9 +3962,7 @@ export interface WebService {
|
|
|
4000
3962
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
4001
3963
|
*/
|
|
4002
3964
|
overrides?: {
|
|
4003
|
-
[k: string]:
|
|
4004
|
-
[k: string]: unknown;
|
|
4005
|
-
};
|
|
3965
|
+
[k: string]: any;
|
|
4006
3966
|
};
|
|
4007
3967
|
}
|
|
4008
3968
|
export interface WebServiceProps {
|
|
@@ -6076,9 +6036,7 @@ export interface PrivateService {
|
|
|
6076
6036
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
6077
6037
|
*/
|
|
6078
6038
|
overrides?: {
|
|
6079
|
-
[k: string]:
|
|
6080
|
-
[k: string]: unknown;
|
|
6081
|
-
};
|
|
6039
|
+
[k: string]: any;
|
|
6082
6040
|
};
|
|
6083
6041
|
}
|
|
6084
6042
|
export interface PrivateServiceProps {
|
|
@@ -6467,9 +6425,7 @@ export interface WorkerService {
|
|
|
6467
6425
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
6468
6426
|
*/
|
|
6469
6427
|
overrides?: {
|
|
6470
|
-
[k: string]:
|
|
6471
|
-
[k: string]: unknown;
|
|
6472
|
-
};
|
|
6428
|
+
[k: string]: any;
|
|
6473
6429
|
};
|
|
6474
6430
|
}
|
|
6475
6431
|
export interface WorkerServiceProps {
|
|
@@ -6838,9 +6794,7 @@ export interface RelationalDatabase {
|
|
|
6838
6794
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
6839
6795
|
*/
|
|
6840
6796
|
overrides?: {
|
|
6841
|
-
[k: string]:
|
|
6842
|
-
[k: string]: unknown;
|
|
6843
|
-
};
|
|
6797
|
+
[k: string]: any;
|
|
6844
6798
|
};
|
|
6845
6799
|
}
|
|
6846
6800
|
export interface RelationalDatabaseProps {
|
|
@@ -7823,9 +7777,7 @@ export interface ApplicationLoadBalancer {
|
|
|
7823
7777
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
7824
7778
|
*/
|
|
7825
7779
|
overrides?: {
|
|
7826
|
-
[k: string]:
|
|
7827
|
-
[k: string]: unknown;
|
|
7828
|
-
};
|
|
7780
|
+
[k: string]: any;
|
|
7829
7781
|
};
|
|
7830
7782
|
}
|
|
7831
7783
|
export interface ApplicationLoadBalancerProps {
|
|
@@ -8342,9 +8294,7 @@ export interface NetworkLoadBalancer {
|
|
|
8342
8294
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
8343
8295
|
*/
|
|
8344
8296
|
overrides?: {
|
|
8345
|
-
[k: string]:
|
|
8346
|
-
[k: string]: unknown;
|
|
8347
|
-
};
|
|
8297
|
+
[k: string]: any;
|
|
8348
8298
|
};
|
|
8349
8299
|
}
|
|
8350
8300
|
export interface NetworkLoadBalancerProps {
|
|
@@ -8443,9 +8393,7 @@ export interface HttpApiGateway {
|
|
|
8443
8393
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
8444
8394
|
*/
|
|
8445
8395
|
overrides?: {
|
|
8446
|
-
[k: string]:
|
|
8447
|
-
[k: string]: unknown;
|
|
8448
|
-
};
|
|
8396
|
+
[k: string]: any;
|
|
8449
8397
|
};
|
|
8450
8398
|
}
|
|
8451
8399
|
export interface HttpApiGatewayProps {
|
|
@@ -8737,9 +8685,7 @@ export interface Bucket {
|
|
|
8737
8685
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
8738
8686
|
*/
|
|
8739
8687
|
overrides?: {
|
|
8740
|
-
[k: string]:
|
|
8741
|
-
[k: string]: unknown;
|
|
8742
|
-
};
|
|
8688
|
+
[k: string]: any;
|
|
8743
8689
|
};
|
|
8744
8690
|
}
|
|
8745
8691
|
export interface BucketProps {
|
|
@@ -8938,7 +8884,7 @@ export interface BucketAccessibility {
|
|
|
8938
8884
|
accessPolicyStatements?: BucketPolicyIamRoleStatement[];
|
|
8939
8885
|
}
|
|
8940
8886
|
export interface BucketPolicyIamRoleStatement {
|
|
8941
|
-
Principal:
|
|
8887
|
+
Principal: any;
|
|
8942
8888
|
/**
|
|
8943
8889
|
* #### Statement ID (Sid)
|
|
8944
8890
|
*
|
|
@@ -8970,9 +8916,7 @@ export interface BucketPolicyIamRoleStatement {
|
|
|
8970
8916
|
*
|
|
8971
8917
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
8972
8918
|
*/
|
|
8973
|
-
Condition?:
|
|
8974
|
-
[k: string]: unknown;
|
|
8975
|
-
};
|
|
8919
|
+
Condition?: any;
|
|
8976
8920
|
/**
|
|
8977
8921
|
* #### Resource
|
|
8978
8922
|
*
|
|
@@ -9527,9 +9471,7 @@ export interface UserAuthPool {
|
|
|
9527
9471
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
9528
9472
|
*/
|
|
9529
9473
|
overrides?: {
|
|
9530
|
-
[k: string]:
|
|
9531
|
-
[k: string]: unknown;
|
|
9532
|
-
};
|
|
9474
|
+
[k: string]: any;
|
|
9533
9475
|
};
|
|
9534
9476
|
}
|
|
9535
9477
|
export interface UserAuthPoolProps {
|
|
@@ -10213,9 +10155,7 @@ export interface EventBus {
|
|
|
10213
10155
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
10214
10156
|
*/
|
|
10215
10157
|
overrides?: {
|
|
10216
|
-
[k: string]:
|
|
10217
|
-
[k: string]: unknown;
|
|
10218
|
-
};
|
|
10158
|
+
[k: string]: any;
|
|
10219
10159
|
};
|
|
10220
10160
|
}
|
|
10221
10161
|
export interface EventBusProps {
|
|
@@ -10281,9 +10221,7 @@ export interface Bastion {
|
|
|
10281
10221
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
10282
10222
|
*/
|
|
10283
10223
|
overrides?: {
|
|
10284
|
-
[k: string]:
|
|
10285
|
-
[k: string]: unknown;
|
|
10286
|
-
};
|
|
10224
|
+
[k: string]: any;
|
|
10287
10225
|
};
|
|
10288
10226
|
}
|
|
10289
10227
|
export interface BastionProps {
|
|
@@ -10456,9 +10394,7 @@ export interface DynamoDbTable {
|
|
|
10456
10394
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
10457
10395
|
*/
|
|
10458
10396
|
overrides?: {
|
|
10459
|
-
[k: string]:
|
|
10460
|
-
[k: string]: unknown;
|
|
10461
|
-
};
|
|
10397
|
+
[k: string]: any;
|
|
10462
10398
|
};
|
|
10463
10399
|
}
|
|
10464
10400
|
export interface DynamoDbTableProps {
|
|
@@ -10763,9 +10699,7 @@ export interface StateMachine {
|
|
|
10763
10699
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
10764
10700
|
*/
|
|
10765
10701
|
overrides?: {
|
|
10766
|
-
[k: string]:
|
|
10767
|
-
[k: string]: unknown;
|
|
10768
|
-
};
|
|
10702
|
+
[k: string]: any;
|
|
10769
10703
|
};
|
|
10770
10704
|
}
|
|
10771
10705
|
export interface StateMachineProps {
|
|
@@ -10834,7 +10768,7 @@ export interface Operator {
|
|
|
10834
10768
|
TimestampGreaterThanEquals?: string;
|
|
10835
10769
|
TimestampLessThan?: string;
|
|
10836
10770
|
TimestampLessThanEquals?: string;
|
|
10837
|
-
[k: string]:
|
|
10771
|
+
[k: string]: any;
|
|
10838
10772
|
}
|
|
10839
10773
|
export interface Fail {
|
|
10840
10774
|
Type: string;
|
|
@@ -10855,20 +10789,18 @@ export interface StateMachineMap {
|
|
|
10855
10789
|
ItemsPath?: string;
|
|
10856
10790
|
MaxConcurrency?: number;
|
|
10857
10791
|
Iterator: StpStateMachine;
|
|
10858
|
-
Parameters?:
|
|
10859
|
-
[k: string]: unknown;
|
|
10860
|
-
};
|
|
10792
|
+
Parameters?: any;
|
|
10861
10793
|
Retry?: {
|
|
10862
10794
|
ErrorEquals: string[];
|
|
10863
10795
|
IntervalSeconds?: number;
|
|
10864
10796
|
MaxAttempts?: number;
|
|
10865
10797
|
BackoffRate?: number;
|
|
10866
|
-
[k: string]:
|
|
10798
|
+
[k: string]: any;
|
|
10867
10799
|
}[];
|
|
10868
10800
|
Catch?: {
|
|
10869
10801
|
ErrorEquals: string[];
|
|
10870
10802
|
Next: string;
|
|
10871
|
-
[k: string]:
|
|
10803
|
+
[k: string]: any;
|
|
10872
10804
|
}[];
|
|
10873
10805
|
}
|
|
10874
10806
|
export interface StpStateMachine {
|
|
@@ -10891,12 +10823,12 @@ export interface Parallel {
|
|
|
10891
10823
|
IntervalSeconds?: number;
|
|
10892
10824
|
MaxAttempts?: number;
|
|
10893
10825
|
BackoffRate?: number;
|
|
10894
|
-
[k: string]:
|
|
10826
|
+
[k: string]: any;
|
|
10895
10827
|
}[];
|
|
10896
10828
|
Catch?: {
|
|
10897
10829
|
ErrorEquals: string[];
|
|
10898
10830
|
Next: string;
|
|
10899
|
-
[k: string]:
|
|
10831
|
+
[k: string]: any;
|
|
10900
10832
|
}[];
|
|
10901
10833
|
}
|
|
10902
10834
|
export interface Pass {
|
|
@@ -10907,10 +10839,8 @@ export interface Pass {
|
|
|
10907
10839
|
OutputPath?: string;
|
|
10908
10840
|
InputPath?: string;
|
|
10909
10841
|
ResultPath?: string;
|
|
10910
|
-
Parameters?:
|
|
10911
|
-
|
|
10912
|
-
};
|
|
10913
|
-
Result?: unknown;
|
|
10842
|
+
Parameters?: any;
|
|
10843
|
+
Result?: any;
|
|
10914
10844
|
}
|
|
10915
10845
|
export interface Succeed {
|
|
10916
10846
|
Type: string;
|
|
@@ -10925,7 +10855,7 @@ export interface Task {
|
|
|
10925
10855
|
InputPath?: string;
|
|
10926
10856
|
Resource:
|
|
10927
10857
|
| {
|
|
10928
|
-
[k: string]:
|
|
10858
|
+
[k: string]: any;
|
|
10929
10859
|
}
|
|
10930
10860
|
| string;
|
|
10931
10861
|
ResultPath?: string;
|
|
@@ -10934,18 +10864,16 @@ export interface Task {
|
|
|
10934
10864
|
IntervalSeconds?: number;
|
|
10935
10865
|
MaxAttempts?: number;
|
|
10936
10866
|
BackoffRate?: number;
|
|
10937
|
-
[k: string]:
|
|
10867
|
+
[k: string]: any;
|
|
10938
10868
|
}[];
|
|
10939
10869
|
Catch?: {
|
|
10940
10870
|
ErrorEquals: string[];
|
|
10941
10871
|
Next: string;
|
|
10942
|
-
[k: string]:
|
|
10872
|
+
[k: string]: any;
|
|
10943
10873
|
}[];
|
|
10944
10874
|
TimeoutSeconds?: number;
|
|
10945
10875
|
HeartbeatSeconds?: number;
|
|
10946
|
-
Parameters?:
|
|
10947
|
-
[k: string]: unknown;
|
|
10948
|
-
};
|
|
10876
|
+
Parameters?: any;
|
|
10949
10877
|
}
|
|
10950
10878
|
export interface Wait {
|
|
10951
10879
|
Type: string;
|
|
@@ -11253,9 +11181,7 @@ export interface RedisCluster {
|
|
|
11253
11181
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
11254
11182
|
*/
|
|
11255
11183
|
overrides?: {
|
|
11256
|
-
[k: string]:
|
|
11257
|
-
[k: string]: unknown;
|
|
11258
|
-
};
|
|
11184
|
+
[k: string]: any;
|
|
11259
11185
|
};
|
|
11260
11186
|
}
|
|
11261
11187
|
export interface RedisClusterProps {
|
|
@@ -11533,9 +11459,7 @@ export interface CustomResourceInstance {
|
|
|
11533
11459
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
11534
11460
|
*/
|
|
11535
11461
|
overrides?: {
|
|
11536
|
-
[k: string]:
|
|
11537
|
-
[k: string]: unknown;
|
|
11538
|
-
};
|
|
11462
|
+
[k: string]: any;
|
|
11539
11463
|
};
|
|
11540
11464
|
}
|
|
11541
11465
|
export interface CustomResourceInstanceProps {
|
|
@@ -11550,9 +11474,7 @@ export interface CustomResourceInstanceProps {
|
|
|
11550
11474
|
*
|
|
11551
11475
|
* These properties will be accessible to the custom resource Lambda function during execution.
|
|
11552
11476
|
*/
|
|
11553
|
-
resourceProperties:
|
|
11554
|
-
[k: string]: unknown;
|
|
11555
|
-
};
|
|
11477
|
+
resourceProperties: any;
|
|
11556
11478
|
}
|
|
11557
11479
|
/**
|
|
11558
11480
|
* #### Custom resource definition
|
|
@@ -11578,9 +11500,7 @@ export interface CustomResourceDefinition {
|
|
|
11578
11500
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
11579
11501
|
*/
|
|
11580
11502
|
overrides?: {
|
|
11581
|
-
[k: string]:
|
|
11582
|
-
[k: string]: unknown;
|
|
11583
|
-
};
|
|
11503
|
+
[k: string]: any;
|
|
11584
11504
|
};
|
|
11585
11505
|
}
|
|
11586
11506
|
export interface CustomResourceDefinitionProps {
|
|
@@ -11845,9 +11765,7 @@ export interface UpstashRedis {
|
|
|
11845
11765
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
11846
11766
|
*/
|
|
11847
11767
|
overrides?: {
|
|
11848
|
-
[k: string]:
|
|
11849
|
-
[k: string]: unknown;
|
|
11850
|
-
};
|
|
11768
|
+
[k: string]: any;
|
|
11851
11769
|
};
|
|
11852
11770
|
}
|
|
11853
11771
|
export interface UpstashRedisProps {
|
|
@@ -11884,9 +11802,7 @@ export interface DeploymentScript {
|
|
|
11884
11802
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
11885
11803
|
*/
|
|
11886
11804
|
overrides?: {
|
|
11887
|
-
[k: string]:
|
|
11888
|
-
[k: string]: unknown;
|
|
11889
|
-
};
|
|
11805
|
+
[k: string]: any;
|
|
11890
11806
|
};
|
|
11891
11807
|
}
|
|
11892
11808
|
export interface DeploymentScriptProps {
|
|
@@ -11958,9 +11874,7 @@ export interface DeploymentScriptProps {
|
|
|
11958
11874
|
*
|
|
11959
11875
|
* > **Note:** You cannot pass secrets using this property. Use `environment` variables for secrets.
|
|
11960
11876
|
*/
|
|
11961
|
-
parameters?:
|
|
11962
|
-
[k: string]: unknown;
|
|
11963
|
-
};
|
|
11877
|
+
parameters?: any;
|
|
11964
11878
|
/**
|
|
11965
11879
|
* #### The amount of memory (in MB) to allocate to the script's Lambda function.
|
|
11966
11880
|
*
|
|
@@ -12121,9 +12035,7 @@ export interface AwsCdkConstructProps {
|
|
|
12121
12035
|
*
|
|
12122
12036
|
* An object passed as props to the construct's constructor. This allows you to configure the construct with custom values.
|
|
12123
12037
|
*/
|
|
12124
|
-
constructProperties?:
|
|
12125
|
-
[k: string]: unknown;
|
|
12126
|
-
};
|
|
12038
|
+
constructProperties?: any;
|
|
12127
12039
|
}
|
|
12128
12040
|
/**
|
|
12129
12041
|
* #### SQS Queue
|
|
@@ -12147,9 +12059,7 @@ export interface SqsQueue {
|
|
|
12147
12059
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
12148
12060
|
*/
|
|
12149
12061
|
overrides?: {
|
|
12150
|
-
[k: string]:
|
|
12151
|
-
[k: string]: unknown;
|
|
12152
|
-
};
|
|
12062
|
+
[k: string]: any;
|
|
12153
12063
|
};
|
|
12154
12064
|
}
|
|
12155
12065
|
export interface SqsQueueProps {
|
|
@@ -12444,9 +12354,7 @@ export interface SqsQueuePolicyStatement {
|
|
|
12444
12354
|
*
|
|
12445
12355
|
* For more details, see the [AWS documentation](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-basic-examples-of-sqs-policies.html).
|
|
12446
12356
|
*/
|
|
12447
|
-
Condition?:
|
|
12448
|
-
[k: string]: unknown;
|
|
12449
|
-
};
|
|
12357
|
+
Condition?: any;
|
|
12450
12358
|
/**
|
|
12451
12359
|
* #### The principal (user, role, or service) to which you are allowing or denying access.
|
|
12452
12360
|
*
|
|
@@ -12454,9 +12362,7 @@ export interface SqsQueuePolicyStatement {
|
|
|
12454
12362
|
*
|
|
12455
12363
|
* For more details, see the [AWS documentation](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-basic-examples-of-sqs-policies.html).
|
|
12456
12364
|
*/
|
|
12457
|
-
Principal:
|
|
12458
|
-
[k: string]: unknown;
|
|
12459
|
-
};
|
|
12365
|
+
Principal: any;
|
|
12460
12366
|
}
|
|
12461
12367
|
/**
|
|
12462
12368
|
* #### Delivers messages to an SQS queue when an event matching a specified pattern is received by an event bus.
|
|
@@ -12519,9 +12425,7 @@ export interface SqsQueueEventBusIntegration {
|
|
|
12519
12425
|
* source: 'my-custom-event'
|
|
12520
12426
|
* ```
|
|
12521
12427
|
*/
|
|
12522
|
-
input?:
|
|
12523
|
-
[k: string]: unknown;
|
|
12524
|
-
};
|
|
12428
|
+
input?: any;
|
|
12525
12429
|
/**
|
|
12526
12430
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
12527
12431
|
*
|
|
@@ -12556,9 +12460,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
12556
12460
|
*
|
|
12557
12461
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
12558
12462
|
*/
|
|
12559
|
-
version?:
|
|
12560
|
-
[k: string]: unknown;
|
|
12561
|
-
};
|
|
12463
|
+
version?: any;
|
|
12562
12464
|
/**
|
|
12563
12465
|
* #### A filter for the `detail-type` field of the event.
|
|
12564
12466
|
*
|
|
@@ -12566,9 +12468,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
12566
12468
|
*
|
|
12567
12469
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
12568
12470
|
*/
|
|
12569
|
-
"detail-type"?:
|
|
12570
|
-
[k: string]: unknown;
|
|
12571
|
-
};
|
|
12471
|
+
"detail-type"?: any;
|
|
12572
12472
|
/**
|
|
12573
12473
|
* #### A filter for the `source` field of the event.
|
|
12574
12474
|
*
|
|
@@ -12576,9 +12476,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
12576
12476
|
*
|
|
12577
12477
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
12578
12478
|
*/
|
|
12579
|
-
source?:
|
|
12580
|
-
[k: string]: unknown;
|
|
12581
|
-
};
|
|
12479
|
+
source?: any;
|
|
12582
12480
|
/**
|
|
12583
12481
|
* #### A filter for the `account` field of the event.
|
|
12584
12482
|
*
|
|
@@ -12586,9 +12484,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
12586
12484
|
*
|
|
12587
12485
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
12588
12486
|
*/
|
|
12589
|
-
account?:
|
|
12590
|
-
[k: string]: unknown;
|
|
12591
|
-
};
|
|
12487
|
+
account?: any;
|
|
12592
12488
|
/**
|
|
12593
12489
|
* #### A filter for the `region` field of the event.
|
|
12594
12490
|
*
|
|
@@ -12596,9 +12492,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
12596
12492
|
*
|
|
12597
12493
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
12598
12494
|
*/
|
|
12599
|
-
region?:
|
|
12600
|
-
[k: string]: unknown;
|
|
12601
|
-
};
|
|
12495
|
+
region?: any;
|
|
12602
12496
|
/**
|
|
12603
12497
|
* #### A filter for the `resources` field of the event.
|
|
12604
12498
|
*
|
|
@@ -12606,9 +12500,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
12606
12500
|
*
|
|
12607
12501
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
12608
12502
|
*/
|
|
12609
|
-
resources?:
|
|
12610
|
-
[k: string]: unknown;
|
|
12611
|
-
};
|
|
12503
|
+
resources?: any;
|
|
12612
12504
|
/**
|
|
12613
12505
|
* #### A filter for the `detail` field of the event.
|
|
12614
12506
|
*
|
|
@@ -12617,9 +12509,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
12617
12509
|
* The `detail` field contains the main payload of the event as a JSON object. You can create complex matching rules based on its contents.
|
|
12618
12510
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
12619
12511
|
*/
|
|
12620
|
-
detail?:
|
|
12621
|
-
[k: string]: unknown;
|
|
12622
|
-
};
|
|
12512
|
+
detail?: any;
|
|
12623
12513
|
/**
|
|
12624
12514
|
* #### A filter for the `replay-name` field of the event.
|
|
12625
12515
|
*
|
|
@@ -12627,9 +12517,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
12627
12517
|
*
|
|
12628
12518
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
12629
12519
|
*/
|
|
12630
|
-
"replay-name"?:
|
|
12631
|
-
[k: string]: unknown;
|
|
12632
|
-
};
|
|
12520
|
+
"replay-name"?: any;
|
|
12633
12521
|
}
|
|
12634
12522
|
/**
|
|
12635
12523
|
* #### A destination for events that fail to be delivered to the target.
|
|
@@ -12675,9 +12563,7 @@ export interface EventInputTransformer2 {
|
|
|
12675
12563
|
*
|
|
12676
12564
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
12677
12565
|
*/
|
|
12678
|
-
inputPathsMap?:
|
|
12679
|
-
[k: string]: unknown;
|
|
12680
|
-
};
|
|
12566
|
+
inputPathsMap?: any;
|
|
12681
12567
|
/**
|
|
12682
12568
|
* #### A template for constructing a new event payload.
|
|
12683
12569
|
*
|
|
@@ -12685,9 +12571,7 @@ export interface EventInputTransformer2 {
|
|
|
12685
12571
|
*
|
|
12686
12572
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
12687
12573
|
*/
|
|
12688
|
-
inputTemplate:
|
|
12689
|
-
[k: string]: unknown;
|
|
12690
|
-
};
|
|
12574
|
+
inputTemplate: any;
|
|
12691
12575
|
}
|
|
12692
12576
|
/**
|
|
12693
12577
|
* #### Simple Notification Service (SNS) Topic
|
|
@@ -12711,9 +12595,7 @@ export interface SnsTopic {
|
|
|
12711
12595
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
12712
12596
|
*/
|
|
12713
12597
|
overrides?: {
|
|
12714
|
-
[k: string]:
|
|
12715
|
-
[k: string]: unknown;
|
|
12716
|
-
};
|
|
12598
|
+
[k: string]: any;
|
|
12717
12599
|
};
|
|
12718
12600
|
}
|
|
12719
12601
|
export interface SnsTopicProps {
|
|
@@ -12775,9 +12657,7 @@ export interface HostingBucket {
|
|
|
12775
12657
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
12776
12658
|
*/
|
|
12777
12659
|
overrides?: {
|
|
12778
|
-
[k: string]:
|
|
12779
|
-
[k: string]: unknown;
|
|
12780
|
-
};
|
|
12660
|
+
[k: string]: any;
|
|
12781
12661
|
};
|
|
12782
12662
|
}
|
|
12783
12663
|
export interface HostingBucketProps {
|
|
@@ -13070,9 +12950,7 @@ export interface WebAppFirewall {
|
|
|
13070
12950
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
13071
12951
|
*/
|
|
13072
12952
|
overrides?: {
|
|
13073
|
-
[k: string]:
|
|
13074
|
-
[k: string]: unknown;
|
|
13075
|
-
};
|
|
12953
|
+
[k: string]: any;
|
|
13076
12954
|
};
|
|
13077
12955
|
}
|
|
13078
12956
|
export interface WebAppFirewallProps {
|
|
@@ -13393,9 +13271,7 @@ export interface NextjsWeb {
|
|
|
13393
13271
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
13394
13272
|
*/
|
|
13395
13273
|
overrides?: {
|
|
13396
|
-
[k: string]:
|
|
13397
|
-
[k: string]: unknown;
|
|
13398
|
-
};
|
|
13274
|
+
[k: string]: any;
|
|
13399
13275
|
};
|
|
13400
13276
|
}
|
|
13401
13277
|
export interface NextjsWebProps {
|
|
@@ -13697,9 +13573,7 @@ export interface OpenSearchDomain {
|
|
|
13697
13573
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
13698
13574
|
*/
|
|
13699
13575
|
overrides?: {
|
|
13700
|
-
[k: string]:
|
|
13701
|
-
[k: string]: unknown;
|
|
13702
|
-
};
|
|
13576
|
+
[k: string]: any;
|
|
13703
13577
|
};
|
|
13704
13578
|
}
|
|
13705
13579
|
export interface OpenSearchDomainProps {
|
|
@@ -14015,9 +13889,7 @@ export interface EfsFilesystem {
|
|
|
14015
13889
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
14016
13890
|
*/
|
|
14017
13891
|
overrides?: {
|
|
14018
|
-
[k: string]:
|
|
14019
|
-
[k: string]: unknown;
|
|
14020
|
-
};
|
|
13892
|
+
[k: string]: any;
|
|
14021
13893
|
};
|
|
14022
13894
|
}
|
|
14023
13895
|
export interface EfsFilesystemProps {
|
|
@@ -14081,9 +13953,7 @@ export interface LambdaFunction {
|
|
|
14081
13953
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
14082
13954
|
*/
|
|
14083
13955
|
overrides?: {
|
|
14084
|
-
[k: string]:
|
|
14085
|
-
[k: string]: unknown;
|
|
14086
|
-
};
|
|
13956
|
+
[k: string]: any;
|
|
14087
13957
|
};
|
|
14088
13958
|
}
|
|
14089
13959
|
export interface LambdaFunctionProps {
|
|
@@ -15027,9 +14897,7 @@ export interface EdgeLambdaFunction {
|
|
|
15027
14897
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
15028
14898
|
*/
|
|
15029
14899
|
overrides?: {
|
|
15030
|
-
[k: string]:
|
|
15031
|
-
[k: string]: unknown;
|
|
15032
|
-
};
|
|
14900
|
+
[k: string]: any;
|
|
15033
14901
|
};
|
|
15034
14902
|
}
|
|
15035
14903
|
export interface EdgeLambdaFunctionProps {
|
|
@@ -15167,12 +15035,8 @@ export interface LambdaFunctionLogging2 {
|
|
|
15167
15035
|
export interface Default {
|
|
15168
15036
|
Type: string;
|
|
15169
15037
|
DependsOn?: string[] | IntrinsicFunction | string;
|
|
15170
|
-
Properties?:
|
|
15171
|
-
|
|
15172
|
-
};
|
|
15173
|
-
Metadata?: {
|
|
15174
|
-
[k: string]: unknown;
|
|
15175
|
-
};
|
|
15038
|
+
Properties?: any;
|
|
15039
|
+
Metadata?: any;
|
|
15176
15040
|
CreationPolicy?: CreationPolicy;
|
|
15177
15041
|
DeletionPolicy?: DeletionPolicy;
|
|
15178
15042
|
UpdatePolicy?: UpdatePolicy;
|
|
@@ -15180,7 +15044,7 @@ export interface Default {
|
|
|
15180
15044
|
}
|
|
15181
15045
|
export interface IntrinsicFunction {
|
|
15182
15046
|
name: string;
|
|
15183
|
-
payload:
|
|
15047
|
+
payload: any;
|
|
15184
15048
|
}
|
|
15185
15049
|
export interface CreationPolicy {
|
|
15186
15050
|
AutoScalingCreationPolicy?: {
|
|
@@ -15311,9 +15175,7 @@ export interface ContainerWorkload {
|
|
|
15311
15175
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
15312
15176
|
*/
|
|
15313
15177
|
overrides?: {
|
|
15314
|
-
[k: string]:
|
|
15315
|
-
[k: string]: unknown;
|
|
15316
|
-
};
|
|
15178
|
+
[k: string]: any;
|
|
15317
15179
|
};
|
|
15318
15180
|
}
|
|
15319
15181
|
export interface ContainerWorkloadProps {
|
|
@@ -16831,9 +16693,7 @@ export interface StpIamRoleStatement {
|
|
|
16831
16693
|
*
|
|
16832
16694
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
16833
16695
|
*/
|
|
16834
|
-
Condition?:
|
|
16835
|
-
[k: string]: unknown;
|
|
16836
|
-
};
|
|
16696
|
+
Condition?: any;
|
|
16837
16697
|
/**
|
|
16838
16698
|
* #### Resource
|
|
16839
16699
|
*
|
|
@@ -16870,9 +16730,7 @@ export interface BatchJob {
|
|
|
16870
16730
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
16871
16731
|
*/
|
|
16872
16732
|
overrides?: {
|
|
16873
|
-
[k: string]:
|
|
16874
|
-
[k: string]: unknown;
|
|
16875
|
-
};
|
|
16733
|
+
[k: string]: any;
|
|
16876
16734
|
};
|
|
16877
16735
|
}
|
|
16878
16736
|
export interface BatchJobProps {
|
|
@@ -17469,9 +17327,7 @@ export interface SnsIntegration {
|
|
|
17469
17327
|
* If you need to filter based on the message content, consider using an EventBridge event bus instead.
|
|
17470
17328
|
* For more details on filter policies, see the [AWS documentation](https://docs.aws.amazon.com/sns/latest/dg/sns-subscription-filter-policies.html).
|
|
17471
17329
|
*/
|
|
17472
|
-
filterPolicy?:
|
|
17473
|
-
[k: string]: unknown;
|
|
17474
|
-
};
|
|
17330
|
+
filterPolicy?: any;
|
|
17475
17331
|
onDeliveryFailure?: SnsOnDeliveryFailure;
|
|
17476
17332
|
};
|
|
17477
17333
|
}
|
|
@@ -17825,9 +17681,7 @@ export interface ScheduleIntegration {
|
|
|
17825
17681
|
* source: 'my-scheduled-event'
|
|
17826
17682
|
* ```
|
|
17827
17683
|
*/
|
|
17828
|
-
input?:
|
|
17829
|
-
[k: string]: unknown;
|
|
17830
|
-
};
|
|
17684
|
+
input?: any;
|
|
17831
17685
|
/**
|
|
17832
17686
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
17833
17687
|
*
|
|
@@ -17872,9 +17726,7 @@ export interface EventInputTransformer {
|
|
|
17872
17726
|
*
|
|
17873
17727
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
17874
17728
|
*/
|
|
17875
|
-
inputPathsMap?:
|
|
17876
|
-
[k: string]: unknown;
|
|
17877
|
-
};
|
|
17729
|
+
inputPathsMap?: any;
|
|
17878
17730
|
/**
|
|
17879
17731
|
* #### A template for constructing a new event payload.
|
|
17880
17732
|
*
|
|
@@ -17882,9 +17734,7 @@ export interface EventInputTransformer {
|
|
|
17882
17734
|
*
|
|
17883
17735
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
17884
17736
|
*/
|
|
17885
|
-
inputTemplate:
|
|
17886
|
-
[k: string]: unknown;
|
|
17887
|
-
};
|
|
17737
|
+
inputTemplate: any;
|
|
17888
17738
|
}
|
|
17889
17739
|
/**
|
|
17890
17740
|
* #### Triggers a function when a new log record is added to a CloudWatch log group.
|
|
@@ -18022,9 +17872,7 @@ export interface EventBusIntegration {
|
|
|
18022
17872
|
* source: 'my-custom-event'
|
|
18023
17873
|
* ```
|
|
18024
17874
|
*/
|
|
18025
|
-
input?:
|
|
18026
|
-
[k: string]: unknown;
|
|
18027
|
-
};
|
|
17875
|
+
input?: any;
|
|
18028
17876
|
/**
|
|
18029
17877
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
18030
17878
|
*
|
|
@@ -18059,9 +17907,7 @@ export interface EventBusIntegrationPattern {
|
|
|
18059
17907
|
*
|
|
18060
17908
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
18061
17909
|
*/
|
|
18062
|
-
version?:
|
|
18063
|
-
[k: string]: unknown;
|
|
18064
|
-
};
|
|
17910
|
+
version?: any;
|
|
18065
17911
|
/**
|
|
18066
17912
|
* #### A filter for the `detail-type` field of the event.
|
|
18067
17913
|
*
|
|
@@ -18069,9 +17915,7 @@ export interface EventBusIntegrationPattern {
|
|
|
18069
17915
|
*
|
|
18070
17916
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
18071
17917
|
*/
|
|
18072
|
-
"detail-type"?:
|
|
18073
|
-
[k: string]: unknown;
|
|
18074
|
-
};
|
|
17918
|
+
"detail-type"?: any;
|
|
18075
17919
|
/**
|
|
18076
17920
|
* #### A filter for the `source` field of the event.
|
|
18077
17921
|
*
|
|
@@ -18079,9 +17923,7 @@ export interface EventBusIntegrationPattern {
|
|
|
18079
17923
|
*
|
|
18080
17924
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
18081
17925
|
*/
|
|
18082
|
-
source?:
|
|
18083
|
-
[k: string]: unknown;
|
|
18084
|
-
};
|
|
17926
|
+
source?: any;
|
|
18085
17927
|
/**
|
|
18086
17928
|
* #### A filter for the `account` field of the event.
|
|
18087
17929
|
*
|
|
@@ -18089,9 +17931,7 @@ export interface EventBusIntegrationPattern {
|
|
|
18089
17931
|
*
|
|
18090
17932
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
18091
17933
|
*/
|
|
18092
|
-
account?:
|
|
18093
|
-
[k: string]: unknown;
|
|
18094
|
-
};
|
|
17934
|
+
account?: any;
|
|
18095
17935
|
/**
|
|
18096
17936
|
* #### A filter for the `region` field of the event.
|
|
18097
17937
|
*
|
|
@@ -18099,9 +17939,7 @@ export interface EventBusIntegrationPattern {
|
|
|
18099
17939
|
*
|
|
18100
17940
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
18101
17941
|
*/
|
|
18102
|
-
region?:
|
|
18103
|
-
[k: string]: unknown;
|
|
18104
|
-
};
|
|
17942
|
+
region?: any;
|
|
18105
17943
|
/**
|
|
18106
17944
|
* #### A filter for the `resources` field of the event.
|
|
18107
17945
|
*
|
|
@@ -18109,9 +17947,7 @@ export interface EventBusIntegrationPattern {
|
|
|
18109
17947
|
*
|
|
18110
17948
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
18111
17949
|
*/
|
|
18112
|
-
resources?:
|
|
18113
|
-
[k: string]: unknown;
|
|
18114
|
-
};
|
|
17950
|
+
resources?: any;
|
|
18115
17951
|
/**
|
|
18116
17952
|
* #### A filter for the `detail` field of the event.
|
|
18117
17953
|
*
|
|
@@ -18120,9 +17956,7 @@ export interface EventBusIntegrationPattern {
|
|
|
18120
17956
|
* The `detail` field contains the main payload of the event as a JSON object. You can create complex matching rules based on its contents.
|
|
18121
17957
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
18122
17958
|
*/
|
|
18123
|
-
detail?:
|
|
18124
|
-
[k: string]: unknown;
|
|
18125
|
-
};
|
|
17959
|
+
detail?: any;
|
|
18126
17960
|
/**
|
|
18127
17961
|
* #### A filter for the `replay-name` field of the event.
|
|
18128
17962
|
*
|
|
@@ -18130,9 +17964,7 @@ export interface EventBusIntegrationPattern {
|
|
|
18130
17964
|
*
|
|
18131
17965
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
18132
17966
|
*/
|
|
18133
|
-
"replay-name"?:
|
|
18134
|
-
[k: string]: unknown;
|
|
18135
|
-
};
|
|
17967
|
+
"replay-name"?: any;
|
|
18136
17968
|
}
|
|
18137
17969
|
/**
|
|
18138
17970
|
* #### A destination for events that fail to be delivered to the target.
|
|
@@ -18178,9 +18010,7 @@ export interface EventInputTransformer1 {
|
|
|
18178
18010
|
*
|
|
18179
18011
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
18180
18012
|
*/
|
|
18181
|
-
inputPathsMap?:
|
|
18182
|
-
[k: string]: unknown;
|
|
18183
|
-
};
|
|
18013
|
+
inputPathsMap?: any;
|
|
18184
18014
|
/**
|
|
18185
18015
|
* #### A template for constructing a new event payload.
|
|
18186
18016
|
*
|
|
@@ -18188,9 +18018,7 @@ export interface EventInputTransformer1 {
|
|
|
18188
18018
|
*
|
|
18189
18019
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
18190
18020
|
*/
|
|
18191
|
-
inputTemplate:
|
|
18192
|
-
[k: string]: unknown;
|
|
18193
|
-
};
|
|
18021
|
+
inputTemplate: any;
|
|
18194
18022
|
}
|
|
18195
18023
|
/**
|
|
18196
18024
|
* #### Web Service
|
|
@@ -18215,9 +18043,7 @@ export interface WebService {
|
|
|
18215
18043
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
18216
18044
|
*/
|
|
18217
18045
|
overrides?: {
|
|
18218
|
-
[k: string]:
|
|
18219
|
-
[k: string]: unknown;
|
|
18220
|
-
};
|
|
18046
|
+
[k: string]: any;
|
|
18221
18047
|
};
|
|
18222
18048
|
}
|
|
18223
18049
|
export interface WebServiceProps {
|
|
@@ -20291,9 +20117,7 @@ export interface PrivateService {
|
|
|
20291
20117
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
20292
20118
|
*/
|
|
20293
20119
|
overrides?: {
|
|
20294
|
-
[k: string]:
|
|
20295
|
-
[k: string]: unknown;
|
|
20296
|
-
};
|
|
20120
|
+
[k: string]: any;
|
|
20297
20121
|
};
|
|
20298
20122
|
}
|
|
20299
20123
|
export interface PrivateServiceProps {
|
|
@@ -20682,9 +20506,7 @@ export interface WorkerService {
|
|
|
20682
20506
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
20683
20507
|
*/
|
|
20684
20508
|
overrides?: {
|
|
20685
|
-
[k: string]:
|
|
20686
|
-
[k: string]: unknown;
|
|
20687
|
-
};
|
|
20509
|
+
[k: string]: any;
|
|
20688
20510
|
};
|
|
20689
20511
|
}
|
|
20690
20512
|
export interface WorkerServiceProps {
|
|
@@ -21053,9 +20875,7 @@ export interface RelationalDatabase {
|
|
|
21053
20875
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
21054
20876
|
*/
|
|
21055
20877
|
overrides?: {
|
|
21056
|
-
[k: string]:
|
|
21057
|
-
[k: string]: unknown;
|
|
21058
|
-
};
|
|
20878
|
+
[k: string]: any;
|
|
21059
20879
|
};
|
|
21060
20880
|
}
|
|
21061
20881
|
export interface RelationalDatabaseProps {
|
|
@@ -22038,9 +21858,7 @@ export interface ApplicationLoadBalancer {
|
|
|
22038
21858
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
22039
21859
|
*/
|
|
22040
21860
|
overrides?: {
|
|
22041
|
-
[k: string]:
|
|
22042
|
-
[k: string]: unknown;
|
|
22043
|
-
};
|
|
21861
|
+
[k: string]: any;
|
|
22044
21862
|
};
|
|
22045
21863
|
}
|
|
22046
21864
|
export interface ApplicationLoadBalancerProps {
|
|
@@ -22557,9 +22375,7 @@ export interface NetworkLoadBalancer {
|
|
|
22557
22375
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
22558
22376
|
*/
|
|
22559
22377
|
overrides?: {
|
|
22560
|
-
[k: string]:
|
|
22561
|
-
[k: string]: unknown;
|
|
22562
|
-
};
|
|
22378
|
+
[k: string]: any;
|
|
22563
22379
|
};
|
|
22564
22380
|
}
|
|
22565
22381
|
export interface NetworkLoadBalancerProps {
|
|
@@ -22658,9 +22474,7 @@ export interface HttpApiGateway {
|
|
|
22658
22474
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
22659
22475
|
*/
|
|
22660
22476
|
overrides?: {
|
|
22661
|
-
[k: string]:
|
|
22662
|
-
[k: string]: unknown;
|
|
22663
|
-
};
|
|
22477
|
+
[k: string]: any;
|
|
22664
22478
|
};
|
|
22665
22479
|
}
|
|
22666
22480
|
export interface HttpApiGatewayProps {
|
|
@@ -22952,9 +22766,7 @@ export interface Bucket {
|
|
|
22952
22766
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
22953
22767
|
*/
|
|
22954
22768
|
overrides?: {
|
|
22955
|
-
[k: string]:
|
|
22956
|
-
[k: string]: unknown;
|
|
22957
|
-
};
|
|
22769
|
+
[k: string]: any;
|
|
22958
22770
|
};
|
|
22959
22771
|
}
|
|
22960
22772
|
export interface BucketProps {
|
|
@@ -23153,7 +22965,7 @@ export interface BucketAccessibility {
|
|
|
23153
22965
|
accessPolicyStatements?: BucketPolicyIamRoleStatement[];
|
|
23154
22966
|
}
|
|
23155
22967
|
export interface BucketPolicyIamRoleStatement {
|
|
23156
|
-
Principal:
|
|
22968
|
+
Principal: any;
|
|
23157
22969
|
/**
|
|
23158
22970
|
* #### Statement ID (Sid)
|
|
23159
22971
|
*
|
|
@@ -23185,9 +22997,7 @@ export interface BucketPolicyIamRoleStatement {
|
|
|
23185
22997
|
*
|
|
23186
22998
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
23187
22999
|
*/
|
|
23188
|
-
Condition?:
|
|
23189
|
-
[k: string]: unknown;
|
|
23190
|
-
};
|
|
23000
|
+
Condition?: any;
|
|
23191
23001
|
/**
|
|
23192
23002
|
* #### Resource
|
|
23193
23003
|
*
|
|
@@ -23742,9 +23552,7 @@ export interface UserAuthPool {
|
|
|
23742
23552
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
23743
23553
|
*/
|
|
23744
23554
|
overrides?: {
|
|
23745
|
-
[k: string]:
|
|
23746
|
-
[k: string]: unknown;
|
|
23747
|
-
};
|
|
23555
|
+
[k: string]: any;
|
|
23748
23556
|
};
|
|
23749
23557
|
}
|
|
23750
23558
|
export interface UserAuthPoolProps {
|
|
@@ -24428,9 +24236,7 @@ export interface EventBus {
|
|
|
24428
24236
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
24429
24237
|
*/
|
|
24430
24238
|
overrides?: {
|
|
24431
|
-
[k: string]:
|
|
24432
|
-
[k: string]: unknown;
|
|
24433
|
-
};
|
|
24239
|
+
[k: string]: any;
|
|
24434
24240
|
};
|
|
24435
24241
|
}
|
|
24436
24242
|
export interface EventBusProps {
|
|
@@ -24496,9 +24302,7 @@ export interface Bastion {
|
|
|
24496
24302
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
24497
24303
|
*/
|
|
24498
24304
|
overrides?: {
|
|
24499
|
-
[k: string]:
|
|
24500
|
-
[k: string]: unknown;
|
|
24501
|
-
};
|
|
24305
|
+
[k: string]: any;
|
|
24502
24306
|
};
|
|
24503
24307
|
}
|
|
24504
24308
|
export interface BastionProps {
|
|
@@ -24671,9 +24475,7 @@ export interface DynamoDbTable {
|
|
|
24671
24475
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
24672
24476
|
*/
|
|
24673
24477
|
overrides?: {
|
|
24674
|
-
[k: string]:
|
|
24675
|
-
[k: string]: unknown;
|
|
24676
|
-
};
|
|
24478
|
+
[k: string]: any;
|
|
24677
24479
|
};
|
|
24678
24480
|
}
|
|
24679
24481
|
export interface DynamoDbTableProps {
|
|
@@ -24978,9 +24780,7 @@ export interface StateMachine {
|
|
|
24978
24780
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
24979
24781
|
*/
|
|
24980
24782
|
overrides?: {
|
|
24981
|
-
[k: string]:
|
|
24982
|
-
[k: string]: unknown;
|
|
24983
|
-
};
|
|
24783
|
+
[k: string]: any;
|
|
24984
24784
|
};
|
|
24985
24785
|
}
|
|
24986
24786
|
export interface StateMachineProps {
|
|
@@ -25049,7 +24849,7 @@ export interface Operator {
|
|
|
25049
24849
|
TimestampGreaterThanEquals?: string;
|
|
25050
24850
|
TimestampLessThan?: string;
|
|
25051
24851
|
TimestampLessThanEquals?: string;
|
|
25052
|
-
[k: string]:
|
|
24852
|
+
[k: string]: any;
|
|
25053
24853
|
}
|
|
25054
24854
|
export interface Fail {
|
|
25055
24855
|
Type: string;
|
|
@@ -25070,20 +24870,18 @@ export interface StateMachineMap {
|
|
|
25070
24870
|
ItemsPath?: string;
|
|
25071
24871
|
MaxConcurrency?: number;
|
|
25072
24872
|
Iterator: StpStateMachine;
|
|
25073
|
-
Parameters?:
|
|
25074
|
-
[k: string]: unknown;
|
|
25075
|
-
};
|
|
24873
|
+
Parameters?: any;
|
|
25076
24874
|
Retry?: {
|
|
25077
24875
|
ErrorEquals: string[];
|
|
25078
24876
|
IntervalSeconds?: number;
|
|
25079
24877
|
MaxAttempts?: number;
|
|
25080
24878
|
BackoffRate?: number;
|
|
25081
|
-
[k: string]:
|
|
24879
|
+
[k: string]: any;
|
|
25082
24880
|
}[];
|
|
25083
24881
|
Catch?: {
|
|
25084
24882
|
ErrorEquals: string[];
|
|
25085
24883
|
Next: string;
|
|
25086
|
-
[k: string]:
|
|
24884
|
+
[k: string]: any;
|
|
25087
24885
|
}[];
|
|
25088
24886
|
}
|
|
25089
24887
|
export interface StpStateMachine {
|
|
@@ -25106,12 +24904,12 @@ export interface Parallel {
|
|
|
25106
24904
|
IntervalSeconds?: number;
|
|
25107
24905
|
MaxAttempts?: number;
|
|
25108
24906
|
BackoffRate?: number;
|
|
25109
|
-
[k: string]:
|
|
24907
|
+
[k: string]: any;
|
|
25110
24908
|
}[];
|
|
25111
24909
|
Catch?: {
|
|
25112
24910
|
ErrorEquals: string[];
|
|
25113
24911
|
Next: string;
|
|
25114
|
-
[k: string]:
|
|
24912
|
+
[k: string]: any;
|
|
25115
24913
|
}[];
|
|
25116
24914
|
}
|
|
25117
24915
|
export interface Pass {
|
|
@@ -25122,10 +24920,8 @@ export interface Pass {
|
|
|
25122
24920
|
OutputPath?: string;
|
|
25123
24921
|
InputPath?: string;
|
|
25124
24922
|
ResultPath?: string;
|
|
25125
|
-
Parameters?:
|
|
25126
|
-
|
|
25127
|
-
};
|
|
25128
|
-
Result?: unknown;
|
|
24923
|
+
Parameters?: any;
|
|
24924
|
+
Result?: any;
|
|
25129
24925
|
}
|
|
25130
24926
|
export interface Succeed {
|
|
25131
24927
|
Type: string;
|
|
@@ -25140,7 +24936,7 @@ export interface Task {
|
|
|
25140
24936
|
InputPath?: string;
|
|
25141
24937
|
Resource:
|
|
25142
24938
|
| {
|
|
25143
|
-
[k: string]:
|
|
24939
|
+
[k: string]: any;
|
|
25144
24940
|
}
|
|
25145
24941
|
| string;
|
|
25146
24942
|
ResultPath?: string;
|
|
@@ -25149,18 +24945,16 @@ export interface Task {
|
|
|
25149
24945
|
IntervalSeconds?: number;
|
|
25150
24946
|
MaxAttempts?: number;
|
|
25151
24947
|
BackoffRate?: number;
|
|
25152
|
-
[k: string]:
|
|
24948
|
+
[k: string]: any;
|
|
25153
24949
|
}[];
|
|
25154
24950
|
Catch?: {
|
|
25155
24951
|
ErrorEquals: string[];
|
|
25156
24952
|
Next: string;
|
|
25157
|
-
[k: string]:
|
|
24953
|
+
[k: string]: any;
|
|
25158
24954
|
}[];
|
|
25159
24955
|
TimeoutSeconds?: number;
|
|
25160
24956
|
HeartbeatSeconds?: number;
|
|
25161
|
-
Parameters?:
|
|
25162
|
-
[k: string]: unknown;
|
|
25163
|
-
};
|
|
24957
|
+
Parameters?: any;
|
|
25164
24958
|
}
|
|
25165
24959
|
export interface Wait {
|
|
25166
24960
|
Type: string;
|
|
@@ -25468,9 +25262,7 @@ export interface RedisCluster {
|
|
|
25468
25262
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
25469
25263
|
*/
|
|
25470
25264
|
overrides?: {
|
|
25471
|
-
[k: string]:
|
|
25472
|
-
[k: string]: unknown;
|
|
25473
|
-
};
|
|
25265
|
+
[k: string]: any;
|
|
25474
25266
|
};
|
|
25475
25267
|
}
|
|
25476
25268
|
export interface RedisClusterProps {
|
|
@@ -25748,9 +25540,7 @@ export interface CustomResourceInstance {
|
|
|
25748
25540
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
25749
25541
|
*/
|
|
25750
25542
|
overrides?: {
|
|
25751
|
-
[k: string]:
|
|
25752
|
-
[k: string]: unknown;
|
|
25753
|
-
};
|
|
25543
|
+
[k: string]: any;
|
|
25754
25544
|
};
|
|
25755
25545
|
}
|
|
25756
25546
|
export interface CustomResourceInstanceProps {
|
|
@@ -25765,9 +25555,7 @@ export interface CustomResourceInstanceProps {
|
|
|
25765
25555
|
*
|
|
25766
25556
|
* These properties will be accessible to the custom resource Lambda function during execution.
|
|
25767
25557
|
*/
|
|
25768
|
-
resourceProperties:
|
|
25769
|
-
[k: string]: unknown;
|
|
25770
|
-
};
|
|
25558
|
+
resourceProperties: any;
|
|
25771
25559
|
}
|
|
25772
25560
|
/**
|
|
25773
25561
|
* #### Custom resource definition
|
|
@@ -25793,9 +25581,7 @@ export interface CustomResourceDefinition {
|
|
|
25793
25581
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
25794
25582
|
*/
|
|
25795
25583
|
overrides?: {
|
|
25796
|
-
[k: string]:
|
|
25797
|
-
[k: string]: unknown;
|
|
25798
|
-
};
|
|
25584
|
+
[k: string]: any;
|
|
25799
25585
|
};
|
|
25800
25586
|
}
|
|
25801
25587
|
export interface CustomResourceDefinitionProps {
|
|
@@ -26060,9 +25846,7 @@ export interface UpstashRedis {
|
|
|
26060
25846
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
26061
25847
|
*/
|
|
26062
25848
|
overrides?: {
|
|
26063
|
-
[k: string]:
|
|
26064
|
-
[k: string]: unknown;
|
|
26065
|
-
};
|
|
25849
|
+
[k: string]: any;
|
|
26066
25850
|
};
|
|
26067
25851
|
}
|
|
26068
25852
|
export interface UpstashRedisProps {
|
|
@@ -26099,9 +25883,7 @@ export interface DeploymentScript {
|
|
|
26099
25883
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
26100
25884
|
*/
|
|
26101
25885
|
overrides?: {
|
|
26102
|
-
[k: string]:
|
|
26103
|
-
[k: string]: unknown;
|
|
26104
|
-
};
|
|
25886
|
+
[k: string]: any;
|
|
26105
25887
|
};
|
|
26106
25888
|
}
|
|
26107
25889
|
export interface DeploymentScriptProps {
|
|
@@ -26173,9 +25955,7 @@ export interface DeploymentScriptProps {
|
|
|
26173
25955
|
*
|
|
26174
25956
|
* > **Note:** You cannot pass secrets using this property. Use `environment` variables for secrets.
|
|
26175
25957
|
*/
|
|
26176
|
-
parameters?:
|
|
26177
|
-
[k: string]: unknown;
|
|
26178
|
-
};
|
|
25958
|
+
parameters?: any;
|
|
26179
25959
|
/**
|
|
26180
25960
|
* #### The amount of memory (in MB) to allocate to the script's Lambda function.
|
|
26181
25961
|
*
|
|
@@ -26336,9 +26116,7 @@ export interface AwsCdkConstructProps {
|
|
|
26336
26116
|
*
|
|
26337
26117
|
* An object passed as props to the construct's constructor. This allows you to configure the construct with custom values.
|
|
26338
26118
|
*/
|
|
26339
|
-
constructProperties?:
|
|
26340
|
-
[k: string]: unknown;
|
|
26341
|
-
};
|
|
26119
|
+
constructProperties?: any;
|
|
26342
26120
|
}
|
|
26343
26121
|
/**
|
|
26344
26122
|
* #### SQS Queue
|
|
@@ -26362,9 +26140,7 @@ export interface SqsQueue {
|
|
|
26362
26140
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
26363
26141
|
*/
|
|
26364
26142
|
overrides?: {
|
|
26365
|
-
[k: string]:
|
|
26366
|
-
[k: string]: unknown;
|
|
26367
|
-
};
|
|
26143
|
+
[k: string]: any;
|
|
26368
26144
|
};
|
|
26369
26145
|
}
|
|
26370
26146
|
export interface SqsQueueProps {
|
|
@@ -26659,9 +26435,7 @@ export interface SqsQueuePolicyStatement {
|
|
|
26659
26435
|
*
|
|
26660
26436
|
* For more details, see the [AWS documentation](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-basic-examples-of-sqs-policies.html).
|
|
26661
26437
|
*/
|
|
26662
|
-
Condition?:
|
|
26663
|
-
[k: string]: unknown;
|
|
26664
|
-
};
|
|
26438
|
+
Condition?: any;
|
|
26665
26439
|
/**
|
|
26666
26440
|
* #### The principal (user, role, or service) to which you are allowing or denying access.
|
|
26667
26441
|
*
|
|
@@ -26669,9 +26443,7 @@ export interface SqsQueuePolicyStatement {
|
|
|
26669
26443
|
*
|
|
26670
26444
|
* For more details, see the [AWS documentation](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-basic-examples-of-sqs-policies.html).
|
|
26671
26445
|
*/
|
|
26672
|
-
Principal:
|
|
26673
|
-
[k: string]: unknown;
|
|
26674
|
-
};
|
|
26446
|
+
Principal: any;
|
|
26675
26447
|
}
|
|
26676
26448
|
/**
|
|
26677
26449
|
* #### Delivers messages to an SQS queue when an event matching a specified pattern is received by an event bus.
|
|
@@ -26734,9 +26506,7 @@ export interface SqsQueueEventBusIntegration {
|
|
|
26734
26506
|
* source: 'my-custom-event'
|
|
26735
26507
|
* ```
|
|
26736
26508
|
*/
|
|
26737
|
-
input?:
|
|
26738
|
-
[k: string]: unknown;
|
|
26739
|
-
};
|
|
26509
|
+
input?: any;
|
|
26740
26510
|
/**
|
|
26741
26511
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
26742
26512
|
*
|
|
@@ -26771,9 +26541,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
26771
26541
|
*
|
|
26772
26542
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
26773
26543
|
*/
|
|
26774
|
-
version?:
|
|
26775
|
-
[k: string]: unknown;
|
|
26776
|
-
};
|
|
26544
|
+
version?: any;
|
|
26777
26545
|
/**
|
|
26778
26546
|
* #### A filter for the `detail-type` field of the event.
|
|
26779
26547
|
*
|
|
@@ -26781,9 +26549,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
26781
26549
|
*
|
|
26782
26550
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
26783
26551
|
*/
|
|
26784
|
-
"detail-type"?:
|
|
26785
|
-
[k: string]: unknown;
|
|
26786
|
-
};
|
|
26552
|
+
"detail-type"?: any;
|
|
26787
26553
|
/**
|
|
26788
26554
|
* #### A filter for the `source` field of the event.
|
|
26789
26555
|
*
|
|
@@ -26791,9 +26557,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
26791
26557
|
*
|
|
26792
26558
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
26793
26559
|
*/
|
|
26794
|
-
source?:
|
|
26795
|
-
[k: string]: unknown;
|
|
26796
|
-
};
|
|
26560
|
+
source?: any;
|
|
26797
26561
|
/**
|
|
26798
26562
|
* #### A filter for the `account` field of the event.
|
|
26799
26563
|
*
|
|
@@ -26801,9 +26565,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
26801
26565
|
*
|
|
26802
26566
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
26803
26567
|
*/
|
|
26804
|
-
account?:
|
|
26805
|
-
[k: string]: unknown;
|
|
26806
|
-
};
|
|
26568
|
+
account?: any;
|
|
26807
26569
|
/**
|
|
26808
26570
|
* #### A filter for the `region` field of the event.
|
|
26809
26571
|
*
|
|
@@ -26811,9 +26573,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
26811
26573
|
*
|
|
26812
26574
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
26813
26575
|
*/
|
|
26814
|
-
region?:
|
|
26815
|
-
[k: string]: unknown;
|
|
26816
|
-
};
|
|
26576
|
+
region?: any;
|
|
26817
26577
|
/**
|
|
26818
26578
|
* #### A filter for the `resources` field of the event.
|
|
26819
26579
|
*
|
|
@@ -26821,9 +26581,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
26821
26581
|
*
|
|
26822
26582
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
26823
26583
|
*/
|
|
26824
|
-
resources?:
|
|
26825
|
-
[k: string]: unknown;
|
|
26826
|
-
};
|
|
26584
|
+
resources?: any;
|
|
26827
26585
|
/**
|
|
26828
26586
|
* #### A filter for the `detail` field of the event.
|
|
26829
26587
|
*
|
|
@@ -26832,9 +26590,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
26832
26590
|
* The `detail` field contains the main payload of the event as a JSON object. You can create complex matching rules based on its contents.
|
|
26833
26591
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
26834
26592
|
*/
|
|
26835
|
-
detail?:
|
|
26836
|
-
[k: string]: unknown;
|
|
26837
|
-
};
|
|
26593
|
+
detail?: any;
|
|
26838
26594
|
/**
|
|
26839
26595
|
* #### A filter for the `replay-name` field of the event.
|
|
26840
26596
|
*
|
|
@@ -26842,9 +26598,7 @@ export interface EventBusIntegrationPattern1 {
|
|
|
26842
26598
|
*
|
|
26843
26599
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
26844
26600
|
*/
|
|
26845
|
-
"replay-name"?:
|
|
26846
|
-
[k: string]: unknown;
|
|
26847
|
-
};
|
|
26601
|
+
"replay-name"?: any;
|
|
26848
26602
|
}
|
|
26849
26603
|
/**
|
|
26850
26604
|
* #### A destination for events that fail to be delivered to the target.
|
|
@@ -26890,9 +26644,7 @@ export interface EventInputTransformer2 {
|
|
|
26890
26644
|
*
|
|
26891
26645
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
26892
26646
|
*/
|
|
26893
|
-
inputPathsMap?:
|
|
26894
|
-
[k: string]: unknown;
|
|
26895
|
-
};
|
|
26647
|
+
inputPathsMap?: any;
|
|
26896
26648
|
/**
|
|
26897
26649
|
* #### A template for constructing a new event payload.
|
|
26898
26650
|
*
|
|
@@ -26900,9 +26652,7 @@ export interface EventInputTransformer2 {
|
|
|
26900
26652
|
*
|
|
26901
26653
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
26902
26654
|
*/
|
|
26903
|
-
inputTemplate:
|
|
26904
|
-
[k: string]: unknown;
|
|
26905
|
-
};
|
|
26655
|
+
inputTemplate: any;
|
|
26906
26656
|
}
|
|
26907
26657
|
/**
|
|
26908
26658
|
* #### Simple Notification Service (SNS) Topic
|
|
@@ -26926,9 +26676,7 @@ export interface SnsTopic {
|
|
|
26926
26676
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
26927
26677
|
*/
|
|
26928
26678
|
overrides?: {
|
|
26929
|
-
[k: string]:
|
|
26930
|
-
[k: string]: unknown;
|
|
26931
|
-
};
|
|
26679
|
+
[k: string]: any;
|
|
26932
26680
|
};
|
|
26933
26681
|
}
|
|
26934
26682
|
export interface SnsTopicProps {
|
|
@@ -26990,9 +26738,7 @@ export interface HostingBucket {
|
|
|
26990
26738
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
26991
26739
|
*/
|
|
26992
26740
|
overrides?: {
|
|
26993
|
-
[k: string]:
|
|
26994
|
-
[k: string]: unknown;
|
|
26995
|
-
};
|
|
26741
|
+
[k: string]: any;
|
|
26996
26742
|
};
|
|
26997
26743
|
}
|
|
26998
26744
|
export interface HostingBucketProps {
|
|
@@ -27285,9 +27031,7 @@ export interface WebAppFirewall {
|
|
|
27285
27031
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
27286
27032
|
*/
|
|
27287
27033
|
overrides?: {
|
|
27288
|
-
[k: string]:
|
|
27289
|
-
[k: string]: unknown;
|
|
27290
|
-
};
|
|
27034
|
+
[k: string]: any;
|
|
27291
27035
|
};
|
|
27292
27036
|
}
|
|
27293
27037
|
export interface WebAppFirewallProps {
|
|
@@ -27608,9 +27352,7 @@ export interface NextjsWeb {
|
|
|
27608
27352
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
27609
27353
|
*/
|
|
27610
27354
|
overrides?: {
|
|
27611
|
-
[k: string]:
|
|
27612
|
-
[k: string]: unknown;
|
|
27613
|
-
};
|
|
27355
|
+
[k: string]: any;
|
|
27614
27356
|
};
|
|
27615
27357
|
}
|
|
27616
27358
|
export interface NextjsWebProps {
|
|
@@ -27912,9 +27654,7 @@ export interface OpenSearchDomain {
|
|
|
27912
27654
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
27913
27655
|
*/
|
|
27914
27656
|
overrides?: {
|
|
27915
|
-
[k: string]:
|
|
27916
|
-
[k: string]: unknown;
|
|
27917
|
-
};
|
|
27657
|
+
[k: string]: any;
|
|
27918
27658
|
};
|
|
27919
27659
|
}
|
|
27920
27660
|
export interface OpenSearchDomainProps {
|
|
@@ -28230,9 +27970,7 @@ export interface EfsFilesystem {
|
|
|
28230
27970
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
28231
27971
|
*/
|
|
28232
27972
|
overrides?: {
|
|
28233
|
-
[k: string]:
|
|
28234
|
-
[k: string]: unknown;
|
|
28235
|
-
};
|
|
27973
|
+
[k: string]: any;
|
|
28236
27974
|
};
|
|
28237
27975
|
}
|
|
28238
27976
|
export interface EfsFilesystemProps {
|
|
@@ -28296,9 +28034,7 @@ export interface LambdaFunction {
|
|
|
28296
28034
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
28297
28035
|
*/
|
|
28298
28036
|
overrides?: {
|
|
28299
|
-
[k: string]:
|
|
28300
|
-
[k: string]: unknown;
|
|
28301
|
-
};
|
|
28037
|
+
[k: string]: any;
|
|
28302
28038
|
};
|
|
28303
28039
|
}
|
|
28304
28040
|
export interface LambdaFunctionProps {
|
|
@@ -29260,9 +28996,7 @@ export interface EdgeLambdaFunction {
|
|
|
29260
28996
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
29261
28997
|
*/
|
|
29262
28998
|
overrides?: {
|
|
29263
|
-
[k: string]:
|
|
29264
|
-
[k: string]: unknown;
|
|
29265
|
-
};
|
|
28999
|
+
[k: string]: any;
|
|
29266
29000
|
};
|
|
29267
29001
|
}
|
|
29268
29002
|
export interface EdgeLambdaFunctionProps {
|
|
@@ -29425,9 +29159,7 @@ export interface LambdaFunction {
|
|
|
29425
29159
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
29426
29160
|
*/
|
|
29427
29161
|
overrides?: {
|
|
29428
|
-
[k: string]:
|
|
29429
|
-
[k: string]: unknown;
|
|
29430
|
-
};
|
|
29162
|
+
[k: string]: any;
|
|
29431
29163
|
};
|
|
29432
29164
|
}
|
|
29433
29165
|
export interface LambdaFunctionProps {
|
|
@@ -30231,9 +29963,7 @@ export interface SnsIntegration {
|
|
|
30231
29963
|
* If you need to filter based on the message content, consider using an EventBridge event bus instead.
|
|
30232
29964
|
* For more details on filter policies, see the [AWS documentation](https://docs.aws.amazon.com/sns/latest/dg/sns-subscription-filter-policies.html).
|
|
30233
29965
|
*/
|
|
30234
|
-
filterPolicy?:
|
|
30235
|
-
[k: string]: unknown;
|
|
30236
|
-
};
|
|
29966
|
+
filterPolicy?: any;
|
|
30237
29967
|
onDeliveryFailure?: SnsOnDeliveryFailure;
|
|
30238
29968
|
};
|
|
30239
29969
|
}
|
|
@@ -30587,9 +30317,7 @@ export interface ScheduleIntegration {
|
|
|
30587
30317
|
* source: 'my-scheduled-event'
|
|
30588
30318
|
* ```
|
|
30589
30319
|
*/
|
|
30590
|
-
input?:
|
|
30591
|
-
[k: string]: unknown;
|
|
30592
|
-
};
|
|
30320
|
+
input?: any;
|
|
30593
30321
|
/**
|
|
30594
30322
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
30595
30323
|
*
|
|
@@ -30634,9 +30362,7 @@ export interface EventInputTransformer {
|
|
|
30634
30362
|
*
|
|
30635
30363
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
30636
30364
|
*/
|
|
30637
|
-
inputPathsMap?:
|
|
30638
|
-
[k: string]: unknown;
|
|
30639
|
-
};
|
|
30365
|
+
inputPathsMap?: any;
|
|
30640
30366
|
/**
|
|
30641
30367
|
* #### A template for constructing a new event payload.
|
|
30642
30368
|
*
|
|
@@ -30644,9 +30370,7 @@ export interface EventInputTransformer {
|
|
|
30644
30370
|
*
|
|
30645
30371
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
30646
30372
|
*/
|
|
30647
|
-
inputTemplate:
|
|
30648
|
-
[k: string]: unknown;
|
|
30649
|
-
};
|
|
30373
|
+
inputTemplate: any;
|
|
30650
30374
|
}
|
|
30651
30375
|
export interface AlarmIntegration {
|
|
30652
30376
|
type: "cloudwatch-alarm";
|
|
@@ -30899,9 +30623,7 @@ export interface EventBusIntegration {
|
|
|
30899
30623
|
* source: 'my-custom-event'
|
|
30900
30624
|
* ```
|
|
30901
30625
|
*/
|
|
30902
|
-
input?:
|
|
30903
|
-
[k: string]: unknown;
|
|
30904
|
-
};
|
|
30626
|
+
input?: any;
|
|
30905
30627
|
/**
|
|
30906
30628
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
30907
30629
|
*
|
|
@@ -30936,9 +30658,7 @@ export interface EventBusIntegrationPattern {
|
|
|
30936
30658
|
*
|
|
30937
30659
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
30938
30660
|
*/
|
|
30939
|
-
version?:
|
|
30940
|
-
[k: string]: unknown;
|
|
30941
|
-
};
|
|
30661
|
+
version?: any;
|
|
30942
30662
|
/**
|
|
30943
30663
|
* #### A filter for the `detail-type` field of the event.
|
|
30944
30664
|
*
|
|
@@ -30946,9 +30666,7 @@ export interface EventBusIntegrationPattern {
|
|
|
30946
30666
|
*
|
|
30947
30667
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
30948
30668
|
*/
|
|
30949
|
-
"detail-type"?:
|
|
30950
|
-
[k: string]: unknown;
|
|
30951
|
-
};
|
|
30669
|
+
"detail-type"?: any;
|
|
30952
30670
|
/**
|
|
30953
30671
|
* #### A filter for the `source` field of the event.
|
|
30954
30672
|
*
|
|
@@ -30956,9 +30674,7 @@ export interface EventBusIntegrationPattern {
|
|
|
30956
30674
|
*
|
|
30957
30675
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
30958
30676
|
*/
|
|
30959
|
-
source?:
|
|
30960
|
-
[k: string]: unknown;
|
|
30961
|
-
};
|
|
30677
|
+
source?: any;
|
|
30962
30678
|
/**
|
|
30963
30679
|
* #### A filter for the `account` field of the event.
|
|
30964
30680
|
*
|
|
@@ -30966,9 +30682,7 @@ export interface EventBusIntegrationPattern {
|
|
|
30966
30682
|
*
|
|
30967
30683
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
30968
30684
|
*/
|
|
30969
|
-
account?:
|
|
30970
|
-
[k: string]: unknown;
|
|
30971
|
-
};
|
|
30685
|
+
account?: any;
|
|
30972
30686
|
/**
|
|
30973
30687
|
* #### A filter for the `region` field of the event.
|
|
30974
30688
|
*
|
|
@@ -30976,9 +30690,7 @@ export interface EventBusIntegrationPattern {
|
|
|
30976
30690
|
*
|
|
30977
30691
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
30978
30692
|
*/
|
|
30979
|
-
region?:
|
|
30980
|
-
[k: string]: unknown;
|
|
30981
|
-
};
|
|
30693
|
+
region?: any;
|
|
30982
30694
|
/**
|
|
30983
30695
|
* #### A filter for the `resources` field of the event.
|
|
30984
30696
|
*
|
|
@@ -30986,9 +30698,7 @@ export interface EventBusIntegrationPattern {
|
|
|
30986
30698
|
*
|
|
30987
30699
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
30988
30700
|
*/
|
|
30989
|
-
resources?:
|
|
30990
|
-
[k: string]: unknown;
|
|
30991
|
-
};
|
|
30701
|
+
resources?: any;
|
|
30992
30702
|
/**
|
|
30993
30703
|
* #### A filter for the `detail` field of the event.
|
|
30994
30704
|
*
|
|
@@ -30997,9 +30707,7 @@ export interface EventBusIntegrationPattern {
|
|
|
30997
30707
|
* The `detail` field contains the main payload of the event as a JSON object. You can create complex matching rules based on its contents.
|
|
30998
30708
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
30999
30709
|
*/
|
|
31000
|
-
detail?:
|
|
31001
|
-
[k: string]: unknown;
|
|
31002
|
-
};
|
|
30710
|
+
detail?: any;
|
|
31003
30711
|
/**
|
|
31004
30712
|
* #### A filter for the `replay-name` field of the event.
|
|
31005
30713
|
*
|
|
@@ -31007,9 +30715,7 @@ export interface EventBusIntegrationPattern {
|
|
|
31007
30715
|
*
|
|
31008
30716
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
31009
30717
|
*/
|
|
31010
|
-
"replay-name"?:
|
|
31011
|
-
[k: string]: unknown;
|
|
31012
|
-
};
|
|
30718
|
+
"replay-name"?: any;
|
|
31013
30719
|
}
|
|
31014
30720
|
/**
|
|
31015
30721
|
* #### A destination for events that fail to be delivered to the target.
|
|
@@ -31055,9 +30761,7 @@ export interface EventInputTransformer1 {
|
|
|
31055
30761
|
*
|
|
31056
30762
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
31057
30763
|
*/
|
|
31058
|
-
inputPathsMap?:
|
|
31059
|
-
[k: string]: unknown;
|
|
31060
|
-
};
|
|
30764
|
+
inputPathsMap?: any;
|
|
31061
30765
|
/**
|
|
31062
30766
|
* #### A template for constructing a new event payload.
|
|
31063
30767
|
*
|
|
@@ -31065,9 +30769,7 @@ export interface EventInputTransformer1 {
|
|
|
31065
30769
|
*
|
|
31066
30770
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
31067
30771
|
*/
|
|
31068
|
-
inputTemplate:
|
|
31069
|
-
[k: string]: unknown;
|
|
31070
|
-
};
|
|
30772
|
+
inputTemplate: any;
|
|
31071
30773
|
}
|
|
31072
30774
|
export interface EnvironmentVar {
|
|
31073
30775
|
/**
|
|
@@ -32460,9 +32162,7 @@ export interface StpIamRoleStatement {
|
|
|
32460
32162
|
*
|
|
32461
32163
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
32462
32164
|
*/
|
|
32463
|
-
Condition?:
|
|
32464
|
-
[k: string]: unknown;
|
|
32465
|
-
};
|
|
32165
|
+
Condition?: any;
|
|
32466
32166
|
/**
|
|
32467
32167
|
* #### Resource
|
|
32468
32168
|
*
|
|
@@ -32505,9 +32205,7 @@ export interface WebService {
|
|
|
32505
32205
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
32506
32206
|
*/
|
|
32507
32207
|
overrides?: {
|
|
32508
|
-
[k: string]:
|
|
32509
|
-
[k: string]: unknown;
|
|
32510
|
-
};
|
|
32208
|
+
[k: string]: any;
|
|
32511
32209
|
};
|
|
32512
32210
|
}
|
|
32513
32211
|
export interface WebServiceProps {
|
|
@@ -35237,9 +34935,7 @@ export interface StpIamRoleStatement {
|
|
|
35237
34935
|
*
|
|
35238
34936
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
35239
34937
|
*/
|
|
35240
|
-
Condition?:
|
|
35241
|
-
[k: string]: unknown;
|
|
35242
|
-
};
|
|
34938
|
+
Condition?: any;
|
|
35243
34939
|
/**
|
|
35244
34940
|
* #### Resource
|
|
35245
34941
|
*
|
|
@@ -35297,9 +34993,7 @@ export interface PrivateService {
|
|
|
35297
34993
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
35298
34994
|
*/
|
|
35299
34995
|
overrides?: {
|
|
35300
|
-
[k: string]:
|
|
35301
|
-
[k: string]: unknown;
|
|
35302
|
-
};
|
|
34996
|
+
[k: string]: any;
|
|
35303
34997
|
};
|
|
35304
34998
|
}
|
|
35305
34999
|
export interface PrivateServiceProps {
|
|
@@ -36498,9 +36192,7 @@ export interface StpIamRoleStatement {
|
|
|
36498
36192
|
*
|
|
36499
36193
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
36500
36194
|
*/
|
|
36501
|
-
Condition?:
|
|
36502
|
-
[k: string]: unknown;
|
|
36503
|
-
};
|
|
36195
|
+
Condition?: any;
|
|
36504
36196
|
/**
|
|
36505
36197
|
* #### Resource
|
|
36506
36198
|
*
|
|
@@ -36535,9 +36227,7 @@ export interface WorkerService {
|
|
|
36535
36227
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
36536
36228
|
*/
|
|
36537
36229
|
overrides?: {
|
|
36538
|
-
[k: string]:
|
|
36539
|
-
[k: string]: unknown;
|
|
36540
|
-
};
|
|
36230
|
+
[k: string]: any;
|
|
36541
36231
|
};
|
|
36542
36232
|
}
|
|
36543
36233
|
export interface WorkerServiceProps {
|
|
@@ -37717,9 +37407,7 @@ export interface StpIamRoleStatement {
|
|
|
37717
37407
|
*
|
|
37718
37408
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
37719
37409
|
*/
|
|
37720
|
-
Condition?:
|
|
37721
|
-
[k: string]: unknown;
|
|
37722
|
-
};
|
|
37410
|
+
Condition?: any;
|
|
37723
37411
|
/**
|
|
37724
37412
|
* #### Resource
|
|
37725
37413
|
*
|
|
@@ -37754,9 +37442,7 @@ export interface ContainerWorkload {
|
|
|
37754
37442
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
37755
37443
|
*/
|
|
37756
37444
|
overrides?: {
|
|
37757
|
-
[k: string]:
|
|
37758
|
-
[k: string]: unknown;
|
|
37759
|
-
};
|
|
37445
|
+
[k: string]: any;
|
|
37760
37446
|
};
|
|
37761
37447
|
}
|
|
37762
37448
|
export interface ContainerWorkloadProps {
|
|
@@ -39274,9 +38960,7 @@ export interface StpIamRoleStatement {
|
|
|
39274
38960
|
*
|
|
39275
38961
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
39276
38962
|
*/
|
|
39277
|
-
Condition?:
|
|
39278
|
-
[k: string]: unknown;
|
|
39279
|
-
};
|
|
38963
|
+
Condition?: any;
|
|
39280
38964
|
/**
|
|
39281
38965
|
* #### Resource
|
|
39282
38966
|
*
|
|
@@ -39315,9 +38999,7 @@ export interface BatchJob {
|
|
|
39315
38999
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
39316
39000
|
*/
|
|
39317
39001
|
overrides?: {
|
|
39318
|
-
[k: string]:
|
|
39319
|
-
[k: string]: unknown;
|
|
39320
|
-
};
|
|
39002
|
+
[k: string]: any;
|
|
39321
39003
|
};
|
|
39322
39004
|
}
|
|
39323
39005
|
export interface BatchJobProps {
|
|
@@ -40246,9 +39928,7 @@ export interface SnsIntegration {
|
|
|
40246
39928
|
* If you need to filter based on the message content, consider using an EventBridge event bus instead.
|
|
40247
39929
|
* For more details on filter policies, see the [AWS documentation](https://docs.aws.amazon.com/sns/latest/dg/sns-subscription-filter-policies.html).
|
|
40248
39930
|
*/
|
|
40249
|
-
filterPolicy?:
|
|
40250
|
-
[k: string]: unknown;
|
|
40251
|
-
};
|
|
39931
|
+
filterPolicy?: any;
|
|
40252
39932
|
onDeliveryFailure?: SnsOnDeliveryFailure;
|
|
40253
39933
|
};
|
|
40254
39934
|
}
|
|
@@ -40602,9 +40282,7 @@ export interface ScheduleIntegration {
|
|
|
40602
40282
|
* source: 'my-scheduled-event'
|
|
40603
40283
|
* ```
|
|
40604
40284
|
*/
|
|
40605
|
-
input?:
|
|
40606
|
-
[k: string]: unknown;
|
|
40607
|
-
};
|
|
40285
|
+
input?: any;
|
|
40608
40286
|
/**
|
|
40609
40287
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
40610
40288
|
*
|
|
@@ -40649,9 +40327,7 @@ export interface EventInputTransformer {
|
|
|
40649
40327
|
*
|
|
40650
40328
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
40651
40329
|
*/
|
|
40652
|
-
inputPathsMap?:
|
|
40653
|
-
[k: string]: unknown;
|
|
40654
|
-
};
|
|
40330
|
+
inputPathsMap?: any;
|
|
40655
40331
|
/**
|
|
40656
40332
|
* #### A template for constructing a new event payload.
|
|
40657
40333
|
*
|
|
@@ -40659,9 +40335,7 @@ export interface EventInputTransformer {
|
|
|
40659
40335
|
*
|
|
40660
40336
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
40661
40337
|
*/
|
|
40662
|
-
inputTemplate:
|
|
40663
|
-
[k: string]: unknown;
|
|
40664
|
-
};
|
|
40338
|
+
inputTemplate: any;
|
|
40665
40339
|
}
|
|
40666
40340
|
/**
|
|
40667
40341
|
* #### Triggers a function when a new log record is added to a CloudWatch log group.
|
|
@@ -40902,9 +40576,7 @@ export interface EventBusIntegration {
|
|
|
40902
40576
|
* source: 'my-custom-event'
|
|
40903
40577
|
* ```
|
|
40904
40578
|
*/
|
|
40905
|
-
input?:
|
|
40906
|
-
[k: string]: unknown;
|
|
40907
|
-
};
|
|
40579
|
+
input?: any;
|
|
40908
40580
|
/**
|
|
40909
40581
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
40910
40582
|
*
|
|
@@ -40939,9 +40611,7 @@ export interface EventBusIntegrationPattern {
|
|
|
40939
40611
|
*
|
|
40940
40612
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
40941
40613
|
*/
|
|
40942
|
-
version?:
|
|
40943
|
-
[k: string]: unknown;
|
|
40944
|
-
};
|
|
40614
|
+
version?: any;
|
|
40945
40615
|
/**
|
|
40946
40616
|
* #### A filter for the `detail-type` field of the event.
|
|
40947
40617
|
*
|
|
@@ -40949,9 +40619,7 @@ export interface EventBusIntegrationPattern {
|
|
|
40949
40619
|
*
|
|
40950
40620
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
40951
40621
|
*/
|
|
40952
|
-
"detail-type"?:
|
|
40953
|
-
[k: string]: unknown;
|
|
40954
|
-
};
|
|
40622
|
+
"detail-type"?: any;
|
|
40955
40623
|
/**
|
|
40956
40624
|
* #### A filter for the `source` field of the event.
|
|
40957
40625
|
*
|
|
@@ -40959,9 +40627,7 @@ export interface EventBusIntegrationPattern {
|
|
|
40959
40627
|
*
|
|
40960
40628
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
40961
40629
|
*/
|
|
40962
|
-
source?:
|
|
40963
|
-
[k: string]: unknown;
|
|
40964
|
-
};
|
|
40630
|
+
source?: any;
|
|
40965
40631
|
/**
|
|
40966
40632
|
* #### A filter for the `account` field of the event.
|
|
40967
40633
|
*
|
|
@@ -40969,9 +40635,7 @@ export interface EventBusIntegrationPattern {
|
|
|
40969
40635
|
*
|
|
40970
40636
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
40971
40637
|
*/
|
|
40972
|
-
account?:
|
|
40973
|
-
[k: string]: unknown;
|
|
40974
|
-
};
|
|
40638
|
+
account?: any;
|
|
40975
40639
|
/**
|
|
40976
40640
|
* #### A filter for the `region` field of the event.
|
|
40977
40641
|
*
|
|
@@ -40979,9 +40643,7 @@ export interface EventBusIntegrationPattern {
|
|
|
40979
40643
|
*
|
|
40980
40644
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
40981
40645
|
*/
|
|
40982
|
-
region?:
|
|
40983
|
-
[k: string]: unknown;
|
|
40984
|
-
};
|
|
40646
|
+
region?: any;
|
|
40985
40647
|
/**
|
|
40986
40648
|
* #### A filter for the `resources` field of the event.
|
|
40987
40649
|
*
|
|
@@ -40989,9 +40651,7 @@ export interface EventBusIntegrationPattern {
|
|
|
40989
40651
|
*
|
|
40990
40652
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
40991
40653
|
*/
|
|
40992
|
-
resources?:
|
|
40993
|
-
[k: string]: unknown;
|
|
40994
|
-
};
|
|
40654
|
+
resources?: any;
|
|
40995
40655
|
/**
|
|
40996
40656
|
* #### A filter for the `detail` field of the event.
|
|
40997
40657
|
*
|
|
@@ -41000,9 +40660,7 @@ export interface EventBusIntegrationPattern {
|
|
|
41000
40660
|
* The `detail` field contains the main payload of the event as a JSON object. You can create complex matching rules based on its contents.
|
|
41001
40661
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
41002
40662
|
*/
|
|
41003
|
-
detail?:
|
|
41004
|
-
[k: string]: unknown;
|
|
41005
|
-
};
|
|
40663
|
+
detail?: any;
|
|
41006
40664
|
/**
|
|
41007
40665
|
* #### A filter for the `replay-name` field of the event.
|
|
41008
40666
|
*
|
|
@@ -41010,9 +40668,7 @@ export interface EventBusIntegrationPattern {
|
|
|
41010
40668
|
*
|
|
41011
40669
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
41012
40670
|
*/
|
|
41013
|
-
"replay-name"?:
|
|
41014
|
-
[k: string]: unknown;
|
|
41015
|
-
};
|
|
40671
|
+
"replay-name"?: any;
|
|
41016
40672
|
}
|
|
41017
40673
|
/**
|
|
41018
40674
|
* #### A destination for events that fail to be delivered to the target.
|
|
@@ -41058,9 +40714,7 @@ export interface EventInputTransformer1 {
|
|
|
41058
40714
|
*
|
|
41059
40715
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
41060
40716
|
*/
|
|
41061
|
-
inputPathsMap?:
|
|
41062
|
-
[k: string]: unknown;
|
|
41063
|
-
};
|
|
40717
|
+
inputPathsMap?: any;
|
|
41064
40718
|
/**
|
|
41065
40719
|
* #### A template for constructing a new event payload.
|
|
41066
40720
|
*
|
|
@@ -41068,9 +40722,7 @@ export interface EventInputTransformer1 {
|
|
|
41068
40722
|
*
|
|
41069
40723
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
41070
40724
|
*/
|
|
41071
|
-
inputTemplate:
|
|
41072
|
-
[k: string]: unknown;
|
|
41073
|
-
};
|
|
40725
|
+
inputTemplate: any;
|
|
41074
40726
|
}
|
|
41075
40727
|
export interface StpIamRoleStatement {
|
|
41076
40728
|
/**
|
|
@@ -41104,9 +40756,7 @@ export interface StpIamRoleStatement {
|
|
|
41104
40756
|
*
|
|
41105
40757
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
41106
40758
|
*/
|
|
41107
|
-
Condition?:
|
|
41108
|
-
[k: string]: unknown;
|
|
41109
|
-
};
|
|
40759
|
+
Condition?: any;
|
|
41110
40760
|
/**
|
|
41111
40761
|
* #### Resource
|
|
41112
40762
|
*
|
|
@@ -41149,9 +40799,7 @@ export interface RelationalDatabase {
|
|
|
41149
40799
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
41150
40800
|
*/
|
|
41151
40801
|
overrides?: {
|
|
41152
|
-
[k: string]:
|
|
41153
|
-
[k: string]: unknown;
|
|
41154
|
-
};
|
|
40802
|
+
[k: string]: any;
|
|
41155
40803
|
};
|
|
41156
40804
|
}
|
|
41157
40805
|
export interface RelationalDatabaseProps {
|
|
@@ -42297,9 +41945,7 @@ export interface Bucket {
|
|
|
42297
41945
|
Type: string;
|
|
42298
41946
|
DependsOn?: string[] | IntrinsicFunction | string;
|
|
42299
41947
|
Properties: BucketProperties;
|
|
42300
|
-
Metadata?:
|
|
42301
|
-
[k: string]: unknown;
|
|
42302
|
-
};
|
|
41948
|
+
Metadata?: any;
|
|
42303
41949
|
CreationPolicy?: CreationPolicy;
|
|
42304
41950
|
DeletionPolicy?: DeletionPolicy;
|
|
42305
41951
|
UpdatePolicy?: UpdatePolicy;
|
|
@@ -42307,7 +41953,7 @@ export interface Bucket {
|
|
|
42307
41953
|
}
|
|
42308
41954
|
export interface IntrinsicFunction {
|
|
42309
41955
|
name: string;
|
|
42310
|
-
payload:
|
|
41956
|
+
payload: any;
|
|
42311
41957
|
}
|
|
42312
41958
|
export interface BucketProperties {
|
|
42313
41959
|
InventoryConfigurations?: ListInventoryConfiguration;
|
|
@@ -42548,9 +42194,7 @@ export interface LoggingConfiguration {
|
|
|
42548
42194
|
}
|
|
42549
42195
|
export interface TargetObjectKeyFormat {
|
|
42550
42196
|
PartitionedPrefix?: PartitionedPrefix;
|
|
42551
|
-
SimplePrefix?:
|
|
42552
|
-
[k: string]: unknown;
|
|
42553
|
-
};
|
|
42197
|
+
SimplePrefix?: any;
|
|
42554
42198
|
}
|
|
42555
42199
|
export interface PartitionedPrefix {
|
|
42556
42200
|
PartitionDateSource?: ValueString;
|
|
@@ -42707,9 +42351,7 @@ export interface HostingBucket {
|
|
|
42707
42351
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
42708
42352
|
*/
|
|
42709
42353
|
overrides?: {
|
|
42710
|
-
[k: string]:
|
|
42711
|
-
[k: string]: unknown;
|
|
42712
|
-
};
|
|
42354
|
+
[k: string]: any;
|
|
42713
42355
|
};
|
|
42714
42356
|
}
|
|
42715
42357
|
export interface HostingBucketProps {
|
|
@@ -43567,9 +43209,7 @@ export interface DynamoDbTable {
|
|
|
43567
43209
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
43568
43210
|
*/
|
|
43569
43211
|
overrides?: {
|
|
43570
|
-
[k: string]:
|
|
43571
|
-
[k: string]: unknown;
|
|
43572
|
-
};
|
|
43212
|
+
[k: string]: any;
|
|
43573
43213
|
};
|
|
43574
43214
|
}
|
|
43575
43215
|
export interface DynamoDbTableProps {
|
|
@@ -43864,9 +43504,7 @@ export interface EventBus {
|
|
|
43864
43504
|
Type: string;
|
|
43865
43505
|
DependsOn?: string[] | IntrinsicFunction | string;
|
|
43866
43506
|
Properties: EventBusProperties;
|
|
43867
|
-
Metadata?:
|
|
43868
|
-
[k: string]: unknown;
|
|
43869
|
-
};
|
|
43507
|
+
Metadata?: any;
|
|
43870
43508
|
CreationPolicy?: CreationPolicy;
|
|
43871
43509
|
DeletionPolicy?: DeletionPolicy;
|
|
43872
43510
|
UpdatePolicy?: UpdatePolicy;
|
|
@@ -43874,12 +43512,10 @@ export interface EventBus {
|
|
|
43874
43512
|
}
|
|
43875
43513
|
export interface IntrinsicFunction {
|
|
43876
43514
|
name: string;
|
|
43877
|
-
payload:
|
|
43515
|
+
payload: any;
|
|
43878
43516
|
}
|
|
43879
43517
|
export interface EventBusProperties {
|
|
43880
|
-
Policy?:
|
|
43881
|
-
[k: string]: unknown;
|
|
43882
|
-
};
|
|
43518
|
+
Policy?: any;
|
|
43883
43519
|
KmsKeyIdentifier?: ValueString;
|
|
43884
43520
|
Description?: ValueString;
|
|
43885
43521
|
EventSourceName?: ValueString;
|
|
@@ -43958,9 +43594,7 @@ export interface HttpApiGateway {
|
|
|
43958
43594
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
43959
43595
|
*/
|
|
43960
43596
|
overrides?: {
|
|
43961
|
-
[k: string]:
|
|
43962
|
-
[k: string]: unknown;
|
|
43963
|
-
};
|
|
43597
|
+
[k: string]: any;
|
|
43964
43598
|
};
|
|
43965
43599
|
}
|
|
43966
43600
|
export interface HttpApiGatewayProps {
|
|
@@ -45217,9 +44851,7 @@ export interface ApplicationLoadBalancer {
|
|
|
45217
44851
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
45218
44852
|
*/
|
|
45219
44853
|
overrides?: {
|
|
45220
|
-
[k: string]:
|
|
45221
|
-
[k: string]: unknown;
|
|
45222
|
-
};
|
|
44854
|
+
[k: string]: any;
|
|
45223
44855
|
};
|
|
45224
44856
|
}
|
|
45225
44857
|
export interface ApplicationLoadBalancerProps {
|
|
@@ -46575,9 +46207,7 @@ export interface NetworkLoadBalancer {
|
|
|
46575
46207
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
46576
46208
|
*/
|
|
46577
46209
|
overrides?: {
|
|
46578
|
-
[k: string]:
|
|
46579
|
-
[k: string]: unknown;
|
|
46580
|
-
};
|
|
46210
|
+
[k: string]: any;
|
|
46581
46211
|
};
|
|
46582
46212
|
}
|
|
46583
46213
|
export interface NetworkLoadBalancerProps {
|
|
@@ -46678,9 +46308,7 @@ export interface RedisCluster {
|
|
|
46678
46308
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
46679
46309
|
*/
|
|
46680
46310
|
overrides?: {
|
|
46681
|
-
[k: string]:
|
|
46682
|
-
[k: string]: unknown;
|
|
46683
|
-
};
|
|
46311
|
+
[k: string]: any;
|
|
46684
46312
|
};
|
|
46685
46313
|
}
|
|
46686
46314
|
export interface RedisClusterProps {
|
|
@@ -47325,9 +46953,7 @@ export interface StateMachine {
|
|
|
47325
46953
|
Type: string;
|
|
47326
46954
|
DependsOn?: string[] | IntrinsicFunction | string;
|
|
47327
46955
|
Properties: StateMachineProperties;
|
|
47328
|
-
Metadata?:
|
|
47329
|
-
[k: string]: unknown;
|
|
47330
|
-
};
|
|
46956
|
+
Metadata?: any;
|
|
47331
46957
|
CreationPolicy?: CreationPolicy;
|
|
47332
46958
|
DeletionPolicy?: DeletionPolicy;
|
|
47333
46959
|
UpdatePolicy?: UpdatePolicy;
|
|
@@ -47335,20 +46961,16 @@ export interface StateMachine {
|
|
|
47335
46961
|
}
|
|
47336
46962
|
export interface IntrinsicFunction {
|
|
47337
46963
|
name: string;
|
|
47338
|
-
payload:
|
|
46964
|
+
payload: any;
|
|
47339
46965
|
}
|
|
47340
46966
|
export interface StateMachineProperties {
|
|
47341
46967
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
47342
46968
|
DefinitionString?: ValueString;
|
|
47343
46969
|
LoggingConfiguration?: LoggingConfiguration;
|
|
47344
46970
|
DefinitionSubstitutions?: {
|
|
47345
|
-
[k: string]:
|
|
47346
|
-
[k: string]: unknown;
|
|
47347
|
-
};
|
|
47348
|
-
};
|
|
47349
|
-
Definition?: {
|
|
47350
|
-
[k: string]: unknown;
|
|
46971
|
+
[k: string]: any;
|
|
47351
46972
|
};
|
|
46973
|
+
Definition?: any;
|
|
47352
46974
|
DefinitionS3Location?: S3Location;
|
|
47353
46975
|
StateMachineName?: ValueString;
|
|
47354
46976
|
RoleArn: ValueString;
|
|
@@ -47442,9 +47064,7 @@ export interface UserAuthPool {
|
|
|
47442
47064
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
47443
47065
|
*/
|
|
47444
47066
|
overrides?: {
|
|
47445
|
-
[k: string]:
|
|
47446
|
-
[k: string]: unknown;
|
|
47447
|
-
};
|
|
47067
|
+
[k: string]: any;
|
|
47448
47068
|
};
|
|
47449
47069
|
}
|
|
47450
47070
|
export interface UserAuthPoolProps {
|
|
@@ -48128,9 +47748,7 @@ export interface UpstashRedis {
|
|
|
48128
47748
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
48129
47749
|
*/
|
|
48130
47750
|
overrides?: {
|
|
48131
|
-
[k: string]:
|
|
48132
|
-
[k: string]: unknown;
|
|
48133
|
-
};
|
|
47751
|
+
[k: string]: any;
|
|
48134
47752
|
};
|
|
48135
47753
|
}
|
|
48136
47754
|
export interface UpstashRedisProps {
|
|
@@ -48171,9 +47789,7 @@ export interface SqsQueue {
|
|
|
48171
47789
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
48172
47790
|
*/
|
|
48173
47791
|
overrides?: {
|
|
48174
|
-
[k: string]:
|
|
48175
|
-
[k: string]: unknown;
|
|
48176
|
-
};
|
|
47792
|
+
[k: string]: any;
|
|
48177
47793
|
};
|
|
48178
47794
|
}
|
|
48179
47795
|
export interface SqsQueueProps {
|
|
@@ -48519,9 +48135,7 @@ export interface SqsQueuePolicyStatement {
|
|
|
48519
48135
|
*
|
|
48520
48136
|
* For more details, see the [AWS documentation](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-basic-examples-of-sqs-policies.html).
|
|
48521
48137
|
*/
|
|
48522
|
-
Condition?:
|
|
48523
|
-
[k: string]: unknown;
|
|
48524
|
-
};
|
|
48138
|
+
Condition?: any;
|
|
48525
48139
|
/**
|
|
48526
48140
|
* #### The principal (user, role, or service) to which you are allowing or denying access.
|
|
48527
48141
|
*
|
|
@@ -48529,9 +48143,7 @@ export interface SqsQueuePolicyStatement {
|
|
|
48529
48143
|
*
|
|
48530
48144
|
* For more details, see the [AWS documentation](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-basic-examples-of-sqs-policies.html).
|
|
48531
48145
|
*/
|
|
48532
|
-
Principal:
|
|
48533
|
-
[k: string]: unknown;
|
|
48534
|
-
};
|
|
48146
|
+
Principal: any;
|
|
48535
48147
|
}
|
|
48536
48148
|
/**
|
|
48537
48149
|
* #### Delivers messages to an SQS queue when an event matching a specified pattern is received by an event bus.
|
|
@@ -48594,9 +48206,7 @@ export interface SqsQueueEventBusIntegration {
|
|
|
48594
48206
|
* source: 'my-custom-event'
|
|
48595
48207
|
* ```
|
|
48596
48208
|
*/
|
|
48597
|
-
input?:
|
|
48598
|
-
[k: string]: unknown;
|
|
48599
|
-
};
|
|
48209
|
+
input?: any;
|
|
48600
48210
|
/**
|
|
48601
48211
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
48602
48212
|
*
|
|
@@ -48631,9 +48241,7 @@ export interface EventBusIntegrationPattern {
|
|
|
48631
48241
|
*
|
|
48632
48242
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
48633
48243
|
*/
|
|
48634
|
-
version?:
|
|
48635
|
-
[k: string]: unknown;
|
|
48636
|
-
};
|
|
48244
|
+
version?: any;
|
|
48637
48245
|
/**
|
|
48638
48246
|
* #### A filter for the `detail-type` field of the event.
|
|
48639
48247
|
*
|
|
@@ -48641,9 +48249,7 @@ export interface EventBusIntegrationPattern {
|
|
|
48641
48249
|
*
|
|
48642
48250
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
48643
48251
|
*/
|
|
48644
|
-
"detail-type"?:
|
|
48645
|
-
[k: string]: unknown;
|
|
48646
|
-
};
|
|
48252
|
+
"detail-type"?: any;
|
|
48647
48253
|
/**
|
|
48648
48254
|
* #### A filter for the `source` field of the event.
|
|
48649
48255
|
*
|
|
@@ -48651,9 +48257,7 @@ export interface EventBusIntegrationPattern {
|
|
|
48651
48257
|
*
|
|
48652
48258
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
48653
48259
|
*/
|
|
48654
|
-
source?:
|
|
48655
|
-
[k: string]: unknown;
|
|
48656
|
-
};
|
|
48260
|
+
source?: any;
|
|
48657
48261
|
/**
|
|
48658
48262
|
* #### A filter for the `account` field of the event.
|
|
48659
48263
|
*
|
|
@@ -48661,9 +48265,7 @@ export interface EventBusIntegrationPattern {
|
|
|
48661
48265
|
*
|
|
48662
48266
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
48663
48267
|
*/
|
|
48664
|
-
account?:
|
|
48665
|
-
[k: string]: unknown;
|
|
48666
|
-
};
|
|
48268
|
+
account?: any;
|
|
48667
48269
|
/**
|
|
48668
48270
|
* #### A filter for the `region` field of the event.
|
|
48669
48271
|
*
|
|
@@ -48671,9 +48273,7 @@ export interface EventBusIntegrationPattern {
|
|
|
48671
48273
|
*
|
|
48672
48274
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
48673
48275
|
*/
|
|
48674
|
-
region?:
|
|
48675
|
-
[k: string]: unknown;
|
|
48676
|
-
};
|
|
48276
|
+
region?: any;
|
|
48677
48277
|
/**
|
|
48678
48278
|
* #### A filter for the `resources` field of the event.
|
|
48679
48279
|
*
|
|
@@ -48681,9 +48281,7 @@ export interface EventBusIntegrationPattern {
|
|
|
48681
48281
|
*
|
|
48682
48282
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
48683
48283
|
*/
|
|
48684
|
-
resources?:
|
|
48685
|
-
[k: string]: unknown;
|
|
48686
|
-
};
|
|
48284
|
+
resources?: any;
|
|
48687
48285
|
/**
|
|
48688
48286
|
* #### A filter for the `detail` field of the event.
|
|
48689
48287
|
*
|
|
@@ -48692,9 +48290,7 @@ export interface EventBusIntegrationPattern {
|
|
|
48692
48290
|
* The `detail` field contains the main payload of the event as a JSON object. You can create complex matching rules based on its contents.
|
|
48693
48291
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
48694
48292
|
*/
|
|
48695
|
-
detail?:
|
|
48696
|
-
[k: string]: unknown;
|
|
48697
|
-
};
|
|
48293
|
+
detail?: any;
|
|
48698
48294
|
/**
|
|
48699
48295
|
* #### A filter for the `replay-name` field of the event.
|
|
48700
48296
|
*
|
|
@@ -48702,9 +48298,7 @@ export interface EventBusIntegrationPattern {
|
|
|
48702
48298
|
*
|
|
48703
48299
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
48704
48300
|
*/
|
|
48705
|
-
"replay-name"?:
|
|
48706
|
-
[k: string]: unknown;
|
|
48707
|
-
};
|
|
48301
|
+
"replay-name"?: any;
|
|
48708
48302
|
}
|
|
48709
48303
|
/**
|
|
48710
48304
|
* #### A destination for events that fail to be delivered to the target.
|
|
@@ -48750,9 +48344,7 @@ export interface EventInputTransformer {
|
|
|
48750
48344
|
*
|
|
48751
48345
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
48752
48346
|
*/
|
|
48753
|
-
inputPathsMap?:
|
|
48754
|
-
[k: string]: unknown;
|
|
48755
|
-
};
|
|
48347
|
+
inputPathsMap?: any;
|
|
48756
48348
|
/**
|
|
48757
48349
|
* #### A template for constructing a new event payload.
|
|
48758
48350
|
*
|
|
@@ -48760,9 +48352,7 @@ export interface EventInputTransformer {
|
|
|
48760
48352
|
*
|
|
48761
48353
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
48762
48354
|
*/
|
|
48763
|
-
inputTemplate:
|
|
48764
|
-
[k: string]: unknown;
|
|
48765
|
-
};
|
|
48355
|
+
inputTemplate: any;
|
|
48766
48356
|
}
|
|
48767
48357
|
|
|
48768
48358
|
|
|
@@ -48788,9 +48378,7 @@ export interface SnsTopic {
|
|
|
48788
48378
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
48789
48379
|
*/
|
|
48790
48380
|
overrides?: {
|
|
48791
|
-
[k: string]:
|
|
48792
|
-
[k: string]: unknown;
|
|
48793
|
-
};
|
|
48381
|
+
[k: string]: any;
|
|
48794
48382
|
};
|
|
48795
48383
|
}
|
|
48796
48384
|
export interface SnsTopicProps {
|
|
@@ -48853,9 +48441,7 @@ export interface WebAppFirewall {
|
|
|
48853
48441
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
48854
48442
|
*/
|
|
48855
48443
|
overrides?: {
|
|
48856
|
-
[k: string]:
|
|
48857
|
-
[k: string]: unknown;
|
|
48858
|
-
};
|
|
48444
|
+
[k: string]: any;
|
|
48859
48445
|
};
|
|
48860
48446
|
}
|
|
48861
48447
|
export interface WebAppFirewallProps {
|
|
@@ -49177,9 +48763,7 @@ export interface OpenSearchDomain {
|
|
|
49177
48763
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
49178
48764
|
*/
|
|
49179
48765
|
overrides?: {
|
|
49180
|
-
[k: string]:
|
|
49181
|
-
[k: string]: unknown;
|
|
49182
|
-
};
|
|
48766
|
+
[k: string]: any;
|
|
49183
48767
|
};
|
|
49184
48768
|
}
|
|
49185
48769
|
export interface OpenSearchDomainProps {
|
|
@@ -49497,9 +49081,7 @@ export interface EfsFilesystem {
|
|
|
49497
49081
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
49498
49082
|
*/
|
|
49499
49083
|
overrides?: {
|
|
49500
|
-
[k: string]:
|
|
49501
|
-
[k: string]: unknown;
|
|
49502
|
-
};
|
|
49084
|
+
[k: string]: any;
|
|
49503
49085
|
};
|
|
49504
49086
|
}
|
|
49505
49087
|
export interface EfsFilesystemProps {
|
|
@@ -49566,9 +49148,7 @@ export interface NextjsWeb {
|
|
|
49566
49148
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
49567
49149
|
*/
|
|
49568
49150
|
overrides?: {
|
|
49569
|
-
[k: string]:
|
|
49570
|
-
[k: string]: unknown;
|
|
49571
|
-
};
|
|
49151
|
+
[k: string]: any;
|
|
49572
49152
|
};
|
|
49573
49153
|
}
|
|
49574
49154
|
export interface NextjsWebProps {
|
|
@@ -50077,9 +49657,7 @@ export interface StpIamRoleStatement {
|
|
|
50077
49657
|
*
|
|
50078
49658
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
50079
49659
|
*/
|
|
50080
|
-
Condition?:
|
|
50081
|
-
[k: string]: unknown;
|
|
50082
|
-
};
|
|
49660
|
+
Condition?: any;
|
|
50083
49661
|
/**
|
|
50084
49662
|
* #### Resource
|
|
50085
49663
|
*
|
|
@@ -50114,9 +49692,7 @@ export interface Bastion {
|
|
|
50114
49692
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
50115
49693
|
*/
|
|
50116
49694
|
overrides?: {
|
|
50117
|
-
[k: string]:
|
|
50118
|
-
[k: string]: unknown;
|
|
50119
|
-
};
|
|
49695
|
+
[k: string]: any;
|
|
50120
49696
|
};
|
|
50121
49697
|
}
|
|
50122
49698
|
export interface BastionProps {
|
|
@@ -50394,9 +49970,7 @@ export interface EdgeLambdaFunction {
|
|
|
50394
49970
|
* For a list of properties that can be overridden, refer to the [AWS CloudFormation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html).
|
|
50395
49971
|
*/
|
|
50396
49972
|
overrides?: {
|
|
50397
|
-
[k: string]:
|
|
50398
|
-
[k: string]: unknown;
|
|
50399
|
-
};
|
|
49973
|
+
[k: string]: any;
|
|
50400
49974
|
};
|
|
50401
49975
|
}
|
|
50402
49976
|
export interface EdgeLambdaFunctionProps {
|
|
@@ -50751,9 +50325,7 @@ export interface StpIamRoleStatement {
|
|
|
50751
50325
|
*
|
|
50752
50326
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
50753
50327
|
*/
|
|
50754
|
-
Condition?:
|
|
50755
|
-
[k: string]: unknown;
|
|
50756
|
-
};
|
|
50328
|
+
Condition?: any;
|
|
50757
50329
|
/**
|
|
50758
50330
|
* #### Resource
|
|
50759
50331
|
*
|
|
@@ -54087,9 +53659,7 @@ export interface StpIamRoleStatement {
|
|
|
54087
53659
|
*
|
|
54088
53660
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
54089
53661
|
*/
|
|
54090
|
-
Condition?:
|
|
54091
|
-
[k: string]: unknown;
|
|
54092
|
-
};
|
|
53662
|
+
Condition?: any;
|
|
54093
53663
|
/**
|
|
54094
53664
|
* #### Resource
|
|
54095
53665
|
*
|
|
@@ -55320,9 +54890,7 @@ export interface StpIamRoleStatement {
|
|
|
55320
54890
|
*
|
|
55321
54891
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
55322
54892
|
*/
|
|
55323
|
-
Condition?:
|
|
55324
|
-
[k: string]: unknown;
|
|
55325
|
-
};
|
|
54893
|
+
Condition?: any;
|
|
55326
54894
|
/**
|
|
55327
54895
|
* #### Resource
|
|
55328
54896
|
*
|
|
@@ -56511,9 +56079,7 @@ export interface StpIamRoleStatement {
|
|
|
56511
56079
|
*
|
|
56512
56080
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
56513
56081
|
*/
|
|
56514
|
-
Condition?:
|
|
56515
|
-
[k: string]: unknown;
|
|
56516
|
-
};
|
|
56082
|
+
Condition?: any;
|
|
56517
56083
|
/**
|
|
56518
56084
|
* #### Resource
|
|
56519
56085
|
*
|
|
@@ -58040,9 +57606,7 @@ export interface StpIamRoleStatement {
|
|
|
58040
57606
|
*
|
|
58041
57607
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
58042
57608
|
*/
|
|
58043
|
-
Condition?:
|
|
58044
|
-
[k: string]: unknown;
|
|
58045
|
-
};
|
|
57609
|
+
Condition?: any;
|
|
58046
57610
|
/**
|
|
58047
57611
|
* #### Resource
|
|
58048
57612
|
*
|
|
@@ -58859,9 +58423,7 @@ export interface SnsIntegration {
|
|
|
58859
58423
|
* If you need to filter based on the message content, consider using an EventBridge event bus instead.
|
|
58860
58424
|
* For more details on filter policies, see the [AWS documentation](https://docs.aws.amazon.com/sns/latest/dg/sns-subscription-filter-policies.html).
|
|
58861
58425
|
*/
|
|
58862
|
-
filterPolicy?:
|
|
58863
|
-
[k: string]: unknown;
|
|
58864
|
-
};
|
|
58426
|
+
filterPolicy?: any;
|
|
58865
58427
|
onDeliveryFailure?: SnsOnDeliveryFailure;
|
|
58866
58428
|
};
|
|
58867
58429
|
}
|
|
@@ -59215,9 +58777,7 @@ export interface ScheduleIntegration {
|
|
|
59215
58777
|
* source: 'my-scheduled-event'
|
|
59216
58778
|
* ```
|
|
59217
58779
|
*/
|
|
59218
|
-
input?:
|
|
59219
|
-
[k: string]: unknown;
|
|
59220
|
-
};
|
|
58780
|
+
input?: any;
|
|
59221
58781
|
/**
|
|
59222
58782
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
59223
58783
|
*
|
|
@@ -59262,9 +58822,7 @@ export interface EventInputTransformer {
|
|
|
59262
58822
|
*
|
|
59263
58823
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
59264
58824
|
*/
|
|
59265
|
-
inputPathsMap?:
|
|
59266
|
-
[k: string]: unknown;
|
|
59267
|
-
};
|
|
58825
|
+
inputPathsMap?: any;
|
|
59268
58826
|
/**
|
|
59269
58827
|
* #### A template for constructing a new event payload.
|
|
59270
58828
|
*
|
|
@@ -59272,9 +58830,7 @@ export interface EventInputTransformer {
|
|
|
59272
58830
|
*
|
|
59273
58831
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
59274
58832
|
*/
|
|
59275
|
-
inputTemplate:
|
|
59276
|
-
[k: string]: unknown;
|
|
59277
|
-
};
|
|
58833
|
+
inputTemplate: any;
|
|
59278
58834
|
}
|
|
59279
58835
|
export interface AlarmIntegration {
|
|
59280
58836
|
type: "cloudwatch-alarm";
|
|
@@ -59527,9 +59083,7 @@ export interface EventBusIntegration {
|
|
|
59527
59083
|
* source: 'my-custom-event'
|
|
59528
59084
|
* ```
|
|
59529
59085
|
*/
|
|
59530
|
-
input?:
|
|
59531
|
-
[k: string]: unknown;
|
|
59532
|
-
};
|
|
59086
|
+
input?: any;
|
|
59533
59087
|
/**
|
|
59534
59088
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
59535
59089
|
*
|
|
@@ -59564,9 +59118,7 @@ export interface EventBusIntegrationPattern {
|
|
|
59564
59118
|
*
|
|
59565
59119
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
59566
59120
|
*/
|
|
59567
|
-
version?:
|
|
59568
|
-
[k: string]: unknown;
|
|
59569
|
-
};
|
|
59121
|
+
version?: any;
|
|
59570
59122
|
/**
|
|
59571
59123
|
* #### A filter for the `detail-type` field of the event.
|
|
59572
59124
|
*
|
|
@@ -59574,9 +59126,7 @@ export interface EventBusIntegrationPattern {
|
|
|
59574
59126
|
*
|
|
59575
59127
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
59576
59128
|
*/
|
|
59577
|
-
"detail-type"?:
|
|
59578
|
-
[k: string]: unknown;
|
|
59579
|
-
};
|
|
59129
|
+
"detail-type"?: any;
|
|
59580
59130
|
/**
|
|
59581
59131
|
* #### A filter for the `source` field of the event.
|
|
59582
59132
|
*
|
|
@@ -59584,9 +59134,7 @@ export interface EventBusIntegrationPattern {
|
|
|
59584
59134
|
*
|
|
59585
59135
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
59586
59136
|
*/
|
|
59587
|
-
source?:
|
|
59588
|
-
[k: string]: unknown;
|
|
59589
|
-
};
|
|
59137
|
+
source?: any;
|
|
59590
59138
|
/**
|
|
59591
59139
|
* #### A filter for the `account` field of the event.
|
|
59592
59140
|
*
|
|
@@ -59594,9 +59142,7 @@ export interface EventBusIntegrationPattern {
|
|
|
59594
59142
|
*
|
|
59595
59143
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
59596
59144
|
*/
|
|
59597
|
-
account?:
|
|
59598
|
-
[k: string]: unknown;
|
|
59599
|
-
};
|
|
59145
|
+
account?: any;
|
|
59600
59146
|
/**
|
|
59601
59147
|
* #### A filter for the `region` field of the event.
|
|
59602
59148
|
*
|
|
@@ -59604,9 +59150,7 @@ export interface EventBusIntegrationPattern {
|
|
|
59604
59150
|
*
|
|
59605
59151
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
59606
59152
|
*/
|
|
59607
|
-
region?:
|
|
59608
|
-
[k: string]: unknown;
|
|
59609
|
-
};
|
|
59153
|
+
region?: any;
|
|
59610
59154
|
/**
|
|
59611
59155
|
* #### A filter for the `resources` field of the event.
|
|
59612
59156
|
*
|
|
@@ -59614,9 +59158,7 @@ export interface EventBusIntegrationPattern {
|
|
|
59614
59158
|
*
|
|
59615
59159
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
59616
59160
|
*/
|
|
59617
|
-
resources?:
|
|
59618
|
-
[k: string]: unknown;
|
|
59619
|
-
};
|
|
59161
|
+
resources?: any;
|
|
59620
59162
|
/**
|
|
59621
59163
|
* #### A filter for the `detail` field of the event.
|
|
59622
59164
|
*
|
|
@@ -59625,9 +59167,7 @@ export interface EventBusIntegrationPattern {
|
|
|
59625
59167
|
* The `detail` field contains the main payload of the event as a JSON object. You can create complex matching rules based on its contents.
|
|
59626
59168
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
59627
59169
|
*/
|
|
59628
|
-
detail?:
|
|
59629
|
-
[k: string]: unknown;
|
|
59630
|
-
};
|
|
59170
|
+
detail?: any;
|
|
59631
59171
|
/**
|
|
59632
59172
|
* #### A filter for the `replay-name` field of the event.
|
|
59633
59173
|
*
|
|
@@ -59635,9 +59175,7 @@ export interface EventBusIntegrationPattern {
|
|
|
59635
59175
|
*
|
|
59636
59176
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
59637
59177
|
*/
|
|
59638
|
-
"replay-name"?:
|
|
59639
|
-
[k: string]: unknown;
|
|
59640
|
-
};
|
|
59178
|
+
"replay-name"?: any;
|
|
59641
59179
|
}
|
|
59642
59180
|
/**
|
|
59643
59181
|
* #### A destination for events that fail to be delivered to the target.
|
|
@@ -59683,9 +59221,7 @@ export interface EventInputTransformer1 {
|
|
|
59683
59221
|
*
|
|
59684
59222
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
59685
59223
|
*/
|
|
59686
|
-
inputPathsMap?:
|
|
59687
|
-
[k: string]: unknown;
|
|
59688
|
-
};
|
|
59224
|
+
inputPathsMap?: any;
|
|
59689
59225
|
/**
|
|
59690
59226
|
* #### A template for constructing a new event payload.
|
|
59691
59227
|
*
|
|
@@ -59693,9 +59229,7 @@ export interface EventInputTransformer1 {
|
|
|
59693
59229
|
*
|
|
59694
59230
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
59695
59231
|
*/
|
|
59696
|
-
inputTemplate:
|
|
59697
|
-
[k: string]: unknown;
|
|
59698
|
-
};
|
|
59232
|
+
inputTemplate: any;
|
|
59699
59233
|
}
|
|
59700
59234
|
export interface EnvironmentVar {
|
|
59701
59235
|
/**
|
|
@@ -61088,9 +60622,7 @@ export interface StpIamRoleStatement {
|
|
|
61088
60622
|
*
|
|
61089
60623
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
61090
60624
|
*/
|
|
61091
|
-
Condition?:
|
|
61092
|
-
[k: string]: unknown;
|
|
61093
|
-
};
|
|
60625
|
+
Condition?: any;
|
|
61094
60626
|
/**
|
|
61095
60627
|
* #### Resource
|
|
61096
60628
|
*
|
|
@@ -62028,9 +61560,7 @@ export interface SnsIntegration {
|
|
|
62028
61560
|
* If you need to filter based on the message content, consider using an EventBridge event bus instead.
|
|
62029
61561
|
* For more details on filter policies, see the [AWS documentation](https://docs.aws.amazon.com/sns/latest/dg/sns-subscription-filter-policies.html).
|
|
62030
61562
|
*/
|
|
62031
|
-
filterPolicy?:
|
|
62032
|
-
[k: string]: unknown;
|
|
62033
|
-
};
|
|
61563
|
+
filterPolicy?: any;
|
|
62034
61564
|
onDeliveryFailure?: SnsOnDeliveryFailure;
|
|
62035
61565
|
};
|
|
62036
61566
|
}
|
|
@@ -62384,9 +61914,7 @@ export interface ScheduleIntegration {
|
|
|
62384
61914
|
* source: 'my-scheduled-event'
|
|
62385
61915
|
* ```
|
|
62386
61916
|
*/
|
|
62387
|
-
input?:
|
|
62388
|
-
[k: string]: unknown;
|
|
62389
|
-
};
|
|
61917
|
+
input?: any;
|
|
62390
61918
|
/**
|
|
62391
61919
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
62392
61920
|
*
|
|
@@ -62431,9 +61959,7 @@ export interface EventInputTransformer {
|
|
|
62431
61959
|
*
|
|
62432
61960
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
62433
61961
|
*/
|
|
62434
|
-
inputPathsMap?:
|
|
62435
|
-
[k: string]: unknown;
|
|
62436
|
-
};
|
|
61962
|
+
inputPathsMap?: any;
|
|
62437
61963
|
/**
|
|
62438
61964
|
* #### A template for constructing a new event payload.
|
|
62439
61965
|
*
|
|
@@ -62441,9 +61967,7 @@ export interface EventInputTransformer {
|
|
|
62441
61967
|
*
|
|
62442
61968
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
62443
61969
|
*/
|
|
62444
|
-
inputTemplate:
|
|
62445
|
-
[k: string]: unknown;
|
|
62446
|
-
};
|
|
61970
|
+
inputTemplate: any;
|
|
62447
61971
|
}
|
|
62448
61972
|
/**
|
|
62449
61973
|
* #### Triggers a function when a new log record is added to a CloudWatch log group.
|
|
@@ -62684,9 +62208,7 @@ export interface EventBusIntegration {
|
|
|
62684
62208
|
* source: 'my-custom-event'
|
|
62685
62209
|
* ```
|
|
62686
62210
|
*/
|
|
62687
|
-
input?:
|
|
62688
|
-
[k: string]: unknown;
|
|
62689
|
-
};
|
|
62211
|
+
input?: any;
|
|
62690
62212
|
/**
|
|
62691
62213
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
62692
62214
|
*
|
|
@@ -62721,9 +62243,7 @@ export interface EventBusIntegrationPattern {
|
|
|
62721
62243
|
*
|
|
62722
62244
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
62723
62245
|
*/
|
|
62724
|
-
version?:
|
|
62725
|
-
[k: string]: unknown;
|
|
62726
|
-
};
|
|
62246
|
+
version?: any;
|
|
62727
62247
|
/**
|
|
62728
62248
|
* #### A filter for the `detail-type` field of the event.
|
|
62729
62249
|
*
|
|
@@ -62731,9 +62251,7 @@ export interface EventBusIntegrationPattern {
|
|
|
62731
62251
|
*
|
|
62732
62252
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
62733
62253
|
*/
|
|
62734
|
-
"detail-type"?:
|
|
62735
|
-
[k: string]: unknown;
|
|
62736
|
-
};
|
|
62254
|
+
"detail-type"?: any;
|
|
62737
62255
|
/**
|
|
62738
62256
|
* #### A filter for the `source` field of the event.
|
|
62739
62257
|
*
|
|
@@ -62741,9 +62259,7 @@ export interface EventBusIntegrationPattern {
|
|
|
62741
62259
|
*
|
|
62742
62260
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
62743
62261
|
*/
|
|
62744
|
-
source?:
|
|
62745
|
-
[k: string]: unknown;
|
|
62746
|
-
};
|
|
62262
|
+
source?: any;
|
|
62747
62263
|
/**
|
|
62748
62264
|
* #### A filter for the `account` field of the event.
|
|
62749
62265
|
*
|
|
@@ -62751,9 +62267,7 @@ export interface EventBusIntegrationPattern {
|
|
|
62751
62267
|
*
|
|
62752
62268
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
62753
62269
|
*/
|
|
62754
|
-
account?:
|
|
62755
|
-
[k: string]: unknown;
|
|
62756
|
-
};
|
|
62270
|
+
account?: any;
|
|
62757
62271
|
/**
|
|
62758
62272
|
* #### A filter for the `region` field of the event.
|
|
62759
62273
|
*
|
|
@@ -62761,9 +62275,7 @@ export interface EventBusIntegrationPattern {
|
|
|
62761
62275
|
*
|
|
62762
62276
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
62763
62277
|
*/
|
|
62764
|
-
region?:
|
|
62765
|
-
[k: string]: unknown;
|
|
62766
|
-
};
|
|
62278
|
+
region?: any;
|
|
62767
62279
|
/**
|
|
62768
62280
|
* #### A filter for the `resources` field of the event.
|
|
62769
62281
|
*
|
|
@@ -62771,9 +62283,7 @@ export interface EventBusIntegrationPattern {
|
|
|
62771
62283
|
*
|
|
62772
62284
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
62773
62285
|
*/
|
|
62774
|
-
resources?:
|
|
62775
|
-
[k: string]: unknown;
|
|
62776
|
-
};
|
|
62286
|
+
resources?: any;
|
|
62777
62287
|
/**
|
|
62778
62288
|
* #### A filter for the `detail` field of the event.
|
|
62779
62289
|
*
|
|
@@ -62782,9 +62292,7 @@ export interface EventBusIntegrationPattern {
|
|
|
62782
62292
|
* The `detail` field contains the main payload of the event as a JSON object. You can create complex matching rules based on its contents.
|
|
62783
62293
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
62784
62294
|
*/
|
|
62785
|
-
detail?:
|
|
62786
|
-
[k: string]: unknown;
|
|
62787
|
-
};
|
|
62295
|
+
detail?: any;
|
|
62788
62296
|
/**
|
|
62789
62297
|
* #### A filter for the `replay-name` field of the event.
|
|
62790
62298
|
*
|
|
@@ -62792,9 +62300,7 @@ export interface EventBusIntegrationPattern {
|
|
|
62792
62300
|
*
|
|
62793
62301
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
62794
62302
|
*/
|
|
62795
|
-
"replay-name"?:
|
|
62796
|
-
[k: string]: unknown;
|
|
62797
|
-
};
|
|
62303
|
+
"replay-name"?: any;
|
|
62798
62304
|
}
|
|
62799
62305
|
/**
|
|
62800
62306
|
* #### A destination for events that fail to be delivered to the target.
|
|
@@ -62840,9 +62346,7 @@ export interface EventInputTransformer1 {
|
|
|
62840
62346
|
*
|
|
62841
62347
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
62842
62348
|
*/
|
|
62843
|
-
inputPathsMap?:
|
|
62844
|
-
[k: string]: unknown;
|
|
62845
|
-
};
|
|
62349
|
+
inputPathsMap?: any;
|
|
62846
62350
|
/**
|
|
62847
62351
|
* #### A template for constructing a new event payload.
|
|
62848
62352
|
*
|
|
@@ -62850,9 +62354,7 @@ export interface EventInputTransformer1 {
|
|
|
62850
62354
|
*
|
|
62851
62355
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
62852
62356
|
*/
|
|
62853
|
-
inputTemplate:
|
|
62854
|
-
[k: string]: unknown;
|
|
62855
|
-
};
|
|
62357
|
+
inputTemplate: any;
|
|
62856
62358
|
}
|
|
62857
62359
|
export interface StpIamRoleStatement {
|
|
62858
62360
|
/**
|
|
@@ -62886,9 +62388,7 @@ export interface StpIamRoleStatement {
|
|
|
62886
62388
|
*
|
|
62887
62389
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
62888
62390
|
*/
|
|
62889
|
-
Condition?:
|
|
62890
|
-
[k: string]: unknown;
|
|
62891
|
-
};
|
|
62391
|
+
Condition?: any;
|
|
62892
62392
|
/**
|
|
62893
62393
|
* #### Resource
|
|
62894
62394
|
*
|
|
@@ -62968,7 +62468,7 @@ export interface Operator {
|
|
|
62968
62468
|
TimestampGreaterThanEquals?: string;
|
|
62969
62469
|
TimestampLessThan?: string;
|
|
62970
62470
|
TimestampLessThanEquals?: string;
|
|
62971
|
-
[k: string]:
|
|
62471
|
+
[k: string]: any;
|
|
62972
62472
|
}
|
|
62973
62473
|
export interface Fail {
|
|
62974
62474
|
Type: string;
|
|
@@ -62989,20 +62489,18 @@ export interface StateMachineMap {
|
|
|
62989
62489
|
ItemsPath?: string;
|
|
62990
62490
|
MaxConcurrency?: number;
|
|
62991
62491
|
Iterator: StpStateMachine;
|
|
62992
|
-
Parameters?:
|
|
62993
|
-
[k: string]: unknown;
|
|
62994
|
-
};
|
|
62492
|
+
Parameters?: any;
|
|
62995
62493
|
Retry?: {
|
|
62996
62494
|
ErrorEquals: string[];
|
|
62997
62495
|
IntervalSeconds?: number;
|
|
62998
62496
|
MaxAttempts?: number;
|
|
62999
62497
|
BackoffRate?: number;
|
|
63000
|
-
[k: string]:
|
|
62498
|
+
[k: string]: any;
|
|
63001
62499
|
}[];
|
|
63002
62500
|
Catch?: {
|
|
63003
62501
|
ErrorEquals: string[];
|
|
63004
62502
|
Next: string;
|
|
63005
|
-
[k: string]:
|
|
62503
|
+
[k: string]: any;
|
|
63006
62504
|
}[];
|
|
63007
62505
|
}
|
|
63008
62506
|
export interface StpStateMachine {
|
|
@@ -63057,12 +62555,12 @@ export interface Parallel {
|
|
|
63057
62555
|
IntervalSeconds?: number;
|
|
63058
62556
|
MaxAttempts?: number;
|
|
63059
62557
|
BackoffRate?: number;
|
|
63060
|
-
[k: string]:
|
|
62558
|
+
[k: string]: any;
|
|
63061
62559
|
}[];
|
|
63062
62560
|
Catch?: {
|
|
63063
62561
|
ErrorEquals: string[];
|
|
63064
62562
|
Next: string;
|
|
63065
|
-
[k: string]:
|
|
62563
|
+
[k: string]: any;
|
|
63066
62564
|
}[];
|
|
63067
62565
|
}
|
|
63068
62566
|
export interface Pass {
|
|
@@ -63073,10 +62571,8 @@ export interface Pass {
|
|
|
63073
62571
|
OutputPath?: string;
|
|
63074
62572
|
InputPath?: string;
|
|
63075
62573
|
ResultPath?: string;
|
|
63076
|
-
Parameters?:
|
|
63077
|
-
|
|
63078
|
-
};
|
|
63079
|
-
Result?: unknown;
|
|
62574
|
+
Parameters?: any;
|
|
62575
|
+
Result?: any;
|
|
63080
62576
|
}
|
|
63081
62577
|
export interface Succeed {
|
|
63082
62578
|
Type: string;
|
|
@@ -63091,7 +62587,7 @@ export interface Task {
|
|
|
63091
62587
|
InputPath?: string;
|
|
63092
62588
|
Resource:
|
|
63093
62589
|
| {
|
|
63094
|
-
[k: string]:
|
|
62590
|
+
[k: string]: any;
|
|
63095
62591
|
}
|
|
63096
62592
|
| string;
|
|
63097
62593
|
ResultPath?: string;
|
|
@@ -63100,18 +62596,16 @@ export interface Task {
|
|
|
63100
62596
|
IntervalSeconds?: number;
|
|
63101
62597
|
MaxAttempts?: number;
|
|
63102
62598
|
BackoffRate?: number;
|
|
63103
|
-
[k: string]:
|
|
62599
|
+
[k: string]: any;
|
|
63104
62600
|
}[];
|
|
63105
62601
|
Catch?: {
|
|
63106
62602
|
ErrorEquals: string[];
|
|
63107
62603
|
Next: string;
|
|
63108
|
-
[k: string]:
|
|
62604
|
+
[k: string]: any;
|
|
63109
62605
|
}[];
|
|
63110
62606
|
TimeoutSeconds?: number;
|
|
63111
62607
|
HeartbeatSeconds?: number;
|
|
63112
|
-
Parameters?:
|
|
63113
|
-
[k: string]: unknown;
|
|
63114
|
-
};
|
|
62608
|
+
Parameters?: any;
|
|
63115
62609
|
}
|
|
63116
62610
|
export interface Wait {
|
|
63117
62611
|
Type: string;
|
|
@@ -63633,9 +63127,7 @@ export interface StpIamRoleStatement {
|
|
|
63633
63127
|
*
|
|
63634
63128
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
63635
63129
|
*/
|
|
63636
|
-
Condition?:
|
|
63637
|
-
[k: string]: unknown;
|
|
63638
|
-
};
|
|
63130
|
+
Condition?: any;
|
|
63639
63131
|
/**
|
|
63640
63132
|
* #### Resource
|
|
63641
63133
|
*
|
|
@@ -65367,7 +64859,7 @@ export interface BucketAccessibility {
|
|
|
65367
64859
|
accessPolicyStatements?: BucketPolicyIamRoleStatement[];
|
|
65368
64860
|
}
|
|
65369
64861
|
export interface BucketPolicyIamRoleStatement {
|
|
65370
|
-
Principal:
|
|
64862
|
+
Principal: any;
|
|
65371
64863
|
/**
|
|
65372
64864
|
* #### Statement ID (Sid)
|
|
65373
64865
|
*
|
|
@@ -65399,9 +64891,7 @@ export interface BucketPolicyIamRoleStatement {
|
|
|
65399
64891
|
*
|
|
65400
64892
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
65401
64893
|
*/
|
|
65402
|
-
Condition?:
|
|
65403
|
-
[k: string]: unknown;
|
|
65404
|
-
};
|
|
64894
|
+
Condition?: any;
|
|
65405
64895
|
/**
|
|
65406
64896
|
* #### Resource
|
|
65407
64897
|
*
|
|
@@ -71869,9 +71359,7 @@ export interface SqsQueuePolicyStatement {
|
|
|
71869
71359
|
*
|
|
71870
71360
|
* For more details, see the [AWS documentation](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-basic-examples-of-sqs-policies.html).
|
|
71871
71361
|
*/
|
|
71872
|
-
Condition?:
|
|
71873
|
-
[k: string]: unknown;
|
|
71874
|
-
};
|
|
71362
|
+
Condition?: any;
|
|
71875
71363
|
/**
|
|
71876
71364
|
* #### The principal (user, role, or service) to which you are allowing or denying access.
|
|
71877
71365
|
*
|
|
@@ -71879,9 +71367,7 @@ export interface SqsQueuePolicyStatement {
|
|
|
71879
71367
|
*
|
|
71880
71368
|
* For more details, see the [AWS documentation](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-basic-examples-of-sqs-policies.html).
|
|
71881
71369
|
*/
|
|
71882
|
-
Principal:
|
|
71883
|
-
[k: string]: unknown;
|
|
71884
|
-
};
|
|
71370
|
+
Principal: any;
|
|
71885
71371
|
}
|
|
71886
71372
|
/**
|
|
71887
71373
|
* #### Delivers messages to an SQS queue when an event matching a specified pattern is received by an event bus.
|
|
@@ -71944,9 +71430,7 @@ export interface SqsQueueEventBusIntegration {
|
|
|
71944
71430
|
* source: 'my-custom-event'
|
|
71945
71431
|
* ```
|
|
71946
71432
|
*/
|
|
71947
|
-
input?:
|
|
71948
|
-
[k: string]: unknown;
|
|
71949
|
-
};
|
|
71433
|
+
input?: any;
|
|
71950
71434
|
/**
|
|
71951
71435
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
71952
71436
|
*
|
|
@@ -71981,9 +71465,7 @@ export interface EventBusIntegrationPattern {
|
|
|
71981
71465
|
*
|
|
71982
71466
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
71983
71467
|
*/
|
|
71984
|
-
version?:
|
|
71985
|
-
[k: string]: unknown;
|
|
71986
|
-
};
|
|
71468
|
+
version?: any;
|
|
71987
71469
|
/**
|
|
71988
71470
|
* #### A filter for the `detail-type` field of the event.
|
|
71989
71471
|
*
|
|
@@ -71991,9 +71473,7 @@ export interface EventBusIntegrationPattern {
|
|
|
71991
71473
|
*
|
|
71992
71474
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
71993
71475
|
*/
|
|
71994
|
-
"detail-type"?:
|
|
71995
|
-
[k: string]: unknown;
|
|
71996
|
-
};
|
|
71476
|
+
"detail-type"?: any;
|
|
71997
71477
|
/**
|
|
71998
71478
|
* #### A filter for the `source` field of the event.
|
|
71999
71479
|
*
|
|
@@ -72001,9 +71481,7 @@ export interface EventBusIntegrationPattern {
|
|
|
72001
71481
|
*
|
|
72002
71482
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
72003
71483
|
*/
|
|
72004
|
-
source?:
|
|
72005
|
-
[k: string]: unknown;
|
|
72006
|
-
};
|
|
71484
|
+
source?: any;
|
|
72007
71485
|
/**
|
|
72008
71486
|
* #### A filter for the `account` field of the event.
|
|
72009
71487
|
*
|
|
@@ -72011,9 +71489,7 @@ export interface EventBusIntegrationPattern {
|
|
|
72011
71489
|
*
|
|
72012
71490
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
72013
71491
|
*/
|
|
72014
|
-
account?:
|
|
72015
|
-
[k: string]: unknown;
|
|
72016
|
-
};
|
|
71492
|
+
account?: any;
|
|
72017
71493
|
/**
|
|
72018
71494
|
* #### A filter for the `region` field of the event.
|
|
72019
71495
|
*
|
|
@@ -72021,9 +71497,7 @@ export interface EventBusIntegrationPattern {
|
|
|
72021
71497
|
*
|
|
72022
71498
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
72023
71499
|
*/
|
|
72024
|
-
region?:
|
|
72025
|
-
[k: string]: unknown;
|
|
72026
|
-
};
|
|
71500
|
+
region?: any;
|
|
72027
71501
|
/**
|
|
72028
71502
|
* #### A filter for the `resources` field of the event.
|
|
72029
71503
|
*
|
|
@@ -72031,9 +71505,7 @@ export interface EventBusIntegrationPattern {
|
|
|
72031
71505
|
*
|
|
72032
71506
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
72033
71507
|
*/
|
|
72034
|
-
resources?:
|
|
72035
|
-
[k: string]: unknown;
|
|
72036
|
-
};
|
|
71508
|
+
resources?: any;
|
|
72037
71509
|
/**
|
|
72038
71510
|
* #### A filter for the `detail` field of the event.
|
|
72039
71511
|
*
|
|
@@ -72042,9 +71514,7 @@ export interface EventBusIntegrationPattern {
|
|
|
72042
71514
|
* The `detail` field contains the main payload of the event as a JSON object. You can create complex matching rules based on its contents.
|
|
72043
71515
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
72044
71516
|
*/
|
|
72045
|
-
detail?:
|
|
72046
|
-
[k: string]: unknown;
|
|
72047
|
-
};
|
|
71517
|
+
detail?: any;
|
|
72048
71518
|
/**
|
|
72049
71519
|
* #### A filter for the `replay-name` field of the event.
|
|
72050
71520
|
*
|
|
@@ -72052,9 +71522,7 @@ export interface EventBusIntegrationPattern {
|
|
|
72052
71522
|
*
|
|
72053
71523
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
72054
71524
|
*/
|
|
72055
|
-
"replay-name"?:
|
|
72056
|
-
[k: string]: unknown;
|
|
72057
|
-
};
|
|
71525
|
+
"replay-name"?: any;
|
|
72058
71526
|
}
|
|
72059
71527
|
/**
|
|
72060
71528
|
* #### A destination for events that fail to be delivered to the target.
|
|
@@ -72100,9 +71568,7 @@ export interface EventInputTransformer {
|
|
|
72100
71568
|
*
|
|
72101
71569
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
72102
71570
|
*/
|
|
72103
|
-
inputPathsMap?:
|
|
72104
|
-
[k: string]: unknown;
|
|
72105
|
-
};
|
|
71571
|
+
inputPathsMap?: any;
|
|
72106
71572
|
/**
|
|
72107
71573
|
* #### A template for constructing a new event payload.
|
|
72108
71574
|
*
|
|
@@ -72110,9 +71576,7 @@ export interface EventInputTransformer {
|
|
|
72110
71576
|
*
|
|
72111
71577
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
72112
71578
|
*/
|
|
72113
|
-
inputTemplate:
|
|
72114
|
-
[k: string]: unknown;
|
|
72115
|
-
};
|
|
71579
|
+
inputTemplate: any;
|
|
72116
71580
|
}
|
|
72117
71581
|
|
|
72118
71582
|
|
|
@@ -73389,9 +72853,7 @@ export interface StpIamRoleStatement {
|
|
|
73389
72853
|
*
|
|
73390
72854
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
73391
72855
|
*/
|
|
73392
|
-
Condition?:
|
|
73393
|
-
[k: string]: unknown;
|
|
73394
|
-
};
|
|
72856
|
+
Condition?: any;
|
|
73395
72857
|
/**
|
|
73396
72858
|
* #### Resource
|
|
73397
72859
|
*
|
|
@@ -74621,9 +74083,7 @@ export interface ScheduleIntegrationProps {
|
|
|
74621
74083
|
* source: 'my-scheduled-event'
|
|
74622
74084
|
* ```
|
|
74623
74085
|
*/
|
|
74624
|
-
input?:
|
|
74625
|
-
[k: string]: unknown;
|
|
74626
|
-
};
|
|
74086
|
+
input?: any;
|
|
74627
74087
|
/**
|
|
74628
74088
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
74629
74089
|
*
|
|
@@ -74667,9 +74127,7 @@ export interface EventInputTransformer {
|
|
|
74667
74127
|
*
|
|
74668
74128
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
74669
74129
|
*/
|
|
74670
|
-
inputPathsMap?:
|
|
74671
|
-
[k: string]: unknown;
|
|
74672
|
-
};
|
|
74130
|
+
inputPathsMap?: any;
|
|
74673
74131
|
/**
|
|
74674
74132
|
* #### A template for constructing a new event payload.
|
|
74675
74133
|
*
|
|
@@ -74677,9 +74135,7 @@ export interface EventInputTransformer {
|
|
|
74677
74135
|
*
|
|
74678
74136
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
74679
74137
|
*/
|
|
74680
|
-
inputTemplate:
|
|
74681
|
-
[k: string]: unknown;
|
|
74682
|
-
};
|
|
74138
|
+
inputTemplate: any;
|
|
74683
74139
|
}
|
|
74684
74140
|
|
|
74685
74141
|
|
|
@@ -74710,9 +74166,7 @@ export interface SnsIntegrationProps {
|
|
|
74710
74166
|
* If you need to filter based on the message content, consider using an EventBridge event bus instead.
|
|
74711
74167
|
* For more details on filter policies, see the [AWS documentation](https://docs.aws.amazon.com/sns/latest/dg/sns-subscription-filter-policies.html).
|
|
74712
74168
|
*/
|
|
74713
|
-
filterPolicy?:
|
|
74714
|
-
[k: string]: unknown;
|
|
74715
|
-
};
|
|
74169
|
+
filterPolicy?: any;
|
|
74716
74170
|
onDeliveryFailure?: SnsOnDeliveryFailure;
|
|
74717
74171
|
}
|
|
74718
74172
|
/**
|
|
@@ -75095,9 +74549,7 @@ export interface EventBusIntegrationProps {
|
|
|
75095
74549
|
* source: 'my-custom-event'
|
|
75096
74550
|
* ```
|
|
75097
74551
|
*/
|
|
75098
|
-
input?:
|
|
75099
|
-
[k: string]: unknown;
|
|
75100
|
-
};
|
|
74552
|
+
input?: any;
|
|
75101
74553
|
/**
|
|
75102
74554
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
75103
74555
|
*
|
|
@@ -75131,9 +74583,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75131
74583
|
*
|
|
75132
74584
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75133
74585
|
*/
|
|
75134
|
-
version?:
|
|
75135
|
-
[k: string]: unknown;
|
|
75136
|
-
};
|
|
74586
|
+
version?: any;
|
|
75137
74587
|
/**
|
|
75138
74588
|
* #### A filter for the `detail-type` field of the event.
|
|
75139
74589
|
*
|
|
@@ -75141,9 +74591,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75141
74591
|
*
|
|
75142
74592
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75143
74593
|
*/
|
|
75144
|
-
"detail-type"?:
|
|
75145
|
-
[k: string]: unknown;
|
|
75146
|
-
};
|
|
74594
|
+
"detail-type"?: any;
|
|
75147
74595
|
/**
|
|
75148
74596
|
* #### A filter for the `source` field of the event.
|
|
75149
74597
|
*
|
|
@@ -75151,9 +74599,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75151
74599
|
*
|
|
75152
74600
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75153
74601
|
*/
|
|
75154
|
-
source?:
|
|
75155
|
-
[k: string]: unknown;
|
|
75156
|
-
};
|
|
74602
|
+
source?: any;
|
|
75157
74603
|
/**
|
|
75158
74604
|
* #### A filter for the `account` field of the event.
|
|
75159
74605
|
*
|
|
@@ -75161,9 +74607,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75161
74607
|
*
|
|
75162
74608
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75163
74609
|
*/
|
|
75164
|
-
account?:
|
|
75165
|
-
[k: string]: unknown;
|
|
75166
|
-
};
|
|
74610
|
+
account?: any;
|
|
75167
74611
|
/**
|
|
75168
74612
|
* #### A filter for the `region` field of the event.
|
|
75169
74613
|
*
|
|
@@ -75171,9 +74615,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75171
74615
|
*
|
|
75172
74616
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75173
74617
|
*/
|
|
75174
|
-
region?:
|
|
75175
|
-
[k: string]: unknown;
|
|
75176
|
-
};
|
|
74618
|
+
region?: any;
|
|
75177
74619
|
/**
|
|
75178
74620
|
* #### A filter for the `resources` field of the event.
|
|
75179
74621
|
*
|
|
@@ -75181,9 +74623,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75181
74623
|
*
|
|
75182
74624
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75183
74625
|
*/
|
|
75184
|
-
resources?:
|
|
75185
|
-
[k: string]: unknown;
|
|
75186
|
-
};
|
|
74626
|
+
resources?: any;
|
|
75187
74627
|
/**
|
|
75188
74628
|
* #### A filter for the `detail` field of the event.
|
|
75189
74629
|
*
|
|
@@ -75192,9 +74632,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75192
74632
|
* The `detail` field contains the main payload of the event as a JSON object. You can create complex matching rules based on its contents.
|
|
75193
74633
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75194
74634
|
*/
|
|
75195
|
-
detail?:
|
|
75196
|
-
[k: string]: unknown;
|
|
75197
|
-
};
|
|
74635
|
+
detail?: any;
|
|
75198
74636
|
/**
|
|
75199
74637
|
* #### A filter for the `replay-name` field of the event.
|
|
75200
74638
|
*
|
|
@@ -75202,9 +74640,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75202
74640
|
*
|
|
75203
74641
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75204
74642
|
*/
|
|
75205
|
-
"replay-name"?:
|
|
75206
|
-
[k: string]: unknown;
|
|
75207
|
-
};
|
|
74643
|
+
"replay-name"?: any;
|
|
75208
74644
|
}
|
|
75209
74645
|
/**
|
|
75210
74646
|
* #### A destination for events that fail to be delivered to the target.
|
|
@@ -75250,9 +74686,7 @@ export interface EventInputTransformer {
|
|
|
75250
74686
|
*
|
|
75251
74687
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
75252
74688
|
*/
|
|
75253
|
-
inputPathsMap?:
|
|
75254
|
-
[k: string]: unknown;
|
|
75255
|
-
};
|
|
74689
|
+
inputPathsMap?: any;
|
|
75256
74690
|
/**
|
|
75257
74691
|
* #### A template for constructing a new event payload.
|
|
75258
74692
|
*
|
|
@@ -75260,9 +74694,7 @@ export interface EventInputTransformer {
|
|
|
75260
74694
|
*
|
|
75261
74695
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
75262
74696
|
*/
|
|
75263
|
-
inputTemplate:
|
|
75264
|
-
[k: string]: unknown;
|
|
75265
|
-
};
|
|
74697
|
+
inputTemplate: any;
|
|
75266
74698
|
}
|
|
75267
74699
|
|
|
75268
74700
|
|
|
@@ -75715,9 +75147,7 @@ export interface SqsQueueEventBusIntegrationProps {
|
|
|
75715
75147
|
* source: 'my-custom-event'
|
|
75716
75148
|
* ```
|
|
75717
75149
|
*/
|
|
75718
|
-
input?:
|
|
75719
|
-
[k: string]: unknown;
|
|
75720
|
-
};
|
|
75150
|
+
input?: any;
|
|
75721
75151
|
/**
|
|
75722
75152
|
* #### A JSONPath expression to extract a portion of the event to pass to the target.
|
|
75723
75153
|
*
|
|
@@ -75751,9 +75181,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75751
75181
|
*
|
|
75752
75182
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75753
75183
|
*/
|
|
75754
|
-
version?:
|
|
75755
|
-
[k: string]: unknown;
|
|
75756
|
-
};
|
|
75184
|
+
version?: any;
|
|
75757
75185
|
/**
|
|
75758
75186
|
* #### A filter for the `detail-type` field of the event.
|
|
75759
75187
|
*
|
|
@@ -75761,9 +75189,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75761
75189
|
*
|
|
75762
75190
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75763
75191
|
*/
|
|
75764
|
-
"detail-type"?:
|
|
75765
|
-
[k: string]: unknown;
|
|
75766
|
-
};
|
|
75192
|
+
"detail-type"?: any;
|
|
75767
75193
|
/**
|
|
75768
75194
|
* #### A filter for the `source` field of the event.
|
|
75769
75195
|
*
|
|
@@ -75771,9 +75197,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75771
75197
|
*
|
|
75772
75198
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75773
75199
|
*/
|
|
75774
|
-
source?:
|
|
75775
|
-
[k: string]: unknown;
|
|
75776
|
-
};
|
|
75200
|
+
source?: any;
|
|
75777
75201
|
/**
|
|
75778
75202
|
* #### A filter for the `account` field of the event.
|
|
75779
75203
|
*
|
|
@@ -75781,9 +75205,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75781
75205
|
*
|
|
75782
75206
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75783
75207
|
*/
|
|
75784
|
-
account?:
|
|
75785
|
-
[k: string]: unknown;
|
|
75786
|
-
};
|
|
75208
|
+
account?: any;
|
|
75787
75209
|
/**
|
|
75788
75210
|
* #### A filter for the `region` field of the event.
|
|
75789
75211
|
*
|
|
@@ -75791,9 +75213,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75791
75213
|
*
|
|
75792
75214
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75793
75215
|
*/
|
|
75794
|
-
region?:
|
|
75795
|
-
[k: string]: unknown;
|
|
75796
|
-
};
|
|
75216
|
+
region?: any;
|
|
75797
75217
|
/**
|
|
75798
75218
|
* #### A filter for the `resources` field of the event.
|
|
75799
75219
|
*
|
|
@@ -75801,9 +75221,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75801
75221
|
*
|
|
75802
75222
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75803
75223
|
*/
|
|
75804
|
-
resources?:
|
|
75805
|
-
[k: string]: unknown;
|
|
75806
|
-
};
|
|
75224
|
+
resources?: any;
|
|
75807
75225
|
/**
|
|
75808
75226
|
* #### A filter for the `detail` field of the event.
|
|
75809
75227
|
*
|
|
@@ -75812,9 +75230,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75812
75230
|
* The `detail` field contains the main payload of the event as a JSON object. You can create complex matching rules based on its contents.
|
|
75813
75231
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75814
75232
|
*/
|
|
75815
|
-
detail?:
|
|
75816
|
-
[k: string]: unknown;
|
|
75817
|
-
};
|
|
75233
|
+
detail?: any;
|
|
75818
75234
|
/**
|
|
75819
75235
|
* #### A filter for the `replay-name` field of the event.
|
|
75820
75236
|
*
|
|
@@ -75822,9 +75238,7 @@ export interface EventBusIntegrationPattern {
|
|
|
75822
75238
|
*
|
|
75823
75239
|
* For more details on event patterns, see the [AWS EventBridge documentation](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html).
|
|
75824
75240
|
*/
|
|
75825
|
-
"replay-name"?:
|
|
75826
|
-
[k: string]: unknown;
|
|
75827
|
-
};
|
|
75241
|
+
"replay-name"?: any;
|
|
75828
75242
|
}
|
|
75829
75243
|
/**
|
|
75830
75244
|
* #### A destination for events that fail to be delivered to the target.
|
|
@@ -75870,9 +75284,7 @@ export interface EventInputTransformer {
|
|
|
75870
75284
|
*
|
|
75871
75285
|
* Each value is a JSONPath expression that extracts data from the event. These extracted values can then be used in the `inputTemplate`.
|
|
75872
75286
|
*/
|
|
75873
|
-
inputPathsMap?:
|
|
75874
|
-
[k: string]: unknown;
|
|
75875
|
-
};
|
|
75287
|
+
inputPathsMap?: any;
|
|
75876
75288
|
/**
|
|
75877
75289
|
* #### A template for constructing a new event payload.
|
|
75878
75290
|
*
|
|
@@ -75880,9 +75292,7 @@ export interface EventInputTransformer {
|
|
|
75880
75292
|
*
|
|
75881
75293
|
* Use placeholders (`<placeholder>`) to insert the values extracted with `inputPathsMap`.
|
|
75882
75294
|
*/
|
|
75883
|
-
inputTemplate:
|
|
75884
|
-
[k: string]: unknown;
|
|
75885
|
-
};
|
|
75295
|
+
inputTemplate: any;
|
|
75886
75296
|
}
|
|
75887
75297
|
|
|
75888
75298
|
|
|
@@ -79230,9 +78640,7 @@ export interface StpIamRoleStatement {
|
|
|
79230
78640
|
*
|
|
79231
78641
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
79232
78642
|
*/
|
|
79233
|
-
Condition?:
|
|
79234
|
-
[k: string]: unknown;
|
|
79235
|
-
};
|
|
78643
|
+
Condition?: any;
|
|
79236
78644
|
/**
|
|
79237
78645
|
* #### Resource
|
|
79238
78646
|
*
|
|
@@ -79256,9 +78664,7 @@ export interface CustomResourceInstanceProps {
|
|
|
79256
78664
|
*
|
|
79257
78665
|
* These properties will be accessible to the custom resource Lambda function during execution.
|
|
79258
78666
|
*/
|
|
79259
|
-
resourceProperties:
|
|
79260
|
-
[k: string]: unknown;
|
|
79261
|
-
};
|
|
78667
|
+
resourceProperties: any;
|
|
79262
78668
|
}
|
|
79263
78669
|
|
|
79264
78670
|
|
|
@@ -79331,9 +78737,7 @@ export interface DeploymentScriptProps {
|
|
|
79331
78737
|
*
|
|
79332
78738
|
* > **Note:** You cannot pass secrets using this property. Use `environment` variables for secrets.
|
|
79333
78739
|
*/
|
|
79334
|
-
parameters?:
|
|
79335
|
-
[k: string]: unknown;
|
|
79336
|
-
};
|
|
78740
|
+
parameters?: any;
|
|
79337
78741
|
/**
|
|
79338
78742
|
* #### The amount of memory (in MB) to allocate to the script's Lambda function.
|
|
79339
78743
|
*
|
|
@@ -79730,9 +79134,7 @@ export interface StpIamRoleStatement {
|
|
|
79730
79134
|
*
|
|
79731
79135
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
79732
79136
|
*/
|
|
79733
|
-
Condition?:
|
|
79734
|
-
[k: string]: unknown;
|
|
79735
|
-
};
|
|
79137
|
+
Condition?: any;
|
|
79736
79138
|
/**
|
|
79737
79139
|
* #### Resource
|
|
79738
79140
|
*
|
|
@@ -79831,9 +79233,7 @@ export interface StpIamRoleStatement {
|
|
|
79831
79233
|
*
|
|
79832
79234
|
* Specifies the conditions under which the statement is in effect. For more information, see the [AWS documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies-introduction).
|
|
79833
79235
|
*/
|
|
79834
|
-
Condition?:
|
|
79835
|
-
[k: string]: unknown;
|
|
79836
|
-
};
|
|
79236
|
+
Condition?: any;
|
|
79837
79237
|
/**
|
|
79838
79238
|
* #### Resource
|
|
79839
79239
|
*
|