@awboost/cfn-resource-types 0.1.477 → 0.1.479
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/lib/AWS-ImageBuilder-ContainerRecipe.d.ts +21 -0
- package/lib/AWS-ImageBuilder-ImageRecipe.d.ts +21 -0
- package/lib/AWS-Lex-BotVersion.d.ts +2 -2
- package/lib/AWS-Lex-BotVersion.js +1 -1
- package/lib/AWS-Lex-ResourcePolicy.d.ts +2 -2
- package/lib/AWS-Lex-ResourcePolicy.js +1 -1
- package/lib/AWS-Organizations-Policy.d.ts +2 -2
- package/lib/AWS-S3-Bucket.d.ts +5 -2
- package/lib/AWS-S3Tables-TableBucket.d.ts +15 -0
- package/package.json +1 -1
|
@@ -75,6 +75,27 @@ export type ImageBuilderContainerRecipeAttributes = {
|
|
|
75
75
|
* The Amazon Resource Name (ARN) of the container recipe.
|
|
76
76
|
*/
|
|
77
77
|
Arn: string;
|
|
78
|
+
/**
|
|
79
|
+
* The latest version references of the container recipe.
|
|
80
|
+
*/
|
|
81
|
+
LatestVersion: {
|
|
82
|
+
/**
|
|
83
|
+
* The latest version ARN of the created container recipe.
|
|
84
|
+
*/
|
|
85
|
+
Arn: string;
|
|
86
|
+
/**
|
|
87
|
+
* The latest version ARN of the created container recipe, with the same major version.
|
|
88
|
+
*/
|
|
89
|
+
Major: string;
|
|
90
|
+
/**
|
|
91
|
+
* The latest version ARN of the created container recipe, with the same minor version.
|
|
92
|
+
*/
|
|
93
|
+
Minor: string;
|
|
94
|
+
/**
|
|
95
|
+
* The latest version ARN of the created container recipe, with the same patch version.
|
|
96
|
+
*/
|
|
97
|
+
Patch: string;
|
|
98
|
+
};
|
|
78
99
|
};
|
|
79
100
|
/**
|
|
80
101
|
* Type definition for `AWS::ImageBuilder::ContainerRecipe.ComponentConfiguration`.
|
|
@@ -55,6 +55,27 @@ export type ImageBuilderImageRecipeAttributes = {
|
|
|
55
55
|
* The Amazon Resource Name (ARN) of the image recipe.
|
|
56
56
|
*/
|
|
57
57
|
Arn: string;
|
|
58
|
+
/**
|
|
59
|
+
* The latest version references of the image recipe.
|
|
60
|
+
*/
|
|
61
|
+
LatestVersion: {
|
|
62
|
+
/**
|
|
63
|
+
* The latest version ARN of the created image recipe.
|
|
64
|
+
*/
|
|
65
|
+
Arn: string;
|
|
66
|
+
/**
|
|
67
|
+
* The latest version ARN of the created image recipe, with the same major version.
|
|
68
|
+
*/
|
|
69
|
+
Major: string;
|
|
70
|
+
/**
|
|
71
|
+
* The latest version ARN of the created image recipe, with the same minor version.
|
|
72
|
+
*/
|
|
73
|
+
Minor: string;
|
|
74
|
+
/**
|
|
75
|
+
* The latest version ARN of the created image recipe, with the same patch version.
|
|
76
|
+
*/
|
|
77
|
+
Patch: string;
|
|
78
|
+
};
|
|
58
79
|
};
|
|
59
80
|
/**
|
|
60
81
|
* Type definition for `AWS::ImageBuilder::ImageRecipe.AdditionalInstanceConfiguration`.
|
|
@@ -2,7 +2,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::Lex::BotVersion`.
|
|
5
|
-
*
|
|
5
|
+
* Resource Type definition for bot versions, a numbered snapshot of your work that you can publish for use in different parts of your workflow, such as development, beta deployment, and production.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botversion.html}
|
|
7
7
|
*/
|
|
8
8
|
export type LexBotVersionProperties = {
|
|
@@ -67,7 +67,7 @@ export type BotVersionLocaleSpecification = {
|
|
|
67
67
|
};
|
|
68
68
|
/**
|
|
69
69
|
* Resource type definition for `AWS::Lex::BotVersion`.
|
|
70
|
-
*
|
|
70
|
+
* Resource Type definition for bot versions, a numbered snapshot of your work that you can publish for use in different parts of your workflow, such as development, beta deployment, and production.
|
|
71
71
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botversion.html}
|
|
72
72
|
*/
|
|
73
73
|
export declare class LexBotVersion extends $Resource<"AWS::Lex::BotVersion", LexBotVersionProperties, LexBotVersionAttributes> {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::Lex::BotVersion`.
|
|
4
|
-
*
|
|
4
|
+
* Resource Type definition for bot versions, a numbered snapshot of your work that you can publish for use in different parts of your workflow, such as development, beta deployment, and production.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botversion.html}
|
|
6
6
|
*/
|
|
7
7
|
export class LexBotVersion extends $Resource {
|
|
@@ -2,7 +2,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::Lex::ResourcePolicy`.
|
|
5
|
-
*
|
|
5
|
+
* Resource Type definition for a resource policy with specified policy statements that attaches to a Lex bot or bot alias.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-resourcepolicy.html}
|
|
7
7
|
*/
|
|
8
8
|
export type LexResourcePolicyProperties = {
|
|
@@ -42,7 +42,7 @@ export type LexResourcePolicyAttributes = {
|
|
|
42
42
|
export type Policy = Record<string, any>;
|
|
43
43
|
/**
|
|
44
44
|
* Resource type definition for `AWS::Lex::ResourcePolicy`.
|
|
45
|
-
*
|
|
45
|
+
* Resource Type definition for a resource policy with specified policy statements that attaches to a Lex bot or bot alias.
|
|
46
46
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-resourcepolicy.html}
|
|
47
47
|
*/
|
|
48
48
|
export declare class LexResourcePolicy extends $Resource<"AWS::Lex::ResourcePolicy", LexResourcePolicyProperties, LexResourcePolicyAttributes> {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::Lex::ResourcePolicy`.
|
|
4
|
-
*
|
|
4
|
+
* Resource Type definition for a resource policy with specified policy statements that attaches to a Lex bot or bot alias.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-resourcepolicy.html}
|
|
6
6
|
*/
|
|
7
7
|
export class LexResourcePolicy extends $Resource {
|
|
@@ -32,9 +32,9 @@ export type OrganizationsPolicyProperties = {
|
|
|
32
32
|
*/
|
|
33
33
|
TargetIds?: string[];
|
|
34
34
|
/**
|
|
35
|
-
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY,DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY
|
|
35
|
+
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY,DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, S3_POLICY, INSPECTOR_POLICY, BEDROCK_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
36
36
|
*/
|
|
37
|
-
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY";
|
|
37
|
+
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "S3_POLICY" | "INSPECTOR_POLICY" | "BEDROCK_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY";
|
|
38
38
|
};
|
|
39
39
|
/**
|
|
40
40
|
* Attribute type definition for `AWS::Organizations::Policy`.
|
package/lib/AWS-S3-Bucket.d.ts
CHANGED
|
@@ -347,7 +347,7 @@ export type DefaultRetention = {
|
|
|
347
347
|
*/
|
|
348
348
|
export type DeleteMarkerReplication = {
|
|
349
349
|
/**
|
|
350
|
-
* Indicates whether to replicate delete markers.
|
|
350
|
+
* Indicates whether to replicate delete markers.
|
|
351
351
|
*/
|
|
352
352
|
Status?: "Disabled" | "Enabled";
|
|
353
353
|
};
|
|
@@ -1427,7 +1427,10 @@ export type Transition = {
|
|
|
1427
1427
|
/**
|
|
1428
1428
|
* Type definition for `AWS::S3::Bucket.VersioningConfiguration`.
|
|
1429
1429
|
* Describes the versioning state of an Amazon S3 bucket. For more information, see [PUT Bucket versioning](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTVersioningStatus.html) in the *Amazon S3 API Reference*.
|
|
1430
|
-
|
|
1430
|
+
Keep the following timing in mind when enabling, suspending, or transitioning between versioning states:
|
|
1431
|
+
+ *Enabling versioning* - Changes may take up to 15 minutes to propagate across all AWS regions for full consistency.
|
|
1432
|
+
+ *Suspending versioning* - Takes effect immediately with no propagation delay.
|
|
1433
|
+
+ *Transitioning between states* - Any change from Suspended to Enabled has a 15-minute delay.
|
|
1431
1434
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-versioningconfiguration.html}
|
|
1432
1435
|
*/
|
|
1433
1436
|
export type VersioningConfiguration = {
|
|
@@ -10,6 +10,10 @@ export type S3TablesTableBucketProperties = {
|
|
|
10
10
|
* Specifies encryption settings for the table bucket
|
|
11
11
|
*/
|
|
12
12
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
13
|
+
/**
|
|
14
|
+
* Settings governing the Metric configuration for the table bucket.
|
|
15
|
+
*/
|
|
16
|
+
MetricsConfiguration?: MetricsConfiguration;
|
|
13
17
|
/**
|
|
14
18
|
* A name for the table bucket.
|
|
15
19
|
* @minLength `3`
|
|
@@ -50,6 +54,17 @@ export type EncryptionConfiguration = {
|
|
|
50
54
|
*/
|
|
51
55
|
SSEAlgorithm?: "AES256" | "aws:kms";
|
|
52
56
|
};
|
|
57
|
+
/**
|
|
58
|
+
* Type definition for `AWS::S3Tables::TableBucket.MetricsConfiguration`.
|
|
59
|
+
* Settings governing the Metric configuration for the table bucket.
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-metricsconfiguration.html}
|
|
61
|
+
*/
|
|
62
|
+
export type MetricsConfiguration = {
|
|
63
|
+
/**
|
|
64
|
+
* Indicates whether Metrics are enabled.
|
|
65
|
+
*/
|
|
66
|
+
Status?: "Enabled" | "Disabled";
|
|
67
|
+
};
|
|
53
68
|
/**
|
|
54
69
|
* Type definition for `AWS::S3Tables::TableBucket.Tag`.
|
|
55
70
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-tag.html}
|