@aws-cdk/aws-s3tables-alpha 2.232.0-alpha.0 → 2.232.2-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.jsii CHANGED
@@ -8,7 +8,7 @@
8
8
  "url": "https://aws.amazon.com"
9
9
  },
10
10
  "dependencies": {
11
- "aws-cdk-lib": "^2.232.0",
11
+ "aws-cdk-lib": "^2.232.2",
12
12
  "constructs": "^10.0.0"
13
13
  },
14
14
  "dependencyClosure": {
@@ -11381,6 +11381,6 @@
11381
11381
  "symbolId": "lib/table-bucket:UnreferencedFileRemovalStatus"
11382
11382
  }
11383
11383
  },
11384
- "version": "2.232.0-alpha.0",
11384
+ "version": "2.232.2-alpha.0",
11385
11385
  "fingerprint": "**********"
11386
11386
  }
@@ -65,6 +65,10 @@ export declare class Namespace extends Resource implements INamespace {
65
65
  * @throws UnscopedValidationError if any naming errors are detected
66
66
  */
67
67
  static validateNamespaceName(namespaceName: string): void;
68
+ /**
69
+ * @internal The underlying namespace resource.
70
+ */
71
+ private readonly _resource;
68
72
  /**
69
73
  * The name of this namespace
70
74
  */
package/lib/namespace.js CHANGED
@@ -61,7 +61,7 @@ let Namespace = (() => {
61
61
  Namespace = _classThis = _classDescriptor.value;
62
62
  if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
63
63
  }
64
- static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-s3tables-alpha.Namespace", version: "2.232.0-alpha.0" };
64
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-s3tables-alpha.Namespace", version: "2.232.2-alpha.0" };
65
65
  /** Uniquely identifies this class. */
66
66
  static PROPERTY_INJECTION_ID = '@aws-cdk.aws-s3tables-alpha.Namespace';
67
67
  /**
@@ -35,5 +35,9 @@ export declare class TableBucketPolicy extends Resource {
35
35
  * The IAM PolicyDocument containing permissions represented by this policy.
36
36
  */
37
37
  readonly document: iam.PolicyDocument;
38
+ /**
39
+ * @internal The underlying policy resource.
40
+ */
41
+ private readonly _resource;
38
42
  constructor(scope: Construct, id: string, props: TableBucketPolicyProps);
39
43
  }
@@ -62,7 +62,7 @@ let TableBucketPolicy = (() => {
62
62
  TableBucketPolicy = _classThis = _classDescriptor.value;
63
63
  if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
64
64
  }
65
- static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-s3tables-alpha.TableBucketPolicy", version: "2.232.0-alpha.0" };
65
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-s3tables-alpha.TableBucketPolicy", version: "2.232.2-alpha.0" };
66
66
  /** Uniquely identifies this class. */
67
67
  static PROPERTY_INJECTION_ID = '@aws-cdk.aws-s3tables-alpha.TableBucketPolicy';
68
68
  /**
@@ -319,6 +319,11 @@ export declare class TableBucket extends TableBucketBase {
319
319
  * @param unreferencedFileRemoval configuration for the table bucket
320
320
  */
321
321
  static validateUnreferencedFileRemoval(unreferencedFileRemoval?: UnreferencedFileRemoval): void;
322
+ /**
323
+ * The underlying CfnTableBucket L1 resource
324
+ * @internal
325
+ */
326
+ private readonly _resource;
322
327
  /**
323
328
  * The resource policy for this tableBucket.
324
329
  */
@@ -170,7 +170,7 @@ let TableBucket = (() => {
170
170
  TableBucket = _classThis = _classDescriptor.value;
171
171
  if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
172
172
  }
173
- static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-s3tables-alpha.TableBucket", version: "2.232.0-alpha.0" };
173
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-s3tables-alpha.TableBucket", version: "2.232.2-alpha.0" };
174
174
  /** Uniquely identifies this class. */
175
175
  static PROPERTY_INJECTION_ID = '@aws-cdk.aws-s3tables-alpha.TableBucket';
176
176
  /**
@@ -35,5 +35,9 @@ export declare class TablePolicy extends Resource {
35
35
  * The IAM PolicyDocument containing permissions represented by this policy.
36
36
  */
37
37
  readonly document: iam.PolicyDocument;
38
+ /**
39
+ * @internal The underlying policy resource.
40
+ */
41
+ private readonly _resource;
38
42
  constructor(scope: Construct, id: string, props: TablePolicyProps);
39
43
  }
@@ -62,7 +62,7 @@ let TablePolicy = (() => {
62
62
  TablePolicy = _classThis = _classDescriptor.value;
63
63
  if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
64
64
  }
65
- static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-s3tables-alpha.TablePolicy", version: "2.232.0-alpha.0" };
65
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-s3tables-alpha.TablePolicy", version: "2.232.2-alpha.0" };
66
66
  /** Uniquely identifies this class. */
67
67
  static PROPERTY_INJECTION_ID = '@aws-cdk.aws-s3tables-alpha.TablePolicy';
68
68
  /**
package/lib/table.d.ts CHANGED
@@ -299,6 +299,11 @@ export declare class Table extends TableBase {
299
299
  * The unique Amazon Resource Name (arn) of this table
300
300
  */
301
301
  readonly tableArn: string;
302
+ /**
303
+ * The underlying CfnTable L1 resource
304
+ * @internal
305
+ */
306
+ private readonly _resource;
302
307
  /**
303
308
  * The name of this table
304
309
  */
package/lib/table.js CHANGED
@@ -126,7 +126,7 @@ let Table = (() => {
126
126
  Table = _classThis = _classDescriptor.value;
127
127
  if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
128
128
  }
129
- static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-s3tables-alpha.Table", version: "2.232.0-alpha.0" };
129
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-s3tables-alpha.Table", version: "2.232.2-alpha.0" };
130
130
  /** Uniquely identifies this class. */
131
131
  static PROPERTY_INJECTION_ID = '@aws-cdk.aws-s3tables-alpha.Table';
132
132
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-cdk/aws-s3tables-alpha",
3
3
  "private": false,
4
- "version": "2.232.0-alpha.0",
4
+ "version": "2.232.2-alpha.0",
5
5
  "description": "CDK Constructs for S3 Tables",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
@@ -77,17 +77,17 @@
77
77
  },
78
78
  "license": "Apache-2.0",
79
79
  "devDependencies": {
80
- "aws-cdk-lib": "2.232.0",
81
- "@aws-cdk/cdk-build-tools": "2.232.0-alpha.0",
82
- "@aws-cdk/pkglint": "2.232.0-alpha.0",
80
+ "aws-cdk-lib": "2.232.2",
81
+ "@aws-cdk/cdk-build-tools": "2.232.2-alpha.0",
82
+ "@aws-cdk/pkglint": "2.232.2-alpha.0",
83
83
  "@types/jest": "^29.5.14",
84
84
  "constructs": "^10.0.0",
85
85
  "jest": "^29.7.0",
86
- "@aws-cdk/integ-tests-alpha": "2.232.0-alpha.0"
86
+ "@aws-cdk/integ-tests-alpha": "2.232.2-alpha.0"
87
87
  },
88
88
  "homepage": "https://github.com/aws/aws-cdk",
89
89
  "peerDependencies": {
90
- "aws-cdk-lib": "^2.232.0",
90
+ "aws-cdk-lib": "^2.232.2",
91
91
  "constructs": "^10.0.0"
92
92
  },
93
93
  "separate-module": false,