@awboost/cfn-resource-types 0.1.376 → 0.1.378
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-AppConfig-Environment.d.ts +0 -1
- package/lib/AWS-Connect-EvaluationForm.d.ts +0 -3
- package/lib/AWS-Connect-Instance.d.ts +20 -0
- package/lib/AWS-DynamoDB-Table.d.ts +4 -2
- package/lib/AWS-EC2-VPNConnection.d.ts +2 -2
- package/lib/AWS-ECS-Service.d.ts +53 -0
- package/lib/AWS-GuardDuty-IPSet.d.ts +1 -0
- package/lib/AWS-GuardDuty-ThreatIntelSet.d.ts +1 -0
- package/lib/AWS-KinesisFirehose-DeliveryStream.d.ts +36 -0
- package/lib/AWS-Lex-Bot.d.ts +6 -6
- package/lib/AWS-MediaPackageV2-OriginEndpoint.d.ts +221 -66
- package/lib/AWS-S3-Bucket.d.ts +147 -16
- package/lib/AWS-S3Express-DirectoryBucket.d.ts +19 -0
- package/lib/AWS-S3Tables-TablePolicy.d.ts +49 -0
- package/lib/AWS-S3Tables-TablePolicy.js +12 -0
- package/lib/AWS-SageMaker-Project.d.ts +69 -1
- package/lib/AWS-Wisdom-QuickResponse.d.ts +196 -0
- package/lib/AWS-Wisdom-QuickResponse.js +12 -0
- package/package.json +1 -1
|
@@ -27,6 +27,7 @@ export type S3ExpressDirectoryBucketProperties = {
|
|
|
27
27
|
* Specifies the Zone ID of the Availability Zone or Local Zone where the directory bucket will be created. An example Availability Zone ID value is 'use1-az5'.
|
|
28
28
|
*/
|
|
29
29
|
LocationName: string;
|
|
30
|
+
Tags?: Tag[];
|
|
30
31
|
};
|
|
31
32
|
/**
|
|
32
33
|
* Attribute type definition for `AWS::S3Express::DirectoryBucket`.
|
|
@@ -130,6 +131,24 @@ export type ServerSideEncryptionRule = {
|
|
|
130
131
|
*/
|
|
131
132
|
ServerSideEncryptionByDefault?: ServerSideEncryptionByDefault;
|
|
132
133
|
};
|
|
134
|
+
/**
|
|
135
|
+
* Type definition for `AWS::S3Express::DirectoryBucket.Tag`.
|
|
136
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-directorybucket-tag.html}
|
|
137
|
+
*/
|
|
138
|
+
export type Tag = {
|
|
139
|
+
/**
|
|
140
|
+
* @minLength `1`
|
|
141
|
+
* @maxLength `128`
|
|
142
|
+
* @pattern `^(?!aws:.*)([\p{L}\p{Z}\p{N}_.:=+\/\-@%]*)$`
|
|
143
|
+
*/
|
|
144
|
+
Key: string;
|
|
145
|
+
/**
|
|
146
|
+
* @minLength `0`
|
|
147
|
+
* @maxLength `256`
|
|
148
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:=+\/\-@%]*)$`
|
|
149
|
+
*/
|
|
150
|
+
Value: string;
|
|
151
|
+
};
|
|
133
152
|
/**
|
|
134
153
|
* Resource Type definition for AWS::S3Express::DirectoryBucket.
|
|
135
154
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3express-directorybucket.html}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for AWS::S3Tables::TablePolicy
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html}
|
|
6
|
+
*/
|
|
7
|
+
export type S3TablesTablePolicyProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* A policy document containing permissions to add to the specified table. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
|
|
10
|
+
*/
|
|
11
|
+
ResourcePolicy: ResourcePolicy;
|
|
12
|
+
/**
|
|
13
|
+
* The Amazon Resource Name (ARN) of the specified table.
|
|
14
|
+
*/
|
|
15
|
+
TableARN: string;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Attribute type definition for `AWS::S3Tables::TablePolicy`.
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html#aws-resource-s3tables-tablepolicy-return-values}
|
|
20
|
+
*/
|
|
21
|
+
export type S3TablesTablePolicyAttributes = {
|
|
22
|
+
/**
|
|
23
|
+
* The namespace that the table belongs to.
|
|
24
|
+
*/
|
|
25
|
+
Namespace: string;
|
|
26
|
+
/**
|
|
27
|
+
* The Amazon Resource Name (ARN) of the specified table bucket.
|
|
28
|
+
*/
|
|
29
|
+
TableBucketARN: string;
|
|
30
|
+
/**
|
|
31
|
+
* The name for the table.
|
|
32
|
+
*/
|
|
33
|
+
TableName: string;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Type definition for `AWS::S3Tables::TablePolicy.ResourcePolicy`.
|
|
37
|
+
* A policy document containing permissions to add to the specified table. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablepolicy-resourcepolicy.html}
|
|
39
|
+
*/
|
|
40
|
+
export type ResourcePolicy = Record<string, any> | string;
|
|
41
|
+
/**
|
|
42
|
+
* Resource Type definition for AWS::S3Tables::TablePolicy
|
|
43
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html}
|
|
44
|
+
*/
|
|
45
|
+
export declare class S3TablesTablePolicy extends $Resource<"AWS::S3Tables::TablePolicy", S3TablesTablePolicyProperties, S3TablesTablePolicyAttributes> {
|
|
46
|
+
static readonly Type = "AWS::S3Tables::TablePolicy";
|
|
47
|
+
constructor(logicalId: string, properties: S3TablesTablePolicyProperties, options?: $ResourceOptions);
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=AWS-S3Tables-TablePolicy.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::S3Tables::TablePolicy
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html}
|
|
5
|
+
*/
|
|
6
|
+
export class S3TablesTablePolicy extends $Resource {
|
|
7
|
+
static Type = "AWS::S3Tables::TablePolicy";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, S3TablesTablePolicy.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-S3Tables-TablePolicy.js.map
|
|
@@ -36,7 +36,7 @@ export type SageMakerProjectProperties = {
|
|
|
36
36
|
/**
|
|
37
37
|
* Input ServiceCatalog Provisioning Details
|
|
38
38
|
*/
|
|
39
|
-
ServiceCatalogProvisioningDetails
|
|
39
|
+
ServiceCatalogProvisioningDetails?: {
|
|
40
40
|
/**
|
|
41
41
|
* The path identifier of the product.
|
|
42
42
|
* @maxLength `100`
|
|
@@ -65,6 +65,12 @@ export type SageMakerProjectProperties = {
|
|
|
65
65
|
* @maxLength `40`
|
|
66
66
|
*/
|
|
67
67
|
Tags?: Tag[];
|
|
68
|
+
/**
|
|
69
|
+
* An array of template providers associated with the project.
|
|
70
|
+
* @minLength `1`
|
|
71
|
+
* @maxLength `1`
|
|
72
|
+
*/
|
|
73
|
+
TemplateProviderDetails?: TemplateProviderDetail[];
|
|
68
74
|
};
|
|
69
75
|
/**
|
|
70
76
|
* Attribute type definition for `AWS::SageMaker::Project`.
|
|
@@ -93,6 +99,57 @@ export type SageMakerProjectAttributes = {
|
|
|
93
99
|
*/
|
|
94
100
|
ProjectStatus: "Pending" | "CreateInProgress" | "CreateCompleted" | "CreateFailed" | "DeleteInProgress" | "DeleteFailed" | "DeleteCompleted";
|
|
95
101
|
};
|
|
102
|
+
/**
|
|
103
|
+
* Type definition for `AWS::SageMaker::Project.CfnStackParameter`.
|
|
104
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-project-cfnstackparameter.html}
|
|
105
|
+
*/
|
|
106
|
+
export type CfnStackParameter = {
|
|
107
|
+
/**
|
|
108
|
+
* The key of the parameter.
|
|
109
|
+
* @minLength `1`
|
|
110
|
+
* @maxLength `255`
|
|
111
|
+
*/
|
|
112
|
+
Key: string;
|
|
113
|
+
/**
|
|
114
|
+
* The value of the parameter.
|
|
115
|
+
* @maxLength `4096`
|
|
116
|
+
*/
|
|
117
|
+
Value: string;
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* Type definition for `AWS::SageMaker::Project.CfnTemplateProviderDetail`.
|
|
121
|
+
* CloudFormation template provider details for a SageMaker project.
|
|
122
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-project-cfntemplateproviderdetail.html}
|
|
123
|
+
*/
|
|
124
|
+
export type CfnTemplateProviderDetail = {
|
|
125
|
+
/**
|
|
126
|
+
* A list of parameters used in the CloudFormation template.
|
|
127
|
+
* @minLength `0`
|
|
128
|
+
* @maxLength `180`
|
|
129
|
+
*/
|
|
130
|
+
Parameters?: CfnStackParameter[];
|
|
131
|
+
/**
|
|
132
|
+
* The Amazon Resource Name (ARN) of the IAM role used by the template provider.
|
|
133
|
+
* @minLength `20`
|
|
134
|
+
* @maxLength `2048`
|
|
135
|
+
* @pattern `arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
|
|
136
|
+
*/
|
|
137
|
+
RoleARN?: string;
|
|
138
|
+
/**
|
|
139
|
+
* The name of the template used for the project.
|
|
140
|
+
* @minLength `1`
|
|
141
|
+
* @maxLength `32`
|
|
142
|
+
* @pattern `(?=.{1,32}$)[a-zA-Z0-9](-*[a-zA-Z0-9])*`
|
|
143
|
+
*/
|
|
144
|
+
TemplateName: string;
|
|
145
|
+
/**
|
|
146
|
+
* The URL of the CloudFormation template.
|
|
147
|
+
* @minLength `1`
|
|
148
|
+
* @maxLength `1024`
|
|
149
|
+
* @pattern `(?=.{1,1024}$)(https)://([^/]+)/(.+)`
|
|
150
|
+
*/
|
|
151
|
+
TemplateURL: string;
|
|
152
|
+
};
|
|
96
153
|
/**
|
|
97
154
|
* Type definition for `AWS::SageMaker::Project.ProvisioningParameter`.
|
|
98
155
|
* Information about a parameter used to provision a product.
|
|
@@ -133,6 +190,17 @@ export type Tag = {
|
|
|
133
190
|
*/
|
|
134
191
|
Value: string;
|
|
135
192
|
};
|
|
193
|
+
/**
|
|
194
|
+
* Type definition for `AWS::SageMaker::Project.TemplateProviderDetail`.
|
|
195
|
+
* Details about the template provider for the SageMaker project.
|
|
196
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-project-templateproviderdetail.html}
|
|
197
|
+
*/
|
|
198
|
+
export type TemplateProviderDetail = {
|
|
199
|
+
/**
|
|
200
|
+
* CloudFormation template provider details for a SageMaker project.
|
|
201
|
+
*/
|
|
202
|
+
CfnTemplateProviderDetail?: CfnTemplateProviderDetail;
|
|
203
|
+
};
|
|
136
204
|
/**
|
|
137
205
|
* Resource Type definition for AWS::SageMaker::Project
|
|
138
206
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-project.html}
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Definition of AWS::Wisdom::QuickResponse Resource Type.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-quickresponse.html}
|
|
6
|
+
*/
|
|
7
|
+
export type WisdomQuickResponseProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The Amazon Connect contact channels this quick response applies to.
|
|
10
|
+
*/
|
|
11
|
+
Channels?: ChannelType[];
|
|
12
|
+
/**
|
|
13
|
+
* The container of quick response content.
|
|
14
|
+
*/
|
|
15
|
+
Content: QuickResponseContentProvider;
|
|
16
|
+
/**
|
|
17
|
+
* The media type of the quick response content.
|
|
18
|
+
- Use application/x.quickresponse;format=plain for quick response written in plain text.
|
|
19
|
+
- Use application/x.quickresponse;format=markdown for quick response written in richtext.
|
|
20
|
+
* @pattern `^(application/x\.quickresponse;format=(plain|markdown))$`
|
|
21
|
+
*/
|
|
22
|
+
ContentType?: string;
|
|
23
|
+
/**
|
|
24
|
+
* The description of the quick response.
|
|
25
|
+
* @minLength `1`
|
|
26
|
+
* @maxLength `255`
|
|
27
|
+
*/
|
|
28
|
+
Description?: string;
|
|
29
|
+
/**
|
|
30
|
+
* The configuration information of the user groups that the quick response is accessible to.
|
|
31
|
+
*/
|
|
32
|
+
GroupingConfiguration?: GroupingConfiguration;
|
|
33
|
+
/**
|
|
34
|
+
* Whether the quick response is active.
|
|
35
|
+
*/
|
|
36
|
+
IsActive?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* The Amazon Resource Name (ARN) of the knowledge base.
|
|
39
|
+
* @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}){0,2}$`
|
|
40
|
+
*/
|
|
41
|
+
KnowledgeBaseArn: string;
|
|
42
|
+
/**
|
|
43
|
+
* The language code value for the language in which the quick response is written. The supported language codes include de_DE, en_US, es_ES, fr_FR, id_ID, it_IT, ja_JP, ko_KR, pt_BR, zh_CN, zh_TW
|
|
44
|
+
* @minLength `2`
|
|
45
|
+
* @maxLength `5`
|
|
46
|
+
*/
|
|
47
|
+
Language?: string;
|
|
48
|
+
/**
|
|
49
|
+
* The name of the quick response.
|
|
50
|
+
* @minLength `1`
|
|
51
|
+
* @maxLength `100`
|
|
52
|
+
*/
|
|
53
|
+
Name: string;
|
|
54
|
+
/**
|
|
55
|
+
* The shortcut key of the quick response. The value should be unique across the knowledge base.
|
|
56
|
+
* @minLength `1`
|
|
57
|
+
* @maxLength `100`
|
|
58
|
+
*/
|
|
59
|
+
ShortcutKey?: string;
|
|
60
|
+
/**
|
|
61
|
+
* An array of key-value pairs to apply to this resource.
|
|
62
|
+
*/
|
|
63
|
+
Tags?: Tag[];
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Attribute type definition for `AWS::Wisdom::QuickResponse`.
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-quickresponse.html#aws-resource-wisdom-quickresponse-return-values}
|
|
68
|
+
*/
|
|
69
|
+
export type WisdomQuickResponseAttributes = {
|
|
70
|
+
/**
|
|
71
|
+
* The content of the quick response stored in different media types.
|
|
72
|
+
*/
|
|
73
|
+
Contents: {
|
|
74
|
+
/**
|
|
75
|
+
* The container of quick response content.
|
|
76
|
+
*/
|
|
77
|
+
Markdown: {
|
|
78
|
+
/**
|
|
79
|
+
* The content of the quick response.
|
|
80
|
+
* @minLength `1`
|
|
81
|
+
* @maxLength `1024`
|
|
82
|
+
*/
|
|
83
|
+
Content: string;
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* The container of quick response content.
|
|
87
|
+
*/
|
|
88
|
+
PlainText: {
|
|
89
|
+
/**
|
|
90
|
+
* The content of the quick response.
|
|
91
|
+
* @minLength `1`
|
|
92
|
+
* @maxLength `1024`
|
|
93
|
+
*/
|
|
94
|
+
Content: string;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* The Amazon Resource Name (ARN) of the quick response.
|
|
99
|
+
* @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}){0,2}$`
|
|
100
|
+
*/
|
|
101
|
+
QuickResponseArn: string;
|
|
102
|
+
/**
|
|
103
|
+
* The identifier of the quick response.
|
|
104
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
|
|
105
|
+
*/
|
|
106
|
+
QuickResponseId: string;
|
|
107
|
+
/**
|
|
108
|
+
* The status of the quick response data.
|
|
109
|
+
*/
|
|
110
|
+
Status: Status;
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* Type definition for `AWS::Wisdom::QuickResponse.ChannelType`.
|
|
114
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-quickresponse-channeltype.html}
|
|
115
|
+
*/
|
|
116
|
+
export type ChannelType = "Chat" | "Email";
|
|
117
|
+
/**
|
|
118
|
+
* Type definition for `AWS::Wisdom::QuickResponse.GroupingConfiguration`.
|
|
119
|
+
* The configuration information of the user groups that the quick response is accessible to.
|
|
120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-quickresponse-groupingconfiguration.html}
|
|
121
|
+
*/
|
|
122
|
+
export type GroupingConfiguration = {
|
|
123
|
+
/**
|
|
124
|
+
* The criteria used for grouping Amazon Q in Connect users.
|
|
125
|
+
* @minLength `1`
|
|
126
|
+
* @maxLength `100`
|
|
127
|
+
*/
|
|
128
|
+
Criteria: string;
|
|
129
|
+
/**
|
|
130
|
+
* The list of values that define different groups of Amazon Q in Connect users.
|
|
131
|
+
*/
|
|
132
|
+
Values: string[];
|
|
133
|
+
};
|
|
134
|
+
/**
|
|
135
|
+
* Type definition for `AWS::Wisdom::QuickResponse.QuickResponseContentProvider`.
|
|
136
|
+
* The container of quick response content.
|
|
137
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-quickresponse-quickresponsecontentprovider.html}
|
|
138
|
+
*/
|
|
139
|
+
export type QuickResponseContentProvider = {
|
|
140
|
+
/**
|
|
141
|
+
* The content of the quick response.
|
|
142
|
+
* @minLength `1`
|
|
143
|
+
* @maxLength `1024`
|
|
144
|
+
*/
|
|
145
|
+
Content?: string;
|
|
146
|
+
};
|
|
147
|
+
/**
|
|
148
|
+
* Type definition for `AWS::Wisdom::QuickResponse.QuickResponseContents`.
|
|
149
|
+
* The content of the quick response stored in different media types.
|
|
150
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-quickresponse-quickresponsecontents.html}
|
|
151
|
+
*/
|
|
152
|
+
export type QuickResponseContents = {
|
|
153
|
+
/**
|
|
154
|
+
* The container of quick response content.
|
|
155
|
+
*/
|
|
156
|
+
Markdown?: QuickResponseContentProvider;
|
|
157
|
+
/**
|
|
158
|
+
* The container of quick response content.
|
|
159
|
+
*/
|
|
160
|
+
PlainText?: QuickResponseContentProvider;
|
|
161
|
+
};
|
|
162
|
+
/**
|
|
163
|
+
* Type definition for `AWS::Wisdom::QuickResponse.Status`.
|
|
164
|
+
* The status of the quick response data.
|
|
165
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-quickresponse-status.html}
|
|
166
|
+
*/
|
|
167
|
+
export type Status = "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "CREATED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "DELETED" | "UPDATE_IN_PROGRESS" | "UPDATE_FAILED";
|
|
168
|
+
/**
|
|
169
|
+
* Type definition for `AWS::Wisdom::QuickResponse.Tag`.
|
|
170
|
+
* A key-value pair to associate with a resource.
|
|
171
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-quickresponse-tag.html}
|
|
172
|
+
*/
|
|
173
|
+
export type Tag = {
|
|
174
|
+
/**
|
|
175
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -
|
|
176
|
+
* @minLength `1`
|
|
177
|
+
* @maxLength `128`
|
|
178
|
+
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
|
179
|
+
*/
|
|
180
|
+
Key: string;
|
|
181
|
+
/**
|
|
182
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -
|
|
183
|
+
* @minLength `1`
|
|
184
|
+
* @maxLength `256`
|
|
185
|
+
*/
|
|
186
|
+
Value: string;
|
|
187
|
+
};
|
|
188
|
+
/**
|
|
189
|
+
* Definition of AWS::Wisdom::QuickResponse Resource Type.
|
|
190
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-quickresponse.html}
|
|
191
|
+
*/
|
|
192
|
+
export declare class WisdomQuickResponse extends $Resource<"AWS::Wisdom::QuickResponse", WisdomQuickResponseProperties, WisdomQuickResponseAttributes> {
|
|
193
|
+
static readonly Type = "AWS::Wisdom::QuickResponse";
|
|
194
|
+
constructor(logicalId: string, properties: WisdomQuickResponseProperties, options?: $ResourceOptions);
|
|
195
|
+
}
|
|
196
|
+
//# sourceMappingURL=AWS-Wisdom-QuickResponse.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::Wisdom::QuickResponse Resource Type.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-quickresponse.html}
|
|
5
|
+
*/
|
|
6
|
+
export class WisdomQuickResponse extends $Resource {
|
|
7
|
+
static Type = "AWS::Wisdom::QuickResponse";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, WisdomQuickResponse.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Wisdom-QuickResponse.js.map
|