@propulsionworks/cloudformation 0.1.24 → 0.1.25
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/out/exports/resources.generated/aws-batch-computeenvironment.d.ts +3 -1
- package/out/exports/resources.generated/aws-bedrock-automatedreasoningpolicy.d.ts +40 -15
- package/out/exports/resources.generated/aws-bedrock-automatedreasoningpolicyversion.d.ts +12 -0
- package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +1 -0
- package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +6 -4
- package/out/exports/resources.generated/aws-ec2-instance.d.ts +1 -1
- package/out/exports/resources.generated/aws-ec2-spotfleet.d.ts +1 -1
- package/out/exports/resources.generated/aws-ecs-service.d.ts +4 -1
- package/out/exports/resources.generated/aws-iotsitewise-accesspolicy.d.ts +4 -0
- package/out/exports/resources.generated/aws-ivs-stage.d.ts +53 -35
- package/out/exports/resources.generated/aws-lex-bot.d.ts +6 -0
- package/out/exports/resources.generated/aws-notifications-organizationalunitassociation.d.ts +26 -0
- package/out/exports/resources.generated/aws-omics-workflow.d.ts +2 -2
- package/out/exports/resources.generated/aws-pcs-cluster.d.ts +17 -6
- package/out/exports/resources.generated/aws-pcs-computenodegroup.d.ts +12 -7
- package/out/exports/resources.generated/aws-pcs-queue.d.ts +5 -3
- package/out/exports/resources.generated/aws-s3tables-namespace.d.ts +9 -1
- package/out/exports/resources.generated/aws-s3tables-table.d.ts +20 -12
- package/out/exports/resources.generated/aws-s3tables-tablebucket.d.ts +8 -0
- package/out/exports/resources.generated/aws-s3tables-tablebucketpolicy.d.ts +10 -2
- package/out/exports/resources.generated/aws-s3tables-tablepolicy.d.ts +15 -6
- package/out/exports/resources.generated/aws-secretsmanager-rotationschedule.d.ts +3 -3
- package/out/exports/resources.generated/aws-ses-configurationset.d.ts +2 -2
- package/out/exports/resources.generated/aws-ses-mailmanageraddonsubscription.d.ts +1 -1
- package/out/exports/resources.generated/aws-ses-mailmanageraddresslist.d.ts +6 -2
- package/out/exports/resources.generated/aws-ses-mailmanagertrafficpolicy.d.ts +8 -0
- package/out/exports/resources.generated/aws-ses-receiptrule.d.ts +1 -0
- package/out/exports/resources.generated/aws-synthetics-canary.d.ts +11 -3
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Creates an AWS PCS cluster resource. For more information, see [Creating a cluster in AWS Parallel Computing Service](https://docs.aws.amazon.com/pcs/latest/userguide/working-with_clusters_create.html) in the *AWS PCS User Guide* .
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-cluster.html}
|
|
5
5
|
*/
|
|
6
6
|
export type PCSCluster = ResourceDefinitionWithAttributes<"AWS::PCS::Cluster", PCSClusterProps, PCSClusterAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Creates an AWS PCS cluster resource. For more information, see [Creating a cluster in AWS Parallel Computing Service](https://docs.aws.amazon.com/pcs/latest/userguide/working-with_clusters_create.html) in the *AWS PCS User Guide* .
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-cluster.html}
|
|
10
10
|
*/
|
|
11
11
|
export type PCSClusterProps = {
|
|
@@ -48,6 +48,10 @@ export type PCSClusterProps = {
|
|
|
48
48
|
};
|
|
49
49
|
/**
|
|
50
50
|
* The size of the cluster.
|
|
51
|
+
*
|
|
52
|
+
* - `SMALL` : 32 compute nodes and 256 jobs
|
|
53
|
+
* - `MEDIUM` : 512 compute nodes and 8192 jobs
|
|
54
|
+
* - `LARGE` : 2048 compute nodes and 16,384 jobs
|
|
51
55
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-cluster.html#cfn-pcs-cluster-size}
|
|
52
56
|
*/
|
|
53
57
|
Size: "SMALL" | "MEDIUM" | "LARGE";
|
|
@@ -90,20 +94,24 @@ export type PCSClusterAttribs = {
|
|
|
90
94
|
*/
|
|
91
95
|
Id: string;
|
|
92
96
|
/**
|
|
93
|
-
* The provisioning status of the cluster.
|
|
97
|
+
* The provisioning status of the cluster.
|
|
98
|
+
*
|
|
99
|
+
* > The provisioning status doesn't indicate the overall health of the cluster. > The resource enters the `SUSPENDING` and `SUSPENDED` states when the scheduler is beyond end of life and we have suspended the cluster. When in these states, you can't use the cluster. The cluster controller is down and all compute instances are terminated. The resources still count toward your service quotas. You can delete a resource if its status is `SUSPENDED` . For more information, see [Frequently asked questions about Slurm versions in AWS PCS](https://docs.aws.amazon.com//pcs/latest/userguide/slurm-versions_faq.html) in the *AWS PCS User Guide* .
|
|
94
100
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-cluster.html#cfn-pcs-cluster-status}
|
|
95
101
|
*/
|
|
96
102
|
Status: "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED";
|
|
97
103
|
};
|
|
98
104
|
/**
|
|
99
|
-
* The accounting configuration includes configurable settings for Slurm accounting.
|
|
105
|
+
* The accounting configuration includes configurable settings for Slurm accounting.
|
|
100
106
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-accounting.html}
|
|
101
107
|
*/
|
|
102
108
|
export type Accounting = {
|
|
103
109
|
/**
|
|
104
110
|
* The default value for all purge settings for `slurmdbd.conf` . For more information, see the [slurmdbd.conf documentation at SchedMD](https://docs.aws.amazon.com/https://slurm.schedmd.com/slurmdbd.conf.html) .
|
|
105
111
|
*
|
|
106
|
-
* The default value
|
|
112
|
+
* The default value for `defaultPurgeTimeInDays` is `-1` .
|
|
113
|
+
*
|
|
114
|
+
* A value of `-1` means there is no purge time and records persist as long as the cluster exists.
|
|
107
115
|
*
|
|
108
116
|
* > `0` isn't a valid value.
|
|
109
117
|
* @min -1
|
|
@@ -125,7 +133,7 @@ export type Accounting = {
|
|
|
125
133
|
*/
|
|
126
134
|
export type AuthKey = {
|
|
127
135
|
/**
|
|
128
|
-
* The Amazon Resource Name (ARN) of the shared Slurm key.
|
|
136
|
+
* The Amazon Resource Name (ARN) of the the shared Slurm key.
|
|
129
137
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-authkey.html#cfn-pcs-cluster-authkey-secretarn}
|
|
130
138
|
*/
|
|
131
139
|
SecretArn: string;
|
|
@@ -148,6 +156,9 @@ export type SlurmCustomSetting = {
|
|
|
148
156
|
* - [`Prolog`](https://docs.aws.amazon.com/https://slurm.schedmd.com/slurm.conf.html#OPT_Prolog_1)
|
|
149
157
|
* - [`Epilog`](https://docs.aws.amazon.com/https://slurm.schedmd.com/slurm.conf.html#OPT_Epilog_1)
|
|
150
158
|
* - [`SelectTypeParameters`](https://docs.aws.amazon.com/https://slurm.schedmd.com/slurm.conf.html#OPT_SelectTypeParameters)
|
|
159
|
+
* - [`AccountingStorageEnforce`](https://docs.aws.amazon.com/https://slurm.schedmd.com/slurm.conf.html#OPT_AccountingStorageEnforce)
|
|
160
|
+
*
|
|
161
|
+
* > AWS PCS supports a subset of the options for `AccountingStorageEnforce` . For more information, see [Slurm accounting in AWS PCS](https://docs.aws.amazon.com//pcs/latest/userguide/slurm-accounting.html) in the *AWS PCS User Guide* .
|
|
151
162
|
* - For *compute node groups*
|
|
152
163
|
*
|
|
153
164
|
* - [`Weight`](https://docs.aws.amazon.com/https://slurm.schedmd.com/slurm.conf.html#OPT_Weight)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Creates an AWS PCS compute node group resource. For more information, see [Creating a compute node group in AWS PCS](https://docs.aws.amazon.com/pcs/latest/userguide/working-with_cng_create.html) in the *AWS PCS User Guide* .
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html}
|
|
5
5
|
*/
|
|
6
6
|
export type PCSComputeNodeGroup = ResourceDefinitionWithAttributes<"AWS::PCS::ComputeNodeGroup", PCSComputeNodeGroupProps, PCSComputeNodeGroupAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Creates an AWS PCS compute node group resource. For more information, see [Creating a compute node group in AWS PCS](https://docs.aws.amazon.com/pcs/latest/userguide/working-with_cng_create.html) in the *AWS PCS User Guide* .
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html}
|
|
10
10
|
*/
|
|
11
11
|
export type PCSComputeNodeGroupProps = {
|
|
@@ -35,13 +35,13 @@ export type PCSComputeNodeGroupProps = {
|
|
|
35
35
|
Version: string;
|
|
36
36
|
};
|
|
37
37
|
/**
|
|
38
|
-
* The Amazon Resource Name (ARN) of the IAM instance profile used to pass an IAM role when launching EC2 instances. The role contained in your instance profile must have pcs:RegisterComputeNodeGroupInstance
|
|
38
|
+
* The Amazon Resource Name (ARN) of the IAM instance profile used to pass an IAM role when launching EC2 instances. The role contained in your instance profile must have the `pcs:RegisterComputeNodeGroupInstance` permission and the role name must start with `AWSPCS` or must have the path `/aws-pcs/` . For more information, see [IAM instance profiles for AWS PCS](https://docs.aws.amazon.com//pcs/latest/userguide/security-instance-profiles.html) in the *AWS PCS User Guide* .
|
|
39
39
|
* @pattern ^arn:aws([a-zA-Z-]{0,10})?:iam::[0-9]{12}:instance-profile/.{1,128}$
|
|
40
40
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html#cfn-pcs-computenodegroup-iaminstanceprofilearn}
|
|
41
41
|
*/
|
|
42
42
|
IamInstanceProfileArn: string;
|
|
43
43
|
/**
|
|
44
|
-
* A list of EC2 instance configurations that AWS PCS can provision in the compute node group.
|
|
44
|
+
* A list of EC2 instance configurations that AWS AWS PCS can provision in the compute node group.
|
|
45
45
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html#cfn-pcs-computenodegroup-instanceconfigs}
|
|
46
46
|
*/
|
|
47
47
|
InstanceConfigs: InstanceConfig[];
|
|
@@ -51,7 +51,7 @@ export type PCSComputeNodeGroupProps = {
|
|
|
51
51
|
*/
|
|
52
52
|
Name?: string | undefined;
|
|
53
53
|
/**
|
|
54
|
-
* Specifies how EC2 instances are purchased on your behalf. AWS PCS supports On-Demand and Spot instances. For more information, see Instance purchasing options in the Amazon Elastic Compute Cloud User Guide. If you don't provide this option, it defaults to On-Demand.
|
|
54
|
+
* Specifies how EC2 instances are purchased on your behalf. AWS AWS PCS supports On-Demand and Spot instances. For more information, see [Instance purchasing options](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-purchasing-options.html) in the *Amazon Elastic Compute Cloud User Guide* . If you don't provide this option, it defaults to On-Demand.
|
|
55
55
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html#cfn-pcs-computenodegroup-purchaseoption}
|
|
56
56
|
*/
|
|
57
57
|
PurchaseOption?: "ONDEMAND" | "SPOT" | undefined;
|
|
@@ -82,7 +82,7 @@ export type PCSComputeNodeGroupProps = {
|
|
|
82
82
|
SlurmCustomSettings?: SlurmCustomSetting[] | undefined;
|
|
83
83
|
} | undefined;
|
|
84
84
|
/**
|
|
85
|
-
* Additional configuration when you specify `SPOT` as the `purchaseOption` .
|
|
85
|
+
* Additional configuration when you specify `SPOT` as the `purchaseOption` for the `CreateComputeNodeGroup` API action.
|
|
86
86
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html#cfn-pcs-computenodegroup-spotoptions}
|
|
87
87
|
*/
|
|
88
88
|
SpotOptions?: {
|
|
@@ -117,7 +117,9 @@ export type PCSComputeNodeGroupAttribs = {
|
|
|
117
117
|
*/
|
|
118
118
|
Id: string;
|
|
119
119
|
/**
|
|
120
|
-
* The provisioning status of the compute node group.
|
|
120
|
+
* The provisioning status of the compute node group.
|
|
121
|
+
*
|
|
122
|
+
* > The provisioning status doesn't indicate the overall health of the compute node group. > The resource enters the `SUSPENDING` and `SUSPENDED` states when the scheduler is beyond end of life and we have suspended the cluster. When in these states, you can't use the cluster. The cluster controller is down and all compute instances are terminated. The resources still count toward your service quotas. You can delete a resource if its status is `SUSPENDED` . For more information, see [Frequently asked questions about Slurm versions in AWS PCS](https://docs.aws.amazon.com//pcs/latest/userguide/slurm-versions_faq.html) in the *AWS PCS User Guide* .
|
|
121
123
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-computenodegroup.html#cfn-pcs-computenodegroup-status}
|
|
122
124
|
*/
|
|
123
125
|
Status: "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED";
|
|
@@ -148,6 +150,9 @@ export type SlurmCustomSetting = {
|
|
|
148
150
|
* - [`Prolog`](https://docs.aws.amazon.com/https://slurm.schedmd.com/slurm.conf.html#OPT_Prolog_1)
|
|
149
151
|
* - [`Epilog`](https://docs.aws.amazon.com/https://slurm.schedmd.com/slurm.conf.html#OPT_Epilog_1)
|
|
150
152
|
* - [`SelectTypeParameters`](https://docs.aws.amazon.com/https://slurm.schedmd.com/slurm.conf.html#OPT_SelectTypeParameters)
|
|
153
|
+
* - [`AccountingStorageEnforce`](https://docs.aws.amazon.com/https://slurm.schedmd.com/slurm.conf.html#OPT_AccountingStorageEnforce)
|
|
154
|
+
*
|
|
155
|
+
* > AWS PCS supports a subset of the options for `AccountingStorageEnforce` . For more information, see [Slurm accounting in AWS PCS](https://docs.aws.amazon.com//pcs/latest/userguide/slurm-accounting.html) in the *AWS PCS User Guide* .
|
|
151
156
|
* - For *compute node groups*
|
|
152
157
|
*
|
|
153
158
|
* - [`Weight`](https://docs.aws.amazon.com/https://slurm.schedmd.com/slurm.conf.html#OPT_Weight)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Creates an AWS PCS queue resource. For more information, see [Creating a queue in AWS PCS](https://docs.aws.amazon.com/pcs/latest/userguide/working-with_queues_create.html) in the *AWS PCS User Guide* .
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-queue.html}
|
|
5
5
|
*/
|
|
6
6
|
export type PCSQueue = ResourceDefinitionWithAttributes<"AWS::PCS::Queue", PCSQueueProps, PCSQueueAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Creates an AWS PCS queue resource. For more information, see [Creating a queue in AWS PCS](https://docs.aws.amazon.com/pcs/latest/userguide/working-with_queues_create.html) in the *AWS PCS User Guide* .
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-queue.html}
|
|
10
10
|
*/
|
|
11
11
|
export type PCSQueueProps = {
|
|
@@ -46,7 +46,9 @@ export type PCSQueueAttribs = {
|
|
|
46
46
|
*/
|
|
47
47
|
Id: string;
|
|
48
48
|
/**
|
|
49
|
-
* The provisioning status of the queue.
|
|
49
|
+
* The provisioning status of the queue.
|
|
50
|
+
*
|
|
51
|
+
* > The provisioning status doesn't indicate the overall health of the queue. > The resource enters the `SUSPENDING` and `SUSPENDED` states when the scheduler is beyond end of life and we have suspended the cluster. When in these states, you can't use the cluster. The cluster controller is down and all compute instances are terminated. The resources still count toward your service quotas. You can delete a resource if its status is `SUSPENDED` . For more information, see [Frequently asked questions about Slurm versions in AWS PCS](https://docs.aws.amazon.com//pcs/latest/userguide/slurm-versions_faq.html) in the *AWS PCS User Guide* .
|
|
50
52
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-queue.html#cfn-pcs-queue-status}
|
|
51
53
|
*/
|
|
52
54
|
Status: "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED";
|
|
@@ -3,6 +3,10 @@ import type { ResourceDefinition } from "../main.ts";
|
|
|
3
3
|
* Creates a namespace. A namespace is a logical grouping of tables within your table bucket, which you can use to organize tables. For more information, see [Create a namespace](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-namespace-create.html) in the *Amazon Simple Storage Service User Guide* .
|
|
4
4
|
*
|
|
5
5
|
* - **Permissions** - You must have the `s3tables:CreateNamespace` permission to use this operation.
|
|
6
|
+
* - **Cloud Development Kit** - To use S3 Tables AWS CDK constructs, add the `@aws-cdk/aws-s3tables-alpha` dependency with one of the following options:
|
|
7
|
+
*
|
|
8
|
+
* - NPM: `npm i @aws-cdk/aws-s3tables-alpha`
|
|
9
|
+
* - Yarn: `yarn add @aws-cdk/aws-s3tables-alpha`
|
|
6
10
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-namespace.html}
|
|
7
11
|
*/
|
|
8
12
|
export type S3TablesNamespace = ResourceDefinition<"AWS::S3Tables::Namespace", S3TablesNamespaceProps>;
|
|
@@ -10,6 +14,10 @@ export type S3TablesNamespace = ResourceDefinition<"AWS::S3Tables::Namespace", S
|
|
|
10
14
|
* Creates a namespace. A namespace is a logical grouping of tables within your table bucket, which you can use to organize tables. For more information, see [Create a namespace](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-namespace-create.html) in the *Amazon Simple Storage Service User Guide* .
|
|
11
15
|
*
|
|
12
16
|
* - **Permissions** - You must have the `s3tables:CreateNamespace` permission to use this operation.
|
|
17
|
+
* - **Cloud Development Kit** - To use S3 Tables AWS CDK constructs, add the `@aws-cdk/aws-s3tables-alpha` dependency with one of the following options:
|
|
18
|
+
*
|
|
19
|
+
* - NPM: `npm i @aws-cdk/aws-s3tables-alpha`
|
|
20
|
+
* - Yarn: `yarn add @aws-cdk/aws-s3tables-alpha`
|
|
13
21
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-namespace.html}
|
|
14
22
|
*/
|
|
15
23
|
export type S3TablesNamespaceProps = {
|
|
@@ -19,7 +27,7 @@ export type S3TablesNamespaceProps = {
|
|
|
19
27
|
*/
|
|
20
28
|
Namespace: string;
|
|
21
29
|
/**
|
|
22
|
-
* The Amazon Resource Name (ARN) of the
|
|
30
|
+
* The Amazon Resource Name (ARN) of the table bucket to create the namespace in.
|
|
23
31
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-namespace.html#cfn-s3tables-namespace-tablebucketarn}
|
|
24
32
|
*/
|
|
25
33
|
TableBucketARN: string;
|
|
@@ -7,6 +7,10 @@ import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
|
7
7
|
* - If you use this operation with the optional `encryptionConfiguration` request parameter you must have the `s3tables:PutTableEncryption` permission.
|
|
8
8
|
*
|
|
9
9
|
* > Additionally, If you choose SSE-KMS encryption you must grant the S3 Tables maintenance principal access to your KMS key. For more information, see [Permissions requirements for S3 Tables SSE-KMS encryption](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html) .
|
|
10
|
+
* - **Cloud Development Kit** - To use S3 Tables AWS CDK constructs, add the `@aws-cdk/aws-s3tables-alpha` dependency with one of the following options:
|
|
11
|
+
*
|
|
12
|
+
* - NPM: `npm i @aws-cdk/aws-s3tables-alpha`
|
|
13
|
+
* - Yarn: `yarn add @aws-cdk/aws-s3tables-alpha`
|
|
10
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html}
|
|
11
15
|
*/
|
|
12
16
|
export type S3TablesTable = ResourceDefinitionWithAttributes<"AWS::S3Tables::Table", S3TablesTableProps, S3TablesTableAttribs>;
|
|
@@ -18,11 +22,15 @@ export type S3TablesTable = ResourceDefinitionWithAttributes<"AWS::S3Tables::Tab
|
|
|
18
22
|
* - If you use this operation with the optional `encryptionConfiguration` request parameter you must have the `s3tables:PutTableEncryption` permission.
|
|
19
23
|
*
|
|
20
24
|
* > Additionally, If you choose SSE-KMS encryption you must grant the S3 Tables maintenance principal access to your KMS key. For more information, see [Permissions requirements for S3 Tables SSE-KMS encryption](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html) .
|
|
25
|
+
* - **Cloud Development Kit** - To use S3 Tables AWS CDK constructs, add the `@aws-cdk/aws-s3tables-alpha` dependency with one of the following options:
|
|
26
|
+
*
|
|
27
|
+
* - NPM: `npm i @aws-cdk/aws-s3tables-alpha`
|
|
28
|
+
* - Yarn: `yarn add @aws-cdk/aws-s3tables-alpha`
|
|
21
29
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html}
|
|
22
30
|
*/
|
|
23
31
|
export type S3TablesTableProps = {
|
|
24
32
|
/**
|
|
25
|
-
*
|
|
33
|
+
* Contains details about the compaction settings for an Iceberg table.
|
|
26
34
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html#cfn-s3tables-table-compaction}
|
|
27
35
|
*/
|
|
28
36
|
Compaction?: Compaction | undefined;
|
|
@@ -37,17 +45,17 @@ export type S3TablesTableProps = {
|
|
|
37
45
|
*/
|
|
38
46
|
Namespace: string;
|
|
39
47
|
/**
|
|
40
|
-
*
|
|
48
|
+
* The format of the table.
|
|
41
49
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html#cfn-s3tables-table-opentableformat}
|
|
42
50
|
*/
|
|
43
51
|
OpenTableFormat: OpenTableFormat;
|
|
44
52
|
/**
|
|
45
|
-
* Contains details about the snapshot management settings for
|
|
53
|
+
* Contains details about the Iceberg snapshot management settings for the table.
|
|
46
54
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html#cfn-s3tables-table-snapshotmanagement}
|
|
47
55
|
*/
|
|
48
56
|
SnapshotManagement?: SnapshotManagement | undefined;
|
|
49
57
|
/**
|
|
50
|
-
* The Amazon Resource Name (ARN) of the
|
|
58
|
+
* The Amazon Resource Name (ARN) of the table bucket to create the table in.
|
|
51
59
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html#cfn-s3tables-table-tablebucketarn}
|
|
52
60
|
*/
|
|
53
61
|
TableBucketARN: string;
|
|
@@ -57,7 +65,7 @@ export type S3TablesTableProps = {
|
|
|
57
65
|
*/
|
|
58
66
|
TableName: string;
|
|
59
67
|
/**
|
|
60
|
-
* Indicates that you don't want to specify a schema for the table. This property is mutually exclusive to
|
|
68
|
+
* Indicates that you don't want to specify a schema for the table. This property is mutually exclusive to `IcebergMetadata` , and its only possible value is `Yes` .
|
|
61
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html#cfn-s3tables-table-withoutmetadata}
|
|
62
70
|
*/
|
|
63
71
|
WithoutMetadata?: WithoutMetadata | undefined;
|
|
@@ -72,7 +80,7 @@ export type S3TablesTableAttribs = {
|
|
|
72
80
|
*/
|
|
73
81
|
TableARN: string;
|
|
74
82
|
/**
|
|
75
|
-
* The version token of the table
|
|
83
|
+
* The version token of the table.
|
|
76
84
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html#cfn-s3tables-table-versiontoken}
|
|
77
85
|
*/
|
|
78
86
|
VersionToken: string;
|
|
@@ -83,12 +91,12 @@ export type S3TablesTableAttribs = {
|
|
|
83
91
|
WarehouseLocation: string;
|
|
84
92
|
};
|
|
85
93
|
/**
|
|
86
|
-
*
|
|
94
|
+
* Contains details about the compaction settings for an Iceberg table.
|
|
87
95
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-compaction.html}
|
|
88
96
|
*/
|
|
89
97
|
export type Compaction = {
|
|
90
98
|
/**
|
|
91
|
-
*
|
|
99
|
+
* The status of the maintenance configuration.
|
|
92
100
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-compaction.html#cfn-s3tables-table-compaction-status}
|
|
93
101
|
*/
|
|
94
102
|
Status?: "enabled" | "disabled" | undefined;
|
|
@@ -105,7 +113,7 @@ export type Compaction = {
|
|
|
105
113
|
*/
|
|
106
114
|
export type IcebergMetadata = {
|
|
107
115
|
/**
|
|
108
|
-
*
|
|
116
|
+
* The schema for an Iceberg table.
|
|
109
117
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-icebergmetadata.html#cfn-s3tables-table-icebergmetadata-icebergschema}
|
|
110
118
|
*/
|
|
111
119
|
IcebergSchema: IcebergSchema;
|
|
@@ -116,7 +124,7 @@ export type IcebergMetadata = {
|
|
|
116
124
|
*/
|
|
117
125
|
export type IcebergSchema = {
|
|
118
126
|
/**
|
|
119
|
-
*
|
|
127
|
+
* The schema fields for the table
|
|
120
128
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-icebergschema.html#cfn-s3tables-table-icebergschema-schemafieldlist}
|
|
121
129
|
*/
|
|
122
130
|
SchemaFieldList: SchemaField[];
|
|
@@ -148,7 +156,7 @@ export type SchemaField = {
|
|
|
148
156
|
Type: string;
|
|
149
157
|
};
|
|
150
158
|
/**
|
|
151
|
-
* Contains details about the snapshot management settings for an Iceberg table.
|
|
159
|
+
* Contains details about the snapshot management settings for an Iceberg table. The oldest snapshot expires when its age exceeds the `maxSnapshotAgeHours` and the total number of snapshots exceeds the value for the minimum number of snapshots to keep `minSnapshotsToKeep` .
|
|
152
160
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-snapshotmanagement.html}
|
|
153
161
|
*/
|
|
154
162
|
export type SnapshotManagement = {
|
|
@@ -165,7 +173,7 @@ export type SnapshotManagement = {
|
|
|
165
173
|
*/
|
|
166
174
|
MinSnapshotsToKeep?: number | undefined;
|
|
167
175
|
/**
|
|
168
|
-
*
|
|
176
|
+
* The status of the maintenance configuration.
|
|
169
177
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-snapshotmanagement.html#cfn-s3tables-table-snapshotmanagement-status}
|
|
170
178
|
*/
|
|
171
179
|
Status?: "enabled" | "disabled" | undefined;
|
|
@@ -4,6 +4,10 @@ import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
|
4
4
|
*
|
|
5
5
|
* - **Permissions** - - You must have the `s3tables:CreateTableBucket` permission to use this operation.
|
|
6
6
|
* - If you use this operation with the optional `encryptionConfiguration` parameter you must have the `s3tables:PutTableBucketEncryption` permission.
|
|
7
|
+
* - **Cloud Development Kit** - To use S3 Tables AWS CDK constructs, add the `@aws-cdk/aws-s3tables-alpha` dependency with one of the following options:
|
|
8
|
+
*
|
|
9
|
+
* - NPM: `npm i @aws-cdk/aws-s3tables-alpha`
|
|
10
|
+
* - Yarn: `yarn add @aws-cdk/aws-s3tables-alpha`
|
|
7
11
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucket.html}
|
|
8
12
|
*/
|
|
9
13
|
export type S3TablesTableBucket = ResourceDefinitionWithAttributes<"AWS::S3Tables::TableBucket", S3TablesTableBucketProps, S3TablesTableBucketAttribs>;
|
|
@@ -12,6 +16,10 @@ export type S3TablesTableBucket = ResourceDefinitionWithAttributes<"AWS::S3Table
|
|
|
12
16
|
*
|
|
13
17
|
* - **Permissions** - - You must have the `s3tables:CreateTableBucket` permission to use this operation.
|
|
14
18
|
* - If you use this operation with the optional `encryptionConfiguration` parameter you must have the `s3tables:PutTableBucketEncryption` permission.
|
|
19
|
+
* - **Cloud Development Kit** - To use S3 Tables AWS CDK constructs, add the `@aws-cdk/aws-s3tables-alpha` dependency with one of the following options:
|
|
20
|
+
*
|
|
21
|
+
* - NPM: `npm i @aws-cdk/aws-s3tables-alpha`
|
|
22
|
+
* - Yarn: `yarn add @aws-cdk/aws-s3tables-alpha`
|
|
15
23
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucket.html}
|
|
16
24
|
*/
|
|
17
25
|
export type S3TablesTableBucketProps = {
|
|
@@ -1,15 +1,23 @@
|
|
|
1
1
|
import type { ResourceDefinition, PolicyDocument } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
* Creates a new
|
|
3
|
+
* Creates a new maintenance configuration or replaces an existing table bucket policy for a table bucket. For more information, see [Adding a table bucket policy](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-bucket-policy.html#table-bucket-policy-add) in the *Amazon Simple Storage Service User Guide* .
|
|
4
4
|
*
|
|
5
5
|
* - **Permissions** - You must have the `s3tables:PutTableBucketPolicy` permission to use this operation.
|
|
6
|
+
* - **Cloud Development Kit** - To use S3 Tables AWS CDK constructs, add the `@aws-cdk/aws-s3tables-alpha` dependency with one of the following options:
|
|
7
|
+
*
|
|
8
|
+
* - NPM: `npm i @aws-cdk/aws-s3tables-alpha`
|
|
9
|
+
* - Yarn: `yarn add @aws-cdk/aws-s3tables-alpha`
|
|
6
10
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucketpolicy.html}
|
|
7
11
|
*/
|
|
8
12
|
export type S3TablesTableBucketPolicy = ResourceDefinition<"AWS::S3Tables::TableBucketPolicy", S3TablesTableBucketPolicyProps>;
|
|
9
13
|
/**
|
|
10
|
-
* Creates a new
|
|
14
|
+
* Creates a new maintenance configuration or replaces an existing table bucket policy for a table bucket. For more information, see [Adding a table bucket policy](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-bucket-policy.html#table-bucket-policy-add) in the *Amazon Simple Storage Service User Guide* .
|
|
11
15
|
*
|
|
12
16
|
* - **Permissions** - You must have the `s3tables:PutTableBucketPolicy` permission to use this operation.
|
|
17
|
+
* - **Cloud Development Kit** - To use S3 Tables AWS CDK constructs, add the `@aws-cdk/aws-s3tables-alpha` dependency with one of the following options:
|
|
18
|
+
*
|
|
19
|
+
* - NPM: `npm i @aws-cdk/aws-s3tables-alpha`
|
|
20
|
+
* - Yarn: `yarn add @aws-cdk/aws-s3tables-alpha`
|
|
13
21
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucketpolicy.html}
|
|
14
22
|
*/
|
|
15
23
|
export type S3TablesTableBucketPolicyProps = {
|
|
@@ -1,24 +1,33 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
* Creates a new
|
|
3
|
+
* Creates a new maintenance configuration or replaces an existing table policy for a table. For more information, see [Adding a table policy](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-table-policy.html#table-policy-add) in the *Amazon Simple Storage Service User Guide* .
|
|
4
4
|
*
|
|
5
5
|
* - **Permissions** - You must have the `s3tables:PutTablePolicy` permission to use this operation.
|
|
6
|
+
* - **Cloud Development Kit** - To use S3 Tables AWS CDK constructs, add the `@aws-cdk/aws-s3tables-alpha` dependency with one of the following options:
|
|
7
|
+
*
|
|
8
|
+
* - NPM: `npm i @aws-cdk/aws-s3tables-alpha`
|
|
9
|
+
* - Yarn: `yarn add @aws-cdk/aws-s3tables-alpha`
|
|
6
10
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html}
|
|
7
11
|
*/
|
|
8
12
|
export type S3TablesTablePolicy = ResourceDefinitionWithAttributes<"AWS::S3Tables::TablePolicy", S3TablesTablePolicyProps, S3TablesTablePolicyAttribs>;
|
|
9
13
|
/**
|
|
10
|
-
* Creates a new
|
|
14
|
+
* Creates a new maintenance configuration or replaces an existing table policy for a table. For more information, see [Adding a table policy](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-table-policy.html#table-policy-add) in the *Amazon Simple Storage Service User Guide* .
|
|
11
15
|
*
|
|
12
16
|
* - **Permissions** - You must have the `s3tables:PutTablePolicy` permission to use this operation.
|
|
17
|
+
* - **Cloud Development Kit** - To use S3 Tables AWS CDK constructs, add the `@aws-cdk/aws-s3tables-alpha` dependency with one of the following options:
|
|
18
|
+
*
|
|
19
|
+
* - NPM: `npm i @aws-cdk/aws-s3tables-alpha`
|
|
20
|
+
* - Yarn: `yarn add @aws-cdk/aws-s3tables-alpha`
|
|
13
21
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html}
|
|
14
22
|
*/
|
|
15
23
|
export type S3TablesTablePolicyProps = {
|
|
16
24
|
/**
|
|
25
|
+
* The `JSON` that defines the policy.
|
|
17
26
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html#cfn-s3tables-tablepolicy-resourcepolicy}
|
|
18
27
|
*/
|
|
19
28
|
ResourcePolicy: ResourcePolicy;
|
|
20
29
|
/**
|
|
21
|
-
* The Amazon Resource Name (ARN) of the
|
|
30
|
+
* The Amazon Resource Name (ARN) of the table.
|
|
22
31
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html#cfn-s3tables-tablepolicy-tablearn}
|
|
23
32
|
*/
|
|
24
33
|
TableARN: string;
|
|
@@ -28,17 +37,17 @@ export type S3TablesTablePolicyProps = {
|
|
|
28
37
|
*/
|
|
29
38
|
export type S3TablesTablePolicyAttribs = {
|
|
30
39
|
/**
|
|
31
|
-
* The namespace
|
|
40
|
+
* The namespace to associated with the table.
|
|
32
41
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html#cfn-s3tables-tablepolicy-namespace}
|
|
33
42
|
*/
|
|
34
43
|
Namespace: string;
|
|
35
44
|
/**
|
|
36
|
-
* The Amazon Resource Name (ARN) of the
|
|
45
|
+
* The Amazon Resource Name (ARN) of the table bucket that contains the table.
|
|
37
46
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html#cfn-s3tables-tablepolicy-tablebucketarn}
|
|
38
47
|
*/
|
|
39
48
|
TableBucketARN: string;
|
|
40
49
|
/**
|
|
41
|
-
* The name
|
|
50
|
+
* The name of the table.
|
|
42
51
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html#cfn-s3tables-tablepolicy-tablename}
|
|
43
52
|
*/
|
|
44
53
|
TableName: string;
|
|
@@ -172,12 +172,12 @@ export type HostedRotationLambda = {
|
|
|
172
172
|
* > Only define the `Runtime` key if:
|
|
173
173
|
* >
|
|
174
174
|
* > - You are using `Transform: AWS::SecretsManager-2020-07-23` .
|
|
175
|
-
* > - The code or shared object files defined in the rotation function deployment package are incompatible with Python 3.
|
|
175
|
+
* > - The code or shared object files defined in the rotation function deployment package are incompatible with Python 3.10.
|
|
176
176
|
*
|
|
177
|
-
* The Python Runtime version for with the rotation function. By default, CloudFormation deploys Python 3.
|
|
177
|
+
* The Python Runtime version for with the rotation function. By default, CloudFormation deploys Python 3.10 binaries for the rotation function. To use a different version of Python, you must do the following two steps:
|
|
178
178
|
*
|
|
179
179
|
* - Deploy the matching version Python binaries with your rotation function.
|
|
180
|
-
* - Set the version number in this field. For example, for Python 3.
|
|
180
|
+
* - Set the version number in this field. For example, for Python 3.10, enter *python3.10* .
|
|
181
181
|
*
|
|
182
182
|
* If you only do one of the steps, your rotation function will be incompatible with the binaries. For more information, see [Why did my Lambda rotation function fail with a "pg module not found" error](https://docs.aws.amazon.com/https://repost.aws/knowledge-center/secrets-manager-lambda-rotation) .
|
|
183
183
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-hostedrotationlambda.html#cfn-secretsmanager-rotationschedule-hostedrotationlambda-runtime}
|
|
@@ -101,7 +101,7 @@ export type DashboardOptions = {
|
|
|
101
101
|
*/
|
|
102
102
|
export type DeliveryOptions = {
|
|
103
103
|
/**
|
|
104
|
-
* The
|
|
104
|
+
* The name of the configuration set used when sent through a configuration set with archiving enabled.
|
|
105
105
|
* @min 300
|
|
106
106
|
* @max 50400
|
|
107
107
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-deliveryoptions.html#cfn-ses-configurationset-deliveryoptions-maxdeliveryseconds}
|
|
@@ -189,7 +189,7 @@ export type TrackingOptions = {
|
|
|
189
189
|
*/
|
|
190
190
|
CustomRedirectDomain?: string | undefined;
|
|
191
191
|
/**
|
|
192
|
-
* The
|
|
192
|
+
* The name of the configuration set used when sent through a configuration set with archiving enabled.
|
|
193
193
|
* @pattern REQUIRE|REQUIRE_OPEN_ONLY|OPTIONAL
|
|
194
194
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-trackingoptions.html#cfn-ses-configurationset-trackingoptions-httpspolicy}
|
|
195
195
|
*/
|
|
@@ -12,7 +12,7 @@ export type SESMailManagerAddonSubscriptionProps = {
|
|
|
12
12
|
/**
|
|
13
13
|
* The name of the Add On to subscribe to. You can only have one subscription for each Add On name.
|
|
14
14
|
*
|
|
15
|
-
* Valid Values: `TRENDMICRO_VSAPI | SPAMHAUS_DBL | ABUSIX_MAIL_INTELLIGENCE`
|
|
15
|
+
* Valid Values: `TRENDMICRO_VSAPI | SPAMHAUS_DBL | ABUSIX_MAIL_INTELLIGENCE | VADE_ADVANCED_EMAIL_SECURITY`
|
|
16
16
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddonsubscription.html#cfn-ses-mailmanageraddonsubscription-addonname}
|
|
17
17
|
*/
|
|
18
18
|
AddonName: string;
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html}
|
|
5
5
|
*/
|
|
6
6
|
export type SESMailManagerAddressList = ResourceDefinitionWithAttributes<"AWS::SES::MailManagerAddressList", SESMailManagerAddressListProps, SESMailManagerAddressListAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html}
|
|
10
10
|
*/
|
|
11
11
|
export type SESMailManagerAddressListProps = {
|
|
12
12
|
/**
|
|
13
|
+
* A user-friendly name for the address list.
|
|
13
14
|
* @minLength 1
|
|
14
15
|
* @maxLength 255
|
|
15
16
|
* @pattern ^[a-zA-Z0-9_.-]+$
|
|
@@ -17,6 +18,7 @@ export type SESMailManagerAddressListProps = {
|
|
|
17
18
|
*/
|
|
18
19
|
AddressListName?: string | undefined;
|
|
19
20
|
/**
|
|
21
|
+
* The tags used to organize, track, or control access for the resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
|
20
22
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html#cfn-ses-mailmanageraddresslist-tags}
|
|
21
23
|
*/
|
|
22
24
|
Tags?: Tag[] | undefined;
|
|
@@ -26,10 +28,12 @@ export type SESMailManagerAddressListProps = {
|
|
|
26
28
|
*/
|
|
27
29
|
export type SESMailManagerAddressListAttribs = {
|
|
28
30
|
/**
|
|
31
|
+
* The Amazon Resource Name (ARN) of the address list.
|
|
29
32
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html#cfn-ses-mailmanageraddresslist-addresslistarn}
|
|
30
33
|
*/
|
|
31
34
|
AddressListArn: string;
|
|
32
35
|
/**
|
|
36
|
+
* The identifier of the address list.
|
|
33
37
|
* @minLength 1
|
|
34
38
|
* @maxLength 255
|
|
35
39
|
* @pattern ^[a-zA-Z0-9-]+$
|
|
@@ -156,37 +156,45 @@ export type IngressIpv4Expression = {
|
|
|
156
156
|
*/
|
|
157
157
|
export type IngressIpv6Attribute = "SENDER_IPV6";
|
|
158
158
|
/**
|
|
159
|
+
* The union type representing the allowed types for the left hand side of an IPv6 condition.
|
|
159
160
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6expression.html}
|
|
160
161
|
*/
|
|
161
162
|
export type IngressIpv6Expression = {
|
|
162
163
|
/**
|
|
164
|
+
* The left hand side argument of an IPv6 condition expression.
|
|
163
165
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6expression.html#cfn-ses-mailmanagertrafficpolicy-ingressipv6expression-evaluate}
|
|
164
166
|
*/
|
|
165
167
|
Evaluate: IngressIpv6ToEvaluate;
|
|
166
168
|
/**
|
|
169
|
+
* The matching operator for an IPv6 condition expression.
|
|
167
170
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6expression.html#cfn-ses-mailmanagertrafficpolicy-ingressipv6expression-operator}
|
|
168
171
|
*/
|
|
169
172
|
Operator: IngressIpOperator;
|
|
170
173
|
/**
|
|
174
|
+
* The right hand side argument of an IPv6 condition expression.
|
|
171
175
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6expression.html#cfn-ses-mailmanagertrafficpolicy-ingressipv6expression-values}
|
|
172
176
|
*/
|
|
173
177
|
Values: string[];
|
|
174
178
|
};
|
|
175
179
|
/**
|
|
180
|
+
* The structure for an IPv6 based condition matching on the incoming mail.
|
|
176
181
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6toevaluate.html}
|
|
177
182
|
*/
|
|
178
183
|
export type IngressIpv6ToEvaluate = {
|
|
179
184
|
Attribute: IngressIpv6Attribute;
|
|
180
185
|
};
|
|
181
186
|
/**
|
|
187
|
+
* The address lists and the address list attribute value that is evaluated in a policy statement's conditional expression to either deny or block the incoming email.
|
|
182
188
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressisinaddresslist.html}
|
|
183
189
|
*/
|
|
184
190
|
export type IngressIsInAddressList = {
|
|
185
191
|
/**
|
|
192
|
+
* The address lists that will be used for evaluation.
|
|
186
193
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressisinaddresslist.html#cfn-ses-mailmanagertrafficpolicy-ingressisinaddresslist-addresslists}
|
|
187
194
|
*/
|
|
188
195
|
AddressLists: string[];
|
|
189
196
|
/**
|
|
197
|
+
* The email attribute that needs to be evaluated against the address list.
|
|
190
198
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressisinaddresslist.html#cfn-ses-mailmanagertrafficpolicy-ingressisinaddresslist-attribute}
|
|
191
199
|
*/
|
|
192
200
|
Attribute: IngressAddressListEmailAttribute;
|
|
@@ -52,6 +52,7 @@ export type Action = {
|
|
|
52
52
|
*/
|
|
53
53
|
BounceAction?: BounceAction | undefined;
|
|
54
54
|
/**
|
|
55
|
+
* The action that informs a traffic policy resource to either allow or block the email if it matches a condition in the policy statement.
|
|
55
56
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-action.html#cfn-ses-receiptrule-action-connectaction}
|
|
56
57
|
*/
|
|
57
58
|
ConnectAction?: ConnectAction | undefined;
|
|
@@ -33,7 +33,9 @@ export type SyntheticsCanaryProps = {
|
|
|
33
33
|
*/
|
|
34
34
|
ArtifactS3Location: string;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* A structure that specifies the browser type to use for a canary run. CloudWatch Synthetics supports running canaries on both `CHROME` and `FIREFOX` browsers.
|
|
37
|
+
*
|
|
38
|
+
* > If not specified, `browserConfigs` defaults to Chrome.
|
|
37
39
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-browserconfigs}
|
|
38
40
|
*/
|
|
39
41
|
BrowserConfigs?: BrowserConfig[] | undefined;
|
|
@@ -136,12 +138,16 @@ export type SyntheticsCanaryProps = {
|
|
|
136
138
|
*/
|
|
137
139
|
VPCConfig?: VPCConfig | undefined;
|
|
138
140
|
/**
|
|
139
|
-
*
|
|
141
|
+
* Visual reference configuration for visual testing
|
|
140
142
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-visualreference}
|
|
141
143
|
*/
|
|
142
144
|
VisualReference?: VisualReference | undefined;
|
|
143
145
|
/**
|
|
144
|
-
*
|
|
146
|
+
* A list of visual reference configurations for the canary, one for each browser type that the canary is configured to run on. Visual references are used for visual monitoring comparisons.
|
|
147
|
+
*
|
|
148
|
+
* `syn-nodejs-puppeteer-11.0` and above, and `syn-nodejs-playwright-3.0` and above, only supports `visualReferences` . `visualReference` field is not supported.
|
|
149
|
+
*
|
|
150
|
+
* Versions older than `syn-nodejs-puppeteer-11.0` supports both `visualReference` and `visualReferences` for backward compatibility. It is recommended to use `visualReferences` for consistency and future compatibility.
|
|
145
151
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-visualreferences}
|
|
146
152
|
*/
|
|
147
153
|
VisualReferences?: VisualReference[] | undefined;
|
|
@@ -194,10 +200,12 @@ export type BaseScreenshot = {
|
|
|
194
200
|
ScreenshotName: string;
|
|
195
201
|
};
|
|
196
202
|
/**
|
|
203
|
+
* A structure that specifies the browser type to use for a canary run.
|
|
197
204
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-browserconfig.html}
|
|
198
205
|
*/
|
|
199
206
|
export type BrowserConfig = {
|
|
200
207
|
/**
|
|
208
|
+
* The browser type associated with this browser configuration.
|
|
201
209
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-browserconfig.html#cfn-synthetics-canary-browserconfig-browsertype}
|
|
202
210
|
*/
|
|
203
211
|
BrowserType: BrowserType;
|