@propulsionworks/cloudformation 0.1.16 → 0.1.17
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-aiops-investigationgroup.d.ts +53 -13
- package/out/exports/resources.generated/aws-arczonalshift-zonalautoshiftconfiguration.d.ts +2 -0
- package/out/exports/resources.generated/aws-cassandra-table.d.ts +11 -4
- package/out/exports/resources.generated/aws-certificatemanager-certificate.d.ts +4 -0
- package/out/exports/resources.generated/aws-cloudformation-hookdefaultversion.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudformation-hooktypeconfig.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudformation-macro.d.ts +1 -0
- package/out/exports/resources.generated/aws-cloudformation-stack.d.ts +4 -4
- package/out/exports/resources.generated/aws-cloudformation-stackset.d.ts +37 -37
- package/out/exports/resources.generated/aws-cloudformation-waitcondition.d.ts +3 -2
- package/out/exports/resources.generated/aws-cloudformation-waitconditionhandle.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +3 -1
- package/out/exports/resources.generated/aws-datasync-locationefs.d.ts +1 -1
- package/out/exports/resources.generated/aws-ec2-customergateway.d.ts +1 -1
- package/out/exports/resources.generated/aws-ec2-vpnconnection.d.ts +2 -2
- package/out/exports/resources.generated/aws-ecs-taskdefinition.d.ts +0 -3
- package/out/exports/resources.generated/aws-fsx-filesystem.d.ts +25 -7
- package/out/exports/resources.generated/aws-glue-job.d.ts +1 -1
- package/out/exports/resources.generated/aws-kinesis-streamconsumer.d.ts +1 -1
- package/out/exports/resources.generated/aws-odb-cloudautonomousvmcluster.d.ts +19 -5
- package/out/exports/resources.generated/aws-odb-cloudexadatainfrastructure.d.ts +16 -4
- package/out/exports/resources.generated/aws-odb-cloudvmcluster.d.ts +28 -10
- package/out/exports/resources.generated/aws-odb-odbnetwork.d.ts +13 -3
- package/out/exports/resources.generated/aws-quicksight-custompermissions.d.ts +6 -0
- package/out/exports/resources.generated/aws-s3tables-table.d.ts +21 -9
- package/out/exports/resources.generated/aws-timestream-influxdbinstance.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Creates a new table associated with the given namespace in a table bucket. For more information, see [Creating an Amazon S3 table](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-create.html) in the *Amazon Simple Storage Service User Guide* .
|
|
4
|
+
*
|
|
5
|
+
* - **Permissions** - - You must have the `s3tables:CreateTable` permission to use this operation.
|
|
6
|
+
* - If you use this operation with the optional `metadata` request parameter you must have the `s3tables:PutTableData` permission.
|
|
7
|
+
* - If you use this operation with the optional `encryptionConfiguration` request parameter you must have the `s3tables:PutTableEncryption` permission.
|
|
8
|
+
*
|
|
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) .
|
|
4
10
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html}
|
|
5
11
|
*/
|
|
6
12
|
export type S3TablesTable = ResourceDefinitionWithAttributes<"AWS::S3Tables::Table", S3TablesTableProps, S3TablesTableAttribs>;
|
|
7
13
|
/**
|
|
8
|
-
*
|
|
14
|
+
* Creates a new table associated with the given namespace in a table bucket. For more information, see [Creating an Amazon S3 table](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-create.html) in the *Amazon Simple Storage Service User Guide* .
|
|
15
|
+
*
|
|
16
|
+
* - **Permissions** - - You must have the `s3tables:CreateTable` permission to use this operation.
|
|
17
|
+
* - If you use this operation with the optional `metadata` request parameter you must have the `s3tables:PutTableData` permission.
|
|
18
|
+
* - If you use this operation with the optional `encryptionConfiguration` request parameter you must have the `s3tables:PutTableEncryption` permission.
|
|
19
|
+
*
|
|
20
|
+
* > 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) .
|
|
9
21
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html}
|
|
10
22
|
*/
|
|
11
23
|
export type S3TablesTableProps = {
|
|
@@ -20,7 +32,7 @@ export type S3TablesTableProps = {
|
|
|
20
32
|
*/
|
|
21
33
|
IcebergMetadata?: IcebergMetadata | undefined;
|
|
22
34
|
/**
|
|
23
|
-
* The
|
|
35
|
+
* The name of the namespace.
|
|
24
36
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html#cfn-s3tables-table-namespace}
|
|
25
37
|
*/
|
|
26
38
|
Namespace: string;
|
|
@@ -55,7 +67,7 @@ export type S3TablesTableProps = {
|
|
|
55
67
|
*/
|
|
56
68
|
export type S3TablesTableAttribs = {
|
|
57
69
|
/**
|
|
58
|
-
* The Amazon Resource Name (ARN) of the
|
|
70
|
+
* The Amazon Resource Name (ARN) of the table.
|
|
59
71
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-table.html#cfn-s3tables-table-tablearn}
|
|
60
72
|
*/
|
|
61
73
|
TableARN: string;
|
|
@@ -99,7 +111,7 @@ export type IcebergMetadata = {
|
|
|
99
111
|
IcebergSchema: IcebergSchema;
|
|
100
112
|
};
|
|
101
113
|
/**
|
|
102
|
-
* Contains details about the schema for an Iceberg table
|
|
114
|
+
* Contains details about the schema for an Iceberg table.
|
|
103
115
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-icebergschema.html}
|
|
104
116
|
*/
|
|
105
117
|
export type IcebergSchema = {
|
|
@@ -115,22 +127,22 @@ export type IcebergSchema = {
|
|
|
115
127
|
*/
|
|
116
128
|
export type OpenTableFormat = "ICEBERG";
|
|
117
129
|
/**
|
|
118
|
-
* Contains details about
|
|
130
|
+
* Contains details about a schema field.
|
|
119
131
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-schemafield.html}
|
|
120
132
|
*/
|
|
121
133
|
export type SchemaField = {
|
|
122
134
|
/**
|
|
123
|
-
* The name of the field
|
|
135
|
+
* The name of the field.
|
|
124
136
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-schemafield.html#cfn-s3tables-table-schemafield-name}
|
|
125
137
|
*/
|
|
126
138
|
Name: string;
|
|
127
139
|
/**
|
|
128
|
-
* A Boolean value that specifies whether values are required for each row in this field
|
|
140
|
+
* A Boolean value that specifies whether values are required for each row in this field. By default, this is `false` and null values are allowed in the field. If this is `true` the field does not allow null values.
|
|
129
141
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-schemafield.html#cfn-s3tables-table-schemafield-required}
|
|
130
142
|
*/
|
|
131
143
|
Required?: boolean | undefined;
|
|
132
144
|
/**
|
|
133
|
-
* The field type
|
|
145
|
+
* The field type. S3 Tables supports all Apache Iceberg primitive types. For more information, see the [Apache Iceberg documentation](https://docs.aws.amazon.com/https://iceberg.apache.org/spec/#primitive-types) .
|
|
134
146
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-schemafield.html#cfn-s3tables-table-schemafield-type}
|
|
135
147
|
*/
|
|
136
148
|
Type: string;
|
|
@@ -28,7 +28,7 @@ export type TimestreamInfluxDBInstanceProps = {
|
|
|
28
28
|
* The Timestream for InfluxDB DB instance type to run on.
|
|
29
29
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-timestream-influxdbinstance.html#cfn-timestream-influxdbinstance-dbinstancetype}
|
|
30
30
|
*/
|
|
31
|
-
DbInstanceType?: "db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge" | undefined;
|
|
31
|
+
DbInstanceType?: "db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge" | "db.influx.24xlarge" | undefined;
|
|
32
32
|
/**
|
|
33
33
|
* The name or id of the DB parameter group to assign to your DB instance. DB parameter groups specify how the database is configured. For example, DB parameter groups can specify the limit for query concurrency.
|
|
34
34
|
* @minLength 3
|