@awboost/cfn-resource-types 0.1.67 → 0.1.69
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-ACMPCA-CertificateAuthority.d.ts +4 -4
- package/lib/AWS-Bedrock-DataSource.d.ts +23 -1
- package/lib/AWS-Bedrock-KnowledgeBase.d.ts +1 -1
- package/lib/AWS-EC2-KeyPair.d.ts +31 -19
- package/lib/AWS-EC2-KeyPair.js +8 -1
- package/lib/AWS-EC2-TransitGatewayRouteTablePropagation.d.ts +9 -10
- package/lib/AWS-EC2-TransitGatewayRouteTablePropagation.js +1 -1
- package/lib/AWS-ECS-TaskDefinition.d.ts +14 -0
- package/lib/AWS-QBusiness-Application.d.ts +119 -0
- package/lib/AWS-QBusiness-Application.js +12 -0
- package/lib/AWS-QBusiness-DataSource.d.ts +225 -0
- package/lib/AWS-QBusiness-DataSource.js +12 -0
- package/lib/AWS-QBusiness-Index.d.ts +161 -0
- package/lib/AWS-QBusiness-Index.js +12 -0
- package/lib/AWS-QBusiness-Plugin.d.ts +192 -0
- package/lib/AWS-QBusiness-Plugin.js +12 -0
- package/lib/AWS-QBusiness-Retriever.d.ts +122 -0
- package/lib/AWS-QBusiness-Retriever.js +12 -0
- package/lib/AWS-QBusiness-WebExperience.d.ts +105 -0
- package/lib/AWS-QBusiness-WebExperience.js +12 -0
- package/lib/AWS-Transfer-Agreement.d.ts +2 -2
- package/lib/AWS-Transfer-Certificate.d.ts +18 -24
- package/lib/AWS-Transfer-Connector.d.ts +12 -2
- package/lib/AWS-Transfer-Profile.d.ts +1 -0
- package/lib/AWS-Transfer-Workflow.d.ts +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,161 @@
|
|
|
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::QBusiness::Index Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-index.html}
|
|
6
|
+
*/
|
|
7
|
+
export type QBusinessIndexProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `36`
|
|
10
|
+
* @maxLength `36`
|
|
11
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
12
|
+
*/
|
|
13
|
+
ApplicationId: string;
|
|
14
|
+
CapacityConfiguration?: IndexCapacityConfiguration;
|
|
15
|
+
/**
|
|
16
|
+
* @minLength `0`
|
|
17
|
+
* @maxLength `1000`
|
|
18
|
+
* @pattern `^[\s\S]*$`
|
|
19
|
+
*/
|
|
20
|
+
Description?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @minLength `1`
|
|
23
|
+
* @maxLength `1000`
|
|
24
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9_-]*$`
|
|
25
|
+
*/
|
|
26
|
+
DisplayName: string;
|
|
27
|
+
/**
|
|
28
|
+
* @minLength `1`
|
|
29
|
+
* @maxLength `500`
|
|
30
|
+
*/
|
|
31
|
+
DocumentAttributeConfigurations?: DocumentAttributeConfiguration[];
|
|
32
|
+
/**
|
|
33
|
+
* @minLength `0`
|
|
34
|
+
* @maxLength `200`
|
|
35
|
+
*/
|
|
36
|
+
Tags?: Tag[];
|
|
37
|
+
Type?: IndexType;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Attribute type definition for `AWS::QBusiness::Index`.
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-index.html#aws-resource-qbusiness-index-return-values}
|
|
42
|
+
*/
|
|
43
|
+
export type QBusinessIndexAttributes = {
|
|
44
|
+
CreatedAt: string;
|
|
45
|
+
/**
|
|
46
|
+
* @minLength `0`
|
|
47
|
+
* @maxLength `1284`
|
|
48
|
+
* @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
|
|
49
|
+
*/
|
|
50
|
+
IndexArn: string;
|
|
51
|
+
/**
|
|
52
|
+
* @minLength `36`
|
|
53
|
+
* @maxLength `36`
|
|
54
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
55
|
+
*/
|
|
56
|
+
IndexId: string;
|
|
57
|
+
IndexStatistics: {
|
|
58
|
+
TextDocumentStatistics: {
|
|
59
|
+
/**
|
|
60
|
+
* @min `0`
|
|
61
|
+
*/
|
|
62
|
+
IndexedTextBytes: number;
|
|
63
|
+
/**
|
|
64
|
+
* @min `0`
|
|
65
|
+
*/
|
|
66
|
+
IndexedTextDocumentCount: number;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
Status: IndexStatus;
|
|
70
|
+
UpdatedAt: string;
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* Type definition for `AWS::QBusiness::Index.AttributeType`.
|
|
74
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-index-attributetype.html}
|
|
75
|
+
*/
|
|
76
|
+
export type AttributeType = "STRING" | "STRING_LIST" | "NUMBER" | "DATE";
|
|
77
|
+
/**
|
|
78
|
+
* Type definition for `AWS::QBusiness::Index.DocumentAttributeConfiguration`.
|
|
79
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-index-documentattributeconfiguration.html}
|
|
80
|
+
*/
|
|
81
|
+
export type DocumentAttributeConfiguration = {
|
|
82
|
+
/**
|
|
83
|
+
* @minLength `1`
|
|
84
|
+
* @maxLength `30`
|
|
85
|
+
* @pattern `^[a-zA-Z0-9_][a-zA-Z0-9_-]*$`
|
|
86
|
+
*/
|
|
87
|
+
Name?: string;
|
|
88
|
+
Search?: Status;
|
|
89
|
+
Type?: AttributeType;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* Type definition for `AWS::QBusiness::Index.IndexCapacityConfiguration`.
|
|
93
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-index-indexcapacityconfiguration.html}
|
|
94
|
+
*/
|
|
95
|
+
export type IndexCapacityConfiguration = {
|
|
96
|
+
/**
|
|
97
|
+
* @min `1`
|
|
98
|
+
*/
|
|
99
|
+
Units?: number;
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* Type definition for `AWS::QBusiness::Index.IndexStatistics`.
|
|
103
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-index-indexstatistics.html}
|
|
104
|
+
*/
|
|
105
|
+
export type IndexStatistics = {
|
|
106
|
+
TextDocumentStatistics?: TextDocumentStatistics;
|
|
107
|
+
};
|
|
108
|
+
/**
|
|
109
|
+
* Type definition for `AWS::QBusiness::Index.IndexStatus`.
|
|
110
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-index-indexstatus.html}
|
|
111
|
+
*/
|
|
112
|
+
export type IndexStatus = "CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING";
|
|
113
|
+
/**
|
|
114
|
+
* Type definition for `AWS::QBusiness::Index.IndexType`.
|
|
115
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-index-indextype.html}
|
|
116
|
+
*/
|
|
117
|
+
export type IndexType = "ENTERPRISE" | "STARTER";
|
|
118
|
+
/**
|
|
119
|
+
* Type definition for `AWS::QBusiness::Index.Status`.
|
|
120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-index-status.html}
|
|
121
|
+
*/
|
|
122
|
+
export type Status = "ENABLED" | "DISABLED";
|
|
123
|
+
/**
|
|
124
|
+
* Type definition for `AWS::QBusiness::Index.Tag`.
|
|
125
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-index-tag.html}
|
|
126
|
+
*/
|
|
127
|
+
export type Tag = {
|
|
128
|
+
/**
|
|
129
|
+
* @minLength `1`
|
|
130
|
+
* @maxLength `128`
|
|
131
|
+
*/
|
|
132
|
+
Key: string;
|
|
133
|
+
/**
|
|
134
|
+
* @minLength `0`
|
|
135
|
+
* @maxLength `256`
|
|
136
|
+
*/
|
|
137
|
+
Value: string;
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* Type definition for `AWS::QBusiness::Index.TextDocumentStatistics`.
|
|
141
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-index-textdocumentstatistics.html}
|
|
142
|
+
*/
|
|
143
|
+
export type TextDocumentStatistics = {
|
|
144
|
+
/**
|
|
145
|
+
* @min `0`
|
|
146
|
+
*/
|
|
147
|
+
IndexedTextBytes?: number;
|
|
148
|
+
/**
|
|
149
|
+
* @min `0`
|
|
150
|
+
*/
|
|
151
|
+
IndexedTextDocumentCount?: number;
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* Definition of AWS::QBusiness::Index Resource Type
|
|
155
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-index.html}
|
|
156
|
+
*/
|
|
157
|
+
export declare class QBusinessIndex extends $Resource<"AWS::QBusiness::Index", QBusinessIndexProperties, QBusinessIndexAttributes> {
|
|
158
|
+
static readonly Type = "AWS::QBusiness::Index";
|
|
159
|
+
constructor(logicalId: string, properties: QBusinessIndexProperties, options?: $ResourceOptions);
|
|
160
|
+
}
|
|
161
|
+
//# sourceMappingURL=AWS-QBusiness-Index.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::QBusiness::Index Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-index.html}
|
|
5
|
+
*/
|
|
6
|
+
export class QBusinessIndex extends $Resource {
|
|
7
|
+
static Type = "AWS::QBusiness::Index";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, QBusinessIndex.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-QBusiness-Index.js.map
|
|
@@ -0,0 +1,192 @@
|
|
|
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::QBusiness::Plugin Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-plugin.html}
|
|
6
|
+
*/
|
|
7
|
+
export type QBusinessPluginProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `36`
|
|
10
|
+
* @maxLength `36`
|
|
11
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
12
|
+
*/
|
|
13
|
+
ApplicationId: string;
|
|
14
|
+
AuthConfiguration: PluginAuthConfiguration;
|
|
15
|
+
CustomPluginConfiguration?: CustomPluginConfiguration;
|
|
16
|
+
/**
|
|
17
|
+
* @minLength `1`
|
|
18
|
+
* @maxLength `100`
|
|
19
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9_-]*$`
|
|
20
|
+
*/
|
|
21
|
+
DisplayName: string;
|
|
22
|
+
/**
|
|
23
|
+
* @minLength `1`
|
|
24
|
+
* @maxLength `2048`
|
|
25
|
+
* @pattern `^(https?|ftp|file)://([^\s]*)$`
|
|
26
|
+
*/
|
|
27
|
+
ServerUrl?: string;
|
|
28
|
+
State?: PluginState;
|
|
29
|
+
/**
|
|
30
|
+
* @minLength `0`
|
|
31
|
+
* @maxLength `200`
|
|
32
|
+
*/
|
|
33
|
+
Tags?: Tag[];
|
|
34
|
+
Type: PluginType;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Attribute type definition for `AWS::QBusiness::Plugin`.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-plugin.html#aws-resource-qbusiness-plugin-return-values}
|
|
39
|
+
*/
|
|
40
|
+
export type QBusinessPluginAttributes = {
|
|
41
|
+
BuildStatus: PluginBuildStatus;
|
|
42
|
+
CreatedAt: string;
|
|
43
|
+
/**
|
|
44
|
+
* @minLength `0`
|
|
45
|
+
* @maxLength `1284`
|
|
46
|
+
* @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
|
|
47
|
+
*/
|
|
48
|
+
PluginArn: string;
|
|
49
|
+
/**
|
|
50
|
+
* @minLength `36`
|
|
51
|
+
* @maxLength `36`
|
|
52
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
|
|
53
|
+
*/
|
|
54
|
+
PluginId: string;
|
|
55
|
+
UpdatedAt: string;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* Type definition for `AWS::QBusiness::Plugin.APISchema`.
|
|
59
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-apischema.html}
|
|
60
|
+
*/
|
|
61
|
+
export type APISchema = {
|
|
62
|
+
Payload: string;
|
|
63
|
+
} | {
|
|
64
|
+
S3: S3;
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Type definition for `AWS::QBusiness::Plugin.APISchemaType`.
|
|
68
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-apischematype.html}
|
|
69
|
+
*/
|
|
70
|
+
export type APISchemaType = "OPEN_API_V3";
|
|
71
|
+
/**
|
|
72
|
+
* Type definition for `AWS::QBusiness::Plugin.BasicAuthConfiguration`.
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-basicauthconfiguration.html}
|
|
74
|
+
*/
|
|
75
|
+
export type BasicAuthConfiguration = {
|
|
76
|
+
/**
|
|
77
|
+
* @minLength `0`
|
|
78
|
+
* @maxLength `1284`
|
|
79
|
+
* @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
|
|
80
|
+
*/
|
|
81
|
+
RoleArn: string;
|
|
82
|
+
/**
|
|
83
|
+
* @minLength `0`
|
|
84
|
+
* @maxLength `1284`
|
|
85
|
+
* @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
|
|
86
|
+
*/
|
|
87
|
+
SecretArn: string;
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Type definition for `AWS::QBusiness::Plugin.CustomPluginConfiguration`.
|
|
91
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-custompluginconfiguration.html}
|
|
92
|
+
*/
|
|
93
|
+
export type CustomPluginConfiguration = {
|
|
94
|
+
ApiSchema: APISchema;
|
|
95
|
+
ApiSchemaType: APISchemaType;
|
|
96
|
+
/**
|
|
97
|
+
* @minLength `1`
|
|
98
|
+
* @maxLength `200`
|
|
99
|
+
*/
|
|
100
|
+
Description: string;
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* Type definition for `AWS::QBusiness::Plugin.NoAuthConfiguration`.
|
|
104
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-noauthconfiguration.html}
|
|
105
|
+
*/
|
|
106
|
+
export type NoAuthConfiguration = Record<string, any>;
|
|
107
|
+
/**
|
|
108
|
+
* Type definition for `AWS::QBusiness::Plugin.OAuth2ClientCredentialConfiguration`.
|
|
109
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-oauth2clientcredentialconfiguration.html}
|
|
110
|
+
*/
|
|
111
|
+
export type OAuth2ClientCredentialConfiguration = {
|
|
112
|
+
/**
|
|
113
|
+
* @minLength `0`
|
|
114
|
+
* @maxLength `1284`
|
|
115
|
+
* @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
|
|
116
|
+
*/
|
|
117
|
+
RoleArn: string;
|
|
118
|
+
/**
|
|
119
|
+
* @minLength `0`
|
|
120
|
+
* @maxLength `1284`
|
|
121
|
+
* @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
|
|
122
|
+
*/
|
|
123
|
+
SecretArn: string;
|
|
124
|
+
};
|
|
125
|
+
/**
|
|
126
|
+
* Type definition for `AWS::QBusiness::Plugin.PluginAuthConfiguration`.
|
|
127
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-pluginauthconfiguration.html}
|
|
128
|
+
*/
|
|
129
|
+
export type PluginAuthConfiguration = {
|
|
130
|
+
BasicAuthConfiguration: BasicAuthConfiguration;
|
|
131
|
+
} | {
|
|
132
|
+
OAuth2ClientCredentialConfiguration: OAuth2ClientCredentialConfiguration;
|
|
133
|
+
} | {
|
|
134
|
+
NoAuthConfiguration: NoAuthConfiguration;
|
|
135
|
+
};
|
|
136
|
+
/**
|
|
137
|
+
* Type definition for `AWS::QBusiness::Plugin.PluginBuildStatus`.
|
|
138
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-pluginbuildstatus.html}
|
|
139
|
+
*/
|
|
140
|
+
export type PluginBuildStatus = "READY" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED";
|
|
141
|
+
/**
|
|
142
|
+
* Type definition for `AWS::QBusiness::Plugin.PluginState`.
|
|
143
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-pluginstate.html}
|
|
144
|
+
*/
|
|
145
|
+
export type PluginState = "ENABLED" | "DISABLED";
|
|
146
|
+
/**
|
|
147
|
+
* Type definition for `AWS::QBusiness::Plugin.PluginType`.
|
|
148
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-plugintype.html}
|
|
149
|
+
*/
|
|
150
|
+
export type PluginType = "SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM";
|
|
151
|
+
/**
|
|
152
|
+
* Type definition for `AWS::QBusiness::Plugin.S3`.
|
|
153
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-s3.html}
|
|
154
|
+
*/
|
|
155
|
+
export type S3 = {
|
|
156
|
+
/**
|
|
157
|
+
* @minLength `1`
|
|
158
|
+
* @maxLength `63`
|
|
159
|
+
* @pattern `^[a-z0-9][\.\-a-z0-9]{1,61}[a-z0-9]$`
|
|
160
|
+
*/
|
|
161
|
+
Bucket: string;
|
|
162
|
+
/**
|
|
163
|
+
* @minLength `1`
|
|
164
|
+
* @maxLength `1024`
|
|
165
|
+
*/
|
|
166
|
+
Key: string;
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* Type definition for `AWS::QBusiness::Plugin.Tag`.
|
|
170
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-tag.html}
|
|
171
|
+
*/
|
|
172
|
+
export type Tag = {
|
|
173
|
+
/**
|
|
174
|
+
* @minLength `1`
|
|
175
|
+
* @maxLength `128`
|
|
176
|
+
*/
|
|
177
|
+
Key: string;
|
|
178
|
+
/**
|
|
179
|
+
* @minLength `0`
|
|
180
|
+
* @maxLength `256`
|
|
181
|
+
*/
|
|
182
|
+
Value: string;
|
|
183
|
+
};
|
|
184
|
+
/**
|
|
185
|
+
* Definition of AWS::QBusiness::Plugin Resource Type
|
|
186
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-plugin.html}
|
|
187
|
+
*/
|
|
188
|
+
export declare class QBusinessPlugin extends $Resource<"AWS::QBusiness::Plugin", QBusinessPluginProperties, QBusinessPluginAttributes> {
|
|
189
|
+
static readonly Type = "AWS::QBusiness::Plugin";
|
|
190
|
+
constructor(logicalId: string, properties: QBusinessPluginProperties, options?: $ResourceOptions);
|
|
191
|
+
}
|
|
192
|
+
//# sourceMappingURL=AWS-QBusiness-Plugin.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::QBusiness::Plugin Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-plugin.html}
|
|
5
|
+
*/
|
|
6
|
+
export class QBusinessPlugin extends $Resource {
|
|
7
|
+
static Type = "AWS::QBusiness::Plugin";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, QBusinessPlugin.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-QBusiness-Plugin.js.map
|
|
@@ -0,0 +1,122 @@
|
|
|
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::QBusiness::Retriever Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-retriever.html}
|
|
6
|
+
*/
|
|
7
|
+
export type QBusinessRetrieverProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `36`
|
|
10
|
+
* @maxLength `36`
|
|
11
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
12
|
+
*/
|
|
13
|
+
ApplicationId: string;
|
|
14
|
+
Configuration: RetrieverConfiguration;
|
|
15
|
+
/**
|
|
16
|
+
* @minLength `1`
|
|
17
|
+
* @maxLength `1000`
|
|
18
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9_-]*$`
|
|
19
|
+
*/
|
|
20
|
+
DisplayName: string;
|
|
21
|
+
/**
|
|
22
|
+
* @minLength `0`
|
|
23
|
+
* @maxLength `1284`
|
|
24
|
+
* @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
|
|
25
|
+
*/
|
|
26
|
+
RoleArn?: string;
|
|
27
|
+
/**
|
|
28
|
+
* @minLength `0`
|
|
29
|
+
* @maxLength `200`
|
|
30
|
+
*/
|
|
31
|
+
Tags?: Tag[];
|
|
32
|
+
Type: RetrieverType;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Attribute type definition for `AWS::QBusiness::Retriever`.
|
|
36
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-retriever.html#aws-resource-qbusiness-retriever-return-values}
|
|
37
|
+
*/
|
|
38
|
+
export type QBusinessRetrieverAttributes = {
|
|
39
|
+
CreatedAt: string;
|
|
40
|
+
/**
|
|
41
|
+
* @minLength `0`
|
|
42
|
+
* @maxLength `1284`
|
|
43
|
+
* @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
|
|
44
|
+
*/
|
|
45
|
+
RetrieverArn: string;
|
|
46
|
+
/**
|
|
47
|
+
* @minLength `36`
|
|
48
|
+
* @maxLength `36`
|
|
49
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
50
|
+
*/
|
|
51
|
+
RetrieverId: string;
|
|
52
|
+
Status: RetrieverStatus;
|
|
53
|
+
UpdatedAt: string;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* Type definition for `AWS::QBusiness::Retriever.KendraIndexConfiguration`.
|
|
57
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-retriever-kendraindexconfiguration.html}
|
|
58
|
+
*/
|
|
59
|
+
export type KendraIndexConfiguration = {
|
|
60
|
+
/**
|
|
61
|
+
* @minLength `36`
|
|
62
|
+
* @maxLength `36`
|
|
63
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
64
|
+
*/
|
|
65
|
+
IndexId: string;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Type definition for `AWS::QBusiness::Retriever.NativeIndexConfiguration`.
|
|
69
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-retriever-nativeindexconfiguration.html}
|
|
70
|
+
*/
|
|
71
|
+
export type NativeIndexConfiguration = {
|
|
72
|
+
/**
|
|
73
|
+
* @minLength `36`
|
|
74
|
+
* @maxLength `36`
|
|
75
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
76
|
+
*/
|
|
77
|
+
IndexId: string;
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* Type definition for `AWS::QBusiness::Retriever.RetrieverConfiguration`.
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-retriever-retrieverconfiguration.html}
|
|
82
|
+
*/
|
|
83
|
+
export type RetrieverConfiguration = {
|
|
84
|
+
NativeIndexConfiguration: NativeIndexConfiguration;
|
|
85
|
+
} | {
|
|
86
|
+
KendraIndexConfiguration: KendraIndexConfiguration;
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* Type definition for `AWS::QBusiness::Retriever.RetrieverStatus`.
|
|
90
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-retriever-retrieverstatus.html}
|
|
91
|
+
*/
|
|
92
|
+
export type RetrieverStatus = "CREATING" | "ACTIVE" | "FAILED";
|
|
93
|
+
/**
|
|
94
|
+
* Type definition for `AWS::QBusiness::Retriever.RetrieverType`.
|
|
95
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-retriever-retrievertype.html}
|
|
96
|
+
*/
|
|
97
|
+
export type RetrieverType = "NATIVE_INDEX" | "KENDRA_INDEX";
|
|
98
|
+
/**
|
|
99
|
+
* Type definition for `AWS::QBusiness::Retriever.Tag`.
|
|
100
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-retriever-tag.html}
|
|
101
|
+
*/
|
|
102
|
+
export type Tag = {
|
|
103
|
+
/**
|
|
104
|
+
* @minLength `1`
|
|
105
|
+
* @maxLength `128`
|
|
106
|
+
*/
|
|
107
|
+
Key: string;
|
|
108
|
+
/**
|
|
109
|
+
* @minLength `0`
|
|
110
|
+
* @maxLength `256`
|
|
111
|
+
*/
|
|
112
|
+
Value: string;
|
|
113
|
+
};
|
|
114
|
+
/**
|
|
115
|
+
* Definition of AWS::QBusiness::Retriever Resource Type
|
|
116
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-retriever.html}
|
|
117
|
+
*/
|
|
118
|
+
export declare class QBusinessRetriever extends $Resource<"AWS::QBusiness::Retriever", QBusinessRetrieverProperties, QBusinessRetrieverAttributes> {
|
|
119
|
+
static readonly Type = "AWS::QBusiness::Retriever";
|
|
120
|
+
constructor(logicalId: string, properties: QBusinessRetrieverProperties, options?: $ResourceOptions);
|
|
121
|
+
}
|
|
122
|
+
//# sourceMappingURL=AWS-QBusiness-Retriever.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::QBusiness::Retriever Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-retriever.html}
|
|
5
|
+
*/
|
|
6
|
+
export class QBusinessRetriever extends $Resource {
|
|
7
|
+
static Type = "AWS::QBusiness::Retriever";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, QBusinessRetriever.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-QBusiness-Retriever.js.map
|
|
@@ -0,0 +1,105 @@
|
|
|
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::QBusiness::WebExperience Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html}
|
|
6
|
+
*/
|
|
7
|
+
export type QBusinessWebExperienceProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `36`
|
|
10
|
+
* @maxLength `36`
|
|
11
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
12
|
+
*/
|
|
13
|
+
ApplicationId: string;
|
|
14
|
+
/**
|
|
15
|
+
* @minLength `0`
|
|
16
|
+
* @maxLength `1284`
|
|
17
|
+
* @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
|
|
18
|
+
*/
|
|
19
|
+
RoleArn?: string;
|
|
20
|
+
SamplePromptsControlMode?: WebExperienceSamplePromptsControlMode;
|
|
21
|
+
/**
|
|
22
|
+
* @minLength `0`
|
|
23
|
+
* @maxLength `500`
|
|
24
|
+
* @pattern `^[\s\S]*$`
|
|
25
|
+
*/
|
|
26
|
+
Subtitle?: string;
|
|
27
|
+
/**
|
|
28
|
+
* @minLength `0`
|
|
29
|
+
* @maxLength `200`
|
|
30
|
+
*/
|
|
31
|
+
Tags?: Tag[];
|
|
32
|
+
/**
|
|
33
|
+
* @minLength `0`
|
|
34
|
+
* @maxLength `500`
|
|
35
|
+
* @pattern `^[\s\S]*$`
|
|
36
|
+
*/
|
|
37
|
+
Title?: string;
|
|
38
|
+
/**
|
|
39
|
+
* @minLength `0`
|
|
40
|
+
* @maxLength `300`
|
|
41
|
+
*/
|
|
42
|
+
WelcomeMessage?: string;
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Attribute type definition for `AWS::QBusiness::WebExperience`.
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#aws-resource-qbusiness-webexperience-return-values}
|
|
47
|
+
*/
|
|
48
|
+
export type QBusinessWebExperienceAttributes = {
|
|
49
|
+
CreatedAt: string;
|
|
50
|
+
/**
|
|
51
|
+
* @minLength `1`
|
|
52
|
+
* @maxLength `2048`
|
|
53
|
+
* @pattern `^(https?|ftp|file)://([^\s]*)$`
|
|
54
|
+
*/
|
|
55
|
+
DefaultEndpoint: string;
|
|
56
|
+
Status: WebExperienceStatus;
|
|
57
|
+
UpdatedAt: string;
|
|
58
|
+
/**
|
|
59
|
+
* @minLength `0`
|
|
60
|
+
* @maxLength `1284`
|
|
61
|
+
* @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
|
|
62
|
+
*/
|
|
63
|
+
WebExperienceArn: string;
|
|
64
|
+
/**
|
|
65
|
+
* @minLength `36`
|
|
66
|
+
* @maxLength `36`
|
|
67
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]*$`
|
|
68
|
+
*/
|
|
69
|
+
WebExperienceId: string;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Type definition for `AWS::QBusiness::WebExperience.Tag`.
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-tag.html}
|
|
74
|
+
*/
|
|
75
|
+
export type Tag = {
|
|
76
|
+
/**
|
|
77
|
+
* @minLength `1`
|
|
78
|
+
* @maxLength `128`
|
|
79
|
+
*/
|
|
80
|
+
Key: string;
|
|
81
|
+
/**
|
|
82
|
+
* @minLength `0`
|
|
83
|
+
* @maxLength `256`
|
|
84
|
+
*/
|
|
85
|
+
Value: string;
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* Type definition for `AWS::QBusiness::WebExperience.WebExperienceSamplePromptsControlMode`.
|
|
89
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-webexperiencesamplepromptscontrolmode.html}
|
|
90
|
+
*/
|
|
91
|
+
export type WebExperienceSamplePromptsControlMode = "ENABLED" | "DISABLED";
|
|
92
|
+
/**
|
|
93
|
+
* Type definition for `AWS::QBusiness::WebExperience.WebExperienceStatus`.
|
|
94
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-webexperiencestatus.html}
|
|
95
|
+
*/
|
|
96
|
+
export type WebExperienceStatus = "CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "PENDING_AUTH_CONFIG";
|
|
97
|
+
/**
|
|
98
|
+
* Definition of AWS::QBusiness::WebExperience Resource Type
|
|
99
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html}
|
|
100
|
+
*/
|
|
101
|
+
export declare class QBusinessWebExperience extends $Resource<"AWS::QBusiness::WebExperience", QBusinessWebExperienceProperties, QBusinessWebExperienceAttributes> {
|
|
102
|
+
static readonly Type = "AWS::QBusiness::WebExperience";
|
|
103
|
+
constructor(logicalId: string, properties: QBusinessWebExperienceProperties, options?: $ResourceOptions);
|
|
104
|
+
}
|
|
105
|
+
//# sourceMappingURL=AWS-QBusiness-WebExperience.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::QBusiness::WebExperience Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html}
|
|
5
|
+
*/
|
|
6
|
+
export class QBusinessWebExperience extends $Resource {
|
|
7
|
+
static Type = "AWS::QBusiness::WebExperience";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, QBusinessWebExperience.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-QBusiness-WebExperience.js.map
|
|
@@ -15,14 +15,14 @@ export type TransferAgreementProperties = {
|
|
|
15
15
|
/**
|
|
16
16
|
* Specifies the base directory for the agreement.
|
|
17
17
|
* @maxLength `1024`
|
|
18
|
-
* @pattern
|
|
18
|
+
* @pattern `^(|/.*)$`
|
|
19
19
|
*/
|
|
20
20
|
BaseDirectory: string;
|
|
21
21
|
/**
|
|
22
22
|
* A textual description for the agreement.
|
|
23
23
|
* @minLength `1`
|
|
24
24
|
* @maxLength `200`
|
|
25
|
-
* @pattern `^[\
|
|
25
|
+
* @pattern `^[\u0021-\u007E]+$`
|
|
26
26
|
*/
|
|
27
27
|
Description?: string;
|
|
28
28
|
/**
|