@awboost/cfn-resource-types 0.1.478 → 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.
|
@@ -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 {
|
|
@@ -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}
|