@awboost/cfn-resource-types 0.1.504 → 0.1.505
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-DAX-SubnetGroup.d.ts +3 -10
- package/lib/AWS-DAX-SubnetGroup.js +1 -1
- package/lib/AWS-DataSync-Agent.d.ts +1 -1
- package/lib/AWS-DataSync-LocationAzureBlob.d.ts +7 -7
- package/lib/AWS-DataSync-LocationEFS.d.ts +5 -5
- package/lib/AWS-DataSync-LocationFSxLustre.d.ts +2 -2
- package/lib/AWS-DataSync-LocationFSxONTAP.d.ts +3 -3
- package/lib/AWS-DataSync-LocationFSxOpenZFS.d.ts +2 -2
- package/lib/AWS-DataSync-LocationFSxWindows.d.ts +2 -2
- package/lib/AWS-DataSync-LocationHDFS.d.ts +1 -1
- package/lib/AWS-DataSync-LocationNFS.d.ts +2 -2
- package/lib/AWS-DataSync-LocationObjectStorage.d.ts +7 -7
- package/lib/AWS-DataSync-LocationS3.d.ts +3 -3
- package/lib/AWS-DataSync-LocationSMB.d.ts +8 -8
- package/lib/AWS-DataSync-Task.d.ts +8 -8
- package/lib/AWS-Lex-Bot.d.ts +48 -5
- package/lib/AWS-Lex-Bot.js +1 -1
- package/lib/AWS-Lex-BotAlias.d.ts +3 -2
- package/lib/AWS-Lex-BotAlias.js +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
4
|
+
* Resource type definition for AWS::DAX::SubnetGroup
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
|
|
6
6
|
*/
|
|
7
7
|
export type DAXSubnetGroupProperties = {
|
|
@@ -10,17 +10,10 @@ export type DAXSubnetGroupProperties = {
|
|
|
10
10
|
SubnetIds: string[];
|
|
11
11
|
};
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
14
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#aws-resource-dax-subnetgroup-return-values}
|
|
15
|
-
*/
|
|
16
|
-
export type DAXSubnetGroupAttributes = {
|
|
17
|
-
Id: string;
|
|
18
|
-
};
|
|
19
|
-
/**
|
|
20
|
-
* Resource Type definition for AWS::DAX::SubnetGroup
|
|
13
|
+
* Resource type definition for AWS::DAX::SubnetGroup
|
|
21
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
|
|
22
15
|
*/
|
|
23
|
-
export declare class DAXSubnetGroup extends $Resource<"AWS::DAX::SubnetGroup", DAXSubnetGroupProperties,
|
|
16
|
+
export declare class DAXSubnetGroup extends $Resource<"AWS::DAX::SubnetGroup", DAXSubnetGroupProperties, Record<string, never>> {
|
|
24
17
|
static readonly Type = "AWS::DAX::SubnetGroup";
|
|
25
18
|
constructor(logicalId: string, properties: DAXSubnetGroupProperties, options?: $ResourceOptions);
|
|
26
19
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for AWS::DAX::SubnetGroup
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
|
|
5
5
|
*/
|
|
6
6
|
export class DAXSubnetGroup extends $Resource {
|
|
@@ -45,7 +45,7 @@ export type DataSyncAgentAttributes = {
|
|
|
45
45
|
/**
|
|
46
46
|
* The DataSync Agent ARN.
|
|
47
47
|
* @maxLength `128`
|
|
48
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:agent/agent-[0-9a-z]{17}$`
|
|
48
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:agent/agent-[0-9a-z]{17}$`
|
|
49
49
|
*/
|
|
50
50
|
AgentArn: string;
|
|
51
51
|
/**
|
|
@@ -65,14 +65,14 @@ export type DataSyncLocationAzureBlobAttributes = {
|
|
|
65
65
|
/**
|
|
66
66
|
* Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
|
|
67
67
|
* @maxLength `2048`
|
|
68
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
68
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
69
69
|
*/
|
|
70
70
|
SecretArn: string;
|
|
71
71
|
};
|
|
72
72
|
/**
|
|
73
73
|
* The Amazon Resource Name (ARN) of the Azure Blob Location that is created.
|
|
74
74
|
* @maxLength `128`
|
|
75
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
75
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
76
76
|
*/
|
|
77
77
|
LocationArn: string;
|
|
78
78
|
/**
|
|
@@ -88,7 +88,7 @@ export type DataSyncLocationAzureBlobAttributes = {
|
|
|
88
88
|
/**
|
|
89
89
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
90
90
|
* @maxLength `2048`
|
|
91
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
91
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
92
92
|
*/
|
|
93
93
|
SecretArn: string;
|
|
94
94
|
};
|
|
@@ -116,7 +116,7 @@ export type CmkSecretConfig = {
|
|
|
116
116
|
/**
|
|
117
117
|
* Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager.
|
|
118
118
|
* @maxLength `2048`
|
|
119
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
119
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
120
120
|
*/
|
|
121
121
|
KmsKeyArn?: string;
|
|
122
122
|
};
|
|
@@ -129,13 +129,13 @@ export type CustomSecretConfig = {
|
|
|
129
129
|
/**
|
|
130
130
|
* Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
|
|
131
131
|
* @maxLength `2048`
|
|
132
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
132
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
133
133
|
*/
|
|
134
134
|
SecretAccessRoleArn: string;
|
|
135
135
|
/**
|
|
136
136
|
* Specifies the ARN for a customer created AWS Secrets Manager secret.
|
|
137
137
|
* @maxLength `2048`
|
|
138
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
138
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
139
139
|
*/
|
|
140
140
|
SecretArn: string;
|
|
141
141
|
};
|
|
@@ -148,7 +148,7 @@ export type ManagedSecretConfig = {
|
|
|
148
148
|
/**
|
|
149
149
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
150
150
|
* @maxLength `2048`
|
|
151
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
151
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
152
152
|
*/
|
|
153
153
|
SecretArn: string;
|
|
154
154
|
};
|
|
@@ -8,7 +8,7 @@ export type DataSyncLocationEFSProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The Amazon Resource Name (ARN) for the Amazon EFS Access point that DataSync uses when accessing the EFS file system.
|
|
10
10
|
* @maxLength `128`
|
|
11
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):elasticfilesystem:[a-z\-0-9]+:[0-9]{12}:access-point/fsap-[0-9a-f]{8,40}$`
|
|
11
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):elasticfilesystem:[a-z\-0-9]+:[0-9]{12}:access-point/fsap-[0-9a-f]{8,40}$`
|
|
12
12
|
*/
|
|
13
13
|
AccessPointArn?: string;
|
|
14
14
|
/**
|
|
@@ -18,13 +18,13 @@ export type DataSyncLocationEFSProperties = {
|
|
|
18
18
|
/**
|
|
19
19
|
* The Amazon Resource Name (ARN) for the Amazon EFS file system.
|
|
20
20
|
* @maxLength `128`
|
|
21
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):elasticfilesystem:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
|
|
21
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):elasticfilesystem:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
|
|
22
22
|
*/
|
|
23
23
|
EfsFilesystemArn?: string;
|
|
24
24
|
/**
|
|
25
25
|
* The Amazon Resource Name (ARN) of the AWS IAM role that the DataSync will assume when mounting the EFS file system.
|
|
26
26
|
* @maxLength `128`
|
|
27
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
27
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
28
28
|
*/
|
|
29
29
|
FileSystemAccessRoleArn?: string;
|
|
30
30
|
/**
|
|
@@ -51,7 +51,7 @@ export type DataSyncLocationEFSAttributes = {
|
|
|
51
51
|
/**
|
|
52
52
|
* The Amazon Resource Name (ARN) of the Amazon EFS file system location that is created.
|
|
53
53
|
* @maxLength `128`
|
|
54
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
54
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
55
55
|
*/
|
|
56
56
|
LocationArn: string;
|
|
57
57
|
/**
|
|
@@ -76,7 +76,7 @@ export type Ec2Config = {
|
|
|
76
76
|
/**
|
|
77
77
|
* The ARN of the subnet that DataSync uses to access the target EFS file system.
|
|
78
78
|
* @maxLength `128`
|
|
79
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):ec2:[a-z\-0-9]*:[0-9]{12}:subnet/.*$`
|
|
79
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):ec2:[a-z\-0-9]*:[0-9]{12}:subnet/.*$`
|
|
80
80
|
*/
|
|
81
81
|
SubnetArn: string;
|
|
82
82
|
};
|
|
@@ -8,7 +8,7 @@ export type DataSyncLocationFSxLustreProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The Amazon Resource Name (ARN) for the FSx for Lustre file system.
|
|
10
10
|
* @maxLength `128`
|
|
11
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
|
|
11
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
|
|
12
12
|
*/
|
|
13
13
|
FsxFilesystemArn?: string;
|
|
14
14
|
/**
|
|
@@ -38,7 +38,7 @@ export type DataSyncLocationFSxLustreAttributes = {
|
|
|
38
38
|
/**
|
|
39
39
|
* The Amazon Resource Name (ARN) of the Amazon FSx for Lustre file system location that is created.
|
|
40
40
|
* @maxLength `128`
|
|
41
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
41
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
42
42
|
*/
|
|
43
43
|
LocationArn: string;
|
|
44
44
|
/**
|
|
@@ -18,7 +18,7 @@ export type DataSyncLocationFSxONTAPProperties = {
|
|
|
18
18
|
/**
|
|
19
19
|
* The Amazon Resource Name (ARN) for the FSx ONTAP SVM.
|
|
20
20
|
* @maxLength `162`
|
|
21
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:storage-virtual-machine/fs-[0-9a-f]+/svm-[0-9a-f]{17,}$`
|
|
21
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:storage-virtual-machine/fs-[0-9a-f]+/svm-[0-9a-f]{17,}$`
|
|
22
22
|
*/
|
|
23
23
|
StorageVirtualMachineArn: string;
|
|
24
24
|
/**
|
|
@@ -42,13 +42,13 @@ export type DataSyncLocationFSxONTAPAttributes = {
|
|
|
42
42
|
/**
|
|
43
43
|
* The Amazon Resource Name (ARN) for the FSx ONAP file system.
|
|
44
44
|
* @maxLength `128`
|
|
45
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
|
|
45
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
|
|
46
46
|
*/
|
|
47
47
|
FsxFilesystemArn: string;
|
|
48
48
|
/**
|
|
49
49
|
* The Amazon Resource Name (ARN) of the Amazon FSx ONTAP file system location that is created.
|
|
50
50
|
* @maxLength `128`
|
|
51
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
51
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
52
52
|
*/
|
|
53
53
|
LocationArn: string;
|
|
54
54
|
/**
|
|
@@ -8,7 +8,7 @@ export type DataSyncLocationFSxOpenZFSProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The Amazon Resource Name (ARN) for the FSx OpenZFS file system.
|
|
10
10
|
* @maxLength `128`
|
|
11
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
|
|
11
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
|
|
12
12
|
*/
|
|
13
13
|
FsxFilesystemArn?: string;
|
|
14
14
|
/**
|
|
@@ -42,7 +42,7 @@ export type DataSyncLocationFSxOpenZFSAttributes = {
|
|
|
42
42
|
/**
|
|
43
43
|
* The Amazon Resource Name (ARN) of the Amazon FSx OpenZFS file system location that is created.
|
|
44
44
|
* @maxLength `128`
|
|
45
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
45
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
46
46
|
*/
|
|
47
47
|
LocationArn: string;
|
|
48
48
|
/**
|
|
@@ -14,7 +14,7 @@ export type DataSyncLocationFSxWindowsProperties = {
|
|
|
14
14
|
/**
|
|
15
15
|
* The Amazon Resource Name (ARN) for the FSx for Windows file system.
|
|
16
16
|
* @maxLength `128`
|
|
17
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
|
|
17
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
|
|
18
18
|
*/
|
|
19
19
|
FsxFilesystemArn?: string;
|
|
20
20
|
/**
|
|
@@ -53,7 +53,7 @@ export type DataSyncLocationFSxWindowsAttributes = {
|
|
|
53
53
|
/**
|
|
54
54
|
* The Amazon Resource Name (ARN) of the Amazon FSx for Windows file system location that is created.
|
|
55
55
|
* @maxLength `128`
|
|
56
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
56
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
57
57
|
*/
|
|
58
58
|
LocationArn: string;
|
|
59
59
|
/**
|
|
@@ -87,7 +87,7 @@ export type DataSyncLocationHDFSAttributes = {
|
|
|
87
87
|
/**
|
|
88
88
|
* The Amazon Resource Name (ARN) of the HDFS location.
|
|
89
89
|
* @maxLength `128`
|
|
90
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
90
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
91
91
|
*/
|
|
92
92
|
LocationArn: string;
|
|
93
93
|
/**
|
|
@@ -39,7 +39,7 @@ export type DataSyncLocationNFSAttributes = {
|
|
|
39
39
|
/**
|
|
40
40
|
* The Amazon Resource Name (ARN) of the NFS location.
|
|
41
41
|
* @maxLength `128`
|
|
42
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
42
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
43
43
|
*/
|
|
44
44
|
LocationArn: string;
|
|
45
45
|
/**
|
|
@@ -69,7 +69,7 @@ export type OnPremConfig = {
|
|
|
69
69
|
/**
|
|
70
70
|
* ARN(s) of the agent(s) to use for an NFS location.
|
|
71
71
|
* @minLength `1`
|
|
72
|
-
* @maxLength `
|
|
72
|
+
* @maxLength `8`
|
|
73
73
|
*/
|
|
74
74
|
AgentArns: string[];
|
|
75
75
|
};
|
|
@@ -85,14 +85,14 @@ export type DataSyncLocationObjectStorageAttributes = {
|
|
|
85
85
|
/**
|
|
86
86
|
* Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
|
|
87
87
|
* @maxLength `2048`
|
|
88
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
88
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
89
89
|
*/
|
|
90
90
|
SecretArn: string;
|
|
91
91
|
};
|
|
92
92
|
/**
|
|
93
93
|
* The Amazon Resource Name (ARN) of the location that is created.
|
|
94
94
|
* @maxLength `128`
|
|
95
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
95
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
96
96
|
*/
|
|
97
97
|
LocationArn: string;
|
|
98
98
|
/**
|
|
@@ -108,7 +108,7 @@ export type DataSyncLocationObjectStorageAttributes = {
|
|
|
108
108
|
/**
|
|
109
109
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
110
110
|
* @maxLength `2048`
|
|
111
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
111
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
112
112
|
*/
|
|
113
113
|
SecretArn: string;
|
|
114
114
|
};
|
|
@@ -122,7 +122,7 @@ export type CmkSecretConfig = {
|
|
|
122
122
|
/**
|
|
123
123
|
* Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager.
|
|
124
124
|
* @maxLength `2048`
|
|
125
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
125
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
126
126
|
*/
|
|
127
127
|
KmsKeyArn?: string;
|
|
128
128
|
};
|
|
@@ -135,13 +135,13 @@ export type CustomSecretConfig = {
|
|
|
135
135
|
/**
|
|
136
136
|
* Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
|
|
137
137
|
* @maxLength `2048`
|
|
138
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
138
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
139
139
|
*/
|
|
140
140
|
SecretAccessRoleArn: string;
|
|
141
141
|
/**
|
|
142
142
|
* Specifies the ARN for a customer created AWS Secrets Manager secret.
|
|
143
143
|
* @maxLength `2048`
|
|
144
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
144
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
145
145
|
*/
|
|
146
146
|
SecretArn: string;
|
|
147
147
|
};
|
|
@@ -154,7 +154,7 @@ export type ManagedSecretConfig = {
|
|
|
154
154
|
/**
|
|
155
155
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
156
156
|
* @maxLength `2048`
|
|
157
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
157
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
158
158
|
*/
|
|
159
159
|
SecretArn: string;
|
|
160
160
|
};
|
|
@@ -8,7 +8,7 @@ export type DataSyncLocationS3Properties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The Amazon Resource Name (ARN) of the Amazon S3 bucket.
|
|
10
10
|
* @maxLength `156`
|
|
11
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):s3:[a-z\-0-9]*:[0-9]*:.*$`
|
|
11
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):s3:[a-z\-0-9]*:[0-9]*:.*$`
|
|
12
12
|
*/
|
|
13
13
|
S3BucketArn?: string;
|
|
14
14
|
/**
|
|
@@ -39,7 +39,7 @@ export type DataSyncLocationS3Attributes = {
|
|
|
39
39
|
/**
|
|
40
40
|
* The Amazon Resource Name (ARN) of the Amazon S3 bucket location.
|
|
41
41
|
* @maxLength `128`
|
|
42
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
42
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
43
43
|
*/
|
|
44
44
|
LocationArn: string;
|
|
45
45
|
/**
|
|
@@ -58,7 +58,7 @@ export type S3Config = {
|
|
|
58
58
|
/**
|
|
59
59
|
* The ARN of the IAM role of the Amazon S3 bucket.
|
|
60
60
|
* @maxLength `2048`
|
|
61
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
61
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
62
62
|
*/
|
|
63
63
|
BucketAccessRoleArn: string;
|
|
64
64
|
};
|
|
@@ -8,7 +8,7 @@ export type DataSyncLocationSMBProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The Amazon Resource Names (ARNs) of agents to use for a Simple Message Block (SMB) location.
|
|
10
10
|
* @minLength `1`
|
|
11
|
-
* @maxLength `
|
|
11
|
+
* @maxLength `8`
|
|
12
12
|
*/
|
|
13
13
|
AgentArns: string[];
|
|
14
14
|
/**
|
|
@@ -97,14 +97,14 @@ export type DataSyncLocationSMBAttributes = {
|
|
|
97
97
|
/**
|
|
98
98
|
* Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
|
|
99
99
|
* @maxLength `2048`
|
|
100
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
100
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
101
101
|
*/
|
|
102
102
|
SecretArn: string;
|
|
103
103
|
};
|
|
104
104
|
/**
|
|
105
105
|
* The Amazon Resource Name (ARN) of the SMB location that is created.
|
|
106
106
|
* @maxLength `128`
|
|
107
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
107
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
108
108
|
*/
|
|
109
109
|
LocationArn: string;
|
|
110
110
|
/**
|
|
@@ -120,7 +120,7 @@ export type DataSyncLocationSMBAttributes = {
|
|
|
120
120
|
/**
|
|
121
121
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
122
122
|
* @maxLength `2048`
|
|
123
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
123
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
124
124
|
*/
|
|
125
125
|
SecretArn: string;
|
|
126
126
|
};
|
|
@@ -134,7 +134,7 @@ export type CmkSecretConfig = {
|
|
|
134
134
|
/**
|
|
135
135
|
* Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager.
|
|
136
136
|
* @maxLength `2048`
|
|
137
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
137
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
|
|
138
138
|
*/
|
|
139
139
|
KmsKeyArn?: string;
|
|
140
140
|
};
|
|
@@ -147,13 +147,13 @@ export type CustomSecretConfig = {
|
|
|
147
147
|
/**
|
|
148
148
|
* Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
|
|
149
149
|
* @maxLength `2048`
|
|
150
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
150
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
|
|
151
151
|
*/
|
|
152
152
|
SecretAccessRoleArn: string;
|
|
153
153
|
/**
|
|
154
154
|
* Specifies the ARN for a customer created AWS Secrets Manager secret.
|
|
155
155
|
* @maxLength `2048`
|
|
156
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
156
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
157
157
|
*/
|
|
158
158
|
SecretArn: string;
|
|
159
159
|
};
|
|
@@ -166,7 +166,7 @@ export type ManagedSecretConfig = {
|
|
|
166
166
|
/**
|
|
167
167
|
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
168
168
|
* @maxLength `2048`
|
|
169
|
-
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
169
|
+
* @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
|
|
170
170
|
*/
|
|
171
171
|
SecretArn: string;
|
|
172
172
|
};
|
|
@@ -8,13 +8,13 @@ export type DataSyncTaskProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The ARN of the Amazon CloudWatch log group that is used to monitor and log events in the task.
|
|
10
10
|
* @maxLength `562`
|
|
11
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):logs:[a-z\-0-9]*:[0-9]{12}:log-group:([^:\*]*)(:\*)?$`
|
|
11
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):logs:[a-z\-0-9]*:[0-9]{12}:log-group:([^:\*]*)(:\*)?$`
|
|
12
12
|
*/
|
|
13
13
|
CloudWatchLogGroupArn?: string;
|
|
14
14
|
/**
|
|
15
15
|
* The ARN of an AWS storage resource's location.
|
|
16
16
|
* @maxLength `128`
|
|
17
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
17
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
18
18
|
*/
|
|
19
19
|
DestinationLocationArn: string;
|
|
20
20
|
/**
|
|
@@ -49,7 +49,7 @@ export type DataSyncTaskProperties = {
|
|
|
49
49
|
/**
|
|
50
50
|
* The ARN of the source location for the task.
|
|
51
51
|
* @maxLength `128`
|
|
52
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
52
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
|
|
53
53
|
*/
|
|
54
54
|
SourceLocationArn: string;
|
|
55
55
|
/**
|
|
@@ -88,7 +88,7 @@ export type DataSyncTaskAttributes = {
|
|
|
88
88
|
/**
|
|
89
89
|
* The ARN of the task.
|
|
90
90
|
* @maxLength `128`
|
|
91
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]*:[0-9]{12}:task/task-[0-9a-f]{17}$`
|
|
91
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]*:[0-9]{12}:task/task-[0-9a-f]{17}$`
|
|
92
92
|
*/
|
|
93
93
|
TaskArn: string;
|
|
94
94
|
};
|
|
@@ -144,7 +144,7 @@ export type ManifestConfigSourceS3 = {
|
|
|
144
144
|
/**
|
|
145
145
|
* Specifies the AWS Identity and Access Management (IAM) role that allows DataSync to access your manifest.
|
|
146
146
|
* @maxLength `2048`
|
|
147
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
147
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
148
148
|
*/
|
|
149
149
|
BucketAccessRoleArn?: string;
|
|
150
150
|
/**
|
|
@@ -162,7 +162,7 @@ export type ManifestConfigSourceS3 = {
|
|
|
162
162
|
/**
|
|
163
163
|
* Specifies the Amazon Resource Name (ARN) of the S3 bucket where you're hosting your manifest.
|
|
164
164
|
* @maxLength `156`
|
|
165
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):(s3|s3-outposts):[a-z\-0-9]*:[0-9]*:.*$`
|
|
165
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):(s3|s3-outposts):[a-z\-0-9]*:[0-9]*:.*$`
|
|
166
166
|
*/
|
|
167
167
|
S3BucketArn?: string;
|
|
168
168
|
};
|
|
@@ -333,13 +333,13 @@ export type TaskReportConfigDestinationS3 = {
|
|
|
333
333
|
/**
|
|
334
334
|
* Specifies the Amazon Resource Name (ARN) of the IAM policy that allows Datasync to upload a task report to your S3 bucket.
|
|
335
335
|
* @maxLength `2048`
|
|
336
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
336
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
|
|
337
337
|
*/
|
|
338
338
|
BucketAccessRoleArn?: string;
|
|
339
339
|
/**
|
|
340
340
|
* Specifies the ARN of the S3 bucket where Datasync uploads your report.
|
|
341
341
|
* @maxLength `156`
|
|
342
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):(s3|s3-outposts):[a-z\-0-9]*:[0-9]*:.*$`
|
|
342
|
+
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):(s3|s3-outposts):[a-z\-0-9]*:[0-9]*:.*$`
|
|
343
343
|
*/
|
|
344
344
|
S3BucketArn?: string;
|
|
345
345
|
/**
|
package/lib/AWS-Lex-Bot.d.ts
CHANGED
|
@@ -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::Bot`.
|
|
5
|
-
* Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
5
|
+
* Resource Type definition for an Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-bot.html}
|
|
7
7
|
*/
|
|
8
8
|
export type LexBotProperties = {
|
|
@@ -228,6 +228,8 @@ export type BotLocale = {
|
|
|
228
228
|
* @maxLength `250`
|
|
229
229
|
*/
|
|
230
230
|
SlotTypes?: SlotType[];
|
|
231
|
+
SpeechDetectionSensitivity?: SpeechDetectionSensitivity;
|
|
232
|
+
UnifiedSpeechSettings?: UnifiedSpeechSettings;
|
|
231
233
|
VoiceSettings?: VoiceSettings;
|
|
232
234
|
};
|
|
233
235
|
/**
|
|
@@ -551,7 +553,9 @@ export type GenerativeAISettings = {
|
|
|
551
553
|
};
|
|
552
554
|
RuntimeSettings?: {
|
|
553
555
|
NluImprovementSpecification?: {
|
|
556
|
+
AssistedNluMode?: "Primary" | "Fallback";
|
|
554
557
|
Enabled: boolean;
|
|
558
|
+
IntentDisambiguationSettings?: IntentDisambiguationSettings;
|
|
555
559
|
};
|
|
556
560
|
SlotResolutionImprovementSpecification?: {
|
|
557
561
|
BedrockModelSpecification?: BedrockModelSpecification;
|
|
@@ -644,11 +648,16 @@ export type InputContext = {
|
|
|
644
648
|
export type Intent = {
|
|
645
649
|
BedrockAgentIntentConfiguration?: BedrockAgentIntentConfiguration;
|
|
646
650
|
/**
|
|
647
|
-
*
|
|
651
|
+
* Resource Type definition for the intent.
|
|
648
652
|
* @maxLength `2000`
|
|
649
653
|
*/
|
|
650
654
|
Description?: string;
|
|
651
655
|
DialogCodeHook?: DialogCodeHookSetting;
|
|
656
|
+
/**
|
|
657
|
+
* @minLength `1`
|
|
658
|
+
* @maxLength `100`
|
|
659
|
+
*/
|
|
660
|
+
DisplayName?: string;
|
|
652
661
|
FulfillmentCodeHook?: FulfillmentCodeHookSetting;
|
|
653
662
|
InitialResponseSetting?: InitialResponseSetting;
|
|
654
663
|
/**
|
|
@@ -707,6 +716,23 @@ export type IntentConfirmationSetting = {
|
|
|
707
716
|
IsActive?: boolean;
|
|
708
717
|
PromptSpecification: PromptSpecification;
|
|
709
718
|
};
|
|
719
|
+
/**
|
|
720
|
+
* Type definition for `AWS::Lex::Bot.IntentDisambiguationSettings`.
|
|
721
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intentdisambiguationsettings.html}
|
|
722
|
+
*/
|
|
723
|
+
export type IntentDisambiguationSettings = {
|
|
724
|
+
/**
|
|
725
|
+
* @minLength `1`
|
|
726
|
+
* @maxLength `1000`
|
|
727
|
+
*/
|
|
728
|
+
CustomDisambiguationMessage?: string;
|
|
729
|
+
Enabled: boolean;
|
|
730
|
+
/**
|
|
731
|
+
* @min `2`
|
|
732
|
+
* @max `5`
|
|
733
|
+
*/
|
|
734
|
+
MaxDisambiguationIntents?: number;
|
|
735
|
+
};
|
|
710
736
|
/**
|
|
711
737
|
* Type definition for `AWS::Lex::Bot.IntentOverride`.
|
|
712
738
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intentoverride.html}
|
|
@@ -1272,9 +1298,15 @@ export type Specifications = {
|
|
|
1272
1298
|
* @maxLength `25`
|
|
1273
1299
|
* @pattern `^((AMAZON\.)[a-zA-Z_]+?|[0-9a-zA-Z]+)$`
|
|
1274
1300
|
*/
|
|
1275
|
-
SlotTypeId
|
|
1301
|
+
SlotTypeId?: string;
|
|
1302
|
+
SlotTypeName?: string;
|
|
1276
1303
|
ValueElicitationSetting: SubSlotValueElicitationSetting;
|
|
1277
1304
|
};
|
|
1305
|
+
/**
|
|
1306
|
+
* Type definition for `AWS::Lex::Bot.SpeechDetectionSensitivity`.
|
|
1307
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-speechdetectionsensitivity.html}
|
|
1308
|
+
*/
|
|
1309
|
+
export type SpeechDetectionSensitivity = "Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance";
|
|
1278
1310
|
/**
|
|
1279
1311
|
* Type definition for `AWS::Lex::Bot.SSMLMessage`.
|
|
1280
1312
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-ssmlmessage.html}
|
|
@@ -1337,7 +1369,8 @@ export type SubSlotTypeComposition = {
|
|
|
1337
1369
|
* @maxLength `25`
|
|
1338
1370
|
* @pattern `^((AMAZON\.)[a-zA-Z_]+?|[0-9a-zA-Z]+)$`
|
|
1339
1371
|
*/
|
|
1340
|
-
SlotTypeId
|
|
1372
|
+
SlotTypeId?: string;
|
|
1373
|
+
SlotTypeName?: string;
|
|
1341
1374
|
};
|
|
1342
1375
|
/**
|
|
1343
1376
|
* Type definition for `AWS::Lex::Bot.SubSlotValueElicitationSetting`.
|
|
@@ -1409,6 +1442,16 @@ export type TextLogSetting = {
|
|
|
1409
1442
|
Destination: TextLogDestination;
|
|
1410
1443
|
Enabled: boolean;
|
|
1411
1444
|
};
|
|
1445
|
+
/**
|
|
1446
|
+
* Type definition for `AWS::Lex::Bot.UnifiedSpeechSettings`.
|
|
1447
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-unifiedspeechsettings.html}
|
|
1448
|
+
*/
|
|
1449
|
+
export type UnifiedSpeechSettings = {
|
|
1450
|
+
SpeechFoundationModel: {
|
|
1451
|
+
ModelArn: string;
|
|
1452
|
+
VoiceId?: string;
|
|
1453
|
+
};
|
|
1454
|
+
};
|
|
1412
1455
|
/**
|
|
1413
1456
|
* Type definition for `AWS::Lex::Bot.VoiceSettings`.
|
|
1414
1457
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-voicesettings.html}
|
|
@@ -1429,7 +1472,7 @@ export type WaitAndContinueSpecification = {
|
|
|
1429
1472
|
};
|
|
1430
1473
|
/**
|
|
1431
1474
|
* Resource type definition for `AWS::Lex::Bot`.
|
|
1432
|
-
* Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
1475
|
+
* Resource Type definition for an Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
1433
1476
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-bot.html}
|
|
1434
1477
|
*/
|
|
1435
1478
|
export declare class LexBot extends $Resource<"AWS::Lex::Bot", LexBotProperties, LexBotAttributes> {
|
package/lib/AWS-Lex-Bot.js
CHANGED
|
@@ -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::Bot`.
|
|
4
|
-
* Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
4
|
+
* Resource Type definition for an Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-bot.html}
|
|
6
6
|
*/
|
|
7
7
|
export class LexBot 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::BotAlias`.
|
|
5
|
-
*
|
|
5
|
+
* Resource Type definition for a Bot Alias, which enables you to change the version of a bot without updating applications that use the bot
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botalias.html}
|
|
7
7
|
*/
|
|
8
8
|
export type LexBotAliasProperties = {
|
|
@@ -62,6 +62,7 @@ export type LexBotAliasProperties = {
|
|
|
62
62
|
*/
|
|
63
63
|
export type LexBotAliasAttributes = {
|
|
64
64
|
/**
|
|
65
|
+
* The Amazon Resource Name (ARN) of the bot alias.
|
|
65
66
|
* @maxLength `1000`
|
|
66
67
|
*/
|
|
67
68
|
Arn: string;
|
|
@@ -267,7 +268,7 @@ export type TextLogSetting = {
|
|
|
267
268
|
};
|
|
268
269
|
/**
|
|
269
270
|
* Resource type definition for `AWS::Lex::BotAlias`.
|
|
270
|
-
*
|
|
271
|
+
* Resource Type definition for a Bot Alias, which enables you to change the version of a bot without updating applications that use the bot
|
|
271
272
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botalias.html}
|
|
272
273
|
*/
|
|
273
274
|
export declare class LexBotAlias extends $Resource<"AWS::Lex::BotAlias", LexBotAliasProperties, LexBotAliasAttributes> {
|
package/lib/AWS-Lex-BotAlias.js
CHANGED
|
@@ -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::BotAlias`.
|
|
4
|
-
*
|
|
4
|
+
* Resource Type definition for a Bot Alias, which enables you to change the version of a bot without updating applications that use the bot
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botalias.html}
|
|
6
6
|
*/
|
|
7
7
|
export class LexBotAlias extends $Resource {
|