@awboost/cfn-resource-types 0.1.68 → 0.1.70
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-DynamoDB-GlobalTable.d.ts +24 -0
- package/lib/AWS-DynamoDB-Table.d.ts +16 -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
|
@@ -25,6 +25,7 @@ export type DynamoDBGlobalTableProperties = {
|
|
|
25
25
|
StreamSpecification?: StreamSpecification;
|
|
26
26
|
TableName?: string;
|
|
27
27
|
TimeToLiveSpecification?: TimeToLiveSpecification;
|
|
28
|
+
WriteOnDemandThroughputSettings?: WriteOnDemandThroughputSettings;
|
|
28
29
|
WriteProvisionedThroughputSettings?: WriteProvisionedThroughputSettings;
|
|
29
30
|
};
|
|
30
31
|
/**
|
|
@@ -90,6 +91,7 @@ export type GlobalSecondaryIndex = {
|
|
|
90
91
|
*/
|
|
91
92
|
KeySchema: KeySchema[];
|
|
92
93
|
Projection: Projection;
|
|
94
|
+
WriteOnDemandThroughputSettings?: WriteOnDemandThroughputSettings;
|
|
93
95
|
WriteProvisionedThroughputSettings?: WriteProvisionedThroughputSettings;
|
|
94
96
|
};
|
|
95
97
|
/**
|
|
@@ -146,6 +148,16 @@ export type Projection = {
|
|
|
146
148
|
NonKeyAttributes?: string[];
|
|
147
149
|
ProjectionType?: string;
|
|
148
150
|
};
|
|
151
|
+
/**
|
|
152
|
+
* Type definition for `AWS::DynamoDB::GlobalTable.ReadOnDemandThroughputSettings`.
|
|
153
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-readondemandthroughputsettings.html}
|
|
154
|
+
*/
|
|
155
|
+
export type ReadOnDemandThroughputSettings = {
|
|
156
|
+
/**
|
|
157
|
+
* @min `1`
|
|
158
|
+
*/
|
|
159
|
+
MaxReadRequestUnits?: number;
|
|
160
|
+
};
|
|
149
161
|
/**
|
|
150
162
|
* Type definition for `AWS::DynamoDB::GlobalTable.ReadProvisionedThroughputSettings`.
|
|
151
163
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-readprovisionedthroughputsettings.html}
|
|
@@ -168,6 +180,7 @@ export type ReplicaGlobalSecondaryIndexSpecification = {
|
|
|
168
180
|
* @maxLength `255`
|
|
169
181
|
*/
|
|
170
182
|
IndexName: string;
|
|
183
|
+
ReadOnDemandThroughputSettings?: ReadOnDemandThroughputSettings;
|
|
171
184
|
ReadProvisionedThroughputSettings?: ReadProvisionedThroughputSettings;
|
|
172
185
|
};
|
|
173
186
|
/**
|
|
@@ -180,6 +193,7 @@ export type ReplicaSpecification = {
|
|
|
180
193
|
GlobalSecondaryIndexes?: ReplicaGlobalSecondaryIndexSpecification[];
|
|
181
194
|
KinesisStreamSpecification?: KinesisStreamSpecification;
|
|
182
195
|
PointInTimeRecoverySpecification?: PointInTimeRecoverySpecification;
|
|
196
|
+
ReadOnDemandThroughputSettings?: ReadOnDemandThroughputSettings;
|
|
183
197
|
ReadProvisionedThroughputSettings?: ReadProvisionedThroughputSettings;
|
|
184
198
|
Region: string;
|
|
185
199
|
ReplicaStreamSpecification?: ReplicaStreamSpecification;
|
|
@@ -256,6 +270,16 @@ export type TimeToLiveSpecification = {
|
|
|
256
270
|
AttributeName?: string;
|
|
257
271
|
Enabled: boolean;
|
|
258
272
|
};
|
|
273
|
+
/**
|
|
274
|
+
* Type definition for `AWS::DynamoDB::GlobalTable.WriteOnDemandThroughputSettings`.
|
|
275
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-writeondemandthroughputsettings.html}
|
|
276
|
+
*/
|
|
277
|
+
export type WriteOnDemandThroughputSettings = {
|
|
278
|
+
/**
|
|
279
|
+
* @min `1`
|
|
280
|
+
*/
|
|
281
|
+
MaxWriteRequestUnits?: number;
|
|
282
|
+
};
|
|
259
283
|
/**
|
|
260
284
|
* Type definition for `AWS::DynamoDB::GlobalTable.WriteProvisionedThroughputSettings`.
|
|
261
285
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-writeprovisionedthroughputsettings.html}
|
|
@@ -58,6 +58,7 @@ export type DynamoDBTableProperties = {
|
|
|
58
58
|
* Local secondary indexes to be created on the table. You can create up to 5 local secondary indexes. Each index is scoped to a given hash key value. The size of each hash key can be up to 10 gigabytes.
|
|
59
59
|
*/
|
|
60
60
|
LocalSecondaryIndexes?: LocalSecondaryIndex[];
|
|
61
|
+
OnDemandThroughput?: OnDemandThroughput;
|
|
61
62
|
/**
|
|
62
63
|
* The settings used to enable point in time recovery.
|
|
63
64
|
*/
|
|
@@ -175,6 +176,7 @@ export type GlobalSecondaryIndex = {
|
|
|
175
176
|
The sort key of an item is also known as its *range attribute*. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
|
|
176
177
|
*/
|
|
177
178
|
KeySchema: KeySchema[];
|
|
179
|
+
OnDemandThroughput?: OnDemandThroughput;
|
|
178
180
|
/**
|
|
179
181
|
* Represents attributes that are copied (projected) from the table into the global secondary index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.
|
|
180
182
|
*/
|
|
@@ -281,6 +283,20 @@ export type LocalSecondaryIndex = {
|
|
|
281
283
|
*/
|
|
282
284
|
Projection: Projection;
|
|
283
285
|
};
|
|
286
|
+
/**
|
|
287
|
+
* Type definition for `AWS::DynamoDB::Table.OnDemandThroughput`.
|
|
288
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ondemandthroughput.html}
|
|
289
|
+
*/
|
|
290
|
+
export type OnDemandThroughput = {
|
|
291
|
+
/**
|
|
292
|
+
* @min `1`
|
|
293
|
+
*/
|
|
294
|
+
MaxReadRequestUnits?: number;
|
|
295
|
+
/**
|
|
296
|
+
* @min `1`
|
|
297
|
+
*/
|
|
298
|
+
MaxWriteRequestUnits?: number;
|
|
299
|
+
};
|
|
284
300
|
/**
|
|
285
301
|
* Type definition for `AWS::DynamoDB::Table.PointInTimeRecoverySpecification`.
|
|
286
302
|
* The settings used to enable point in time recovery.
|
|
@@ -0,0 +1,119 @@
|
|
|
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::Application Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-application.html}
|
|
6
|
+
*/
|
|
7
|
+
export type QBusinessApplicationProperties = {
|
|
8
|
+
AttachmentsConfiguration?: AttachmentsConfiguration;
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `0`
|
|
11
|
+
* @maxLength `1000`
|
|
12
|
+
* @pattern `^[\s\S]*$`
|
|
13
|
+
*/
|
|
14
|
+
Description?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @minLength `1`
|
|
17
|
+
* @maxLength `1000`
|
|
18
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9_-]*$`
|
|
19
|
+
*/
|
|
20
|
+
DisplayName: string;
|
|
21
|
+
EncryptionConfiguration?: EncryptionConfiguration;
|
|
22
|
+
/**
|
|
23
|
+
* @minLength `10`
|
|
24
|
+
* @maxLength `1224`
|
|
25
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$`
|
|
26
|
+
*/
|
|
27
|
+
IdentityCenterInstanceArn?: string;
|
|
28
|
+
/**
|
|
29
|
+
* @minLength `0`
|
|
30
|
+
* @maxLength `1284`
|
|
31
|
+
* @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
|
|
32
|
+
*/
|
|
33
|
+
RoleArn?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @minLength `0`
|
|
36
|
+
* @maxLength `200`
|
|
37
|
+
*/
|
|
38
|
+
Tags?: Tag[];
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Attribute type definition for `AWS::QBusiness::Application`.
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-application.html#aws-resource-qbusiness-application-return-values}
|
|
43
|
+
*/
|
|
44
|
+
export type QBusinessApplicationAttributes = {
|
|
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
|
+
ApplicationArn: string;
|
|
51
|
+
/**
|
|
52
|
+
* @minLength `36`
|
|
53
|
+
* @maxLength `36`
|
|
54
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
55
|
+
*/
|
|
56
|
+
ApplicationId: string;
|
|
57
|
+
CreatedAt: string;
|
|
58
|
+
/**
|
|
59
|
+
* @minLength `10`
|
|
60
|
+
* @maxLength `1224`
|
|
61
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso::\d{12}:application/(sso)?ins-[a-zA-Z0-9-.]{16}/apl-[a-zA-Z0-9]{16}$`
|
|
62
|
+
*/
|
|
63
|
+
IdentityCenterApplicationArn: string;
|
|
64
|
+
Status: ApplicationStatus;
|
|
65
|
+
UpdatedAt: string;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Type definition for `AWS::QBusiness::Application.ApplicationStatus`.
|
|
69
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-applicationstatus.html}
|
|
70
|
+
*/
|
|
71
|
+
export type ApplicationStatus = "CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING";
|
|
72
|
+
/**
|
|
73
|
+
* Type definition for `AWS::QBusiness::Application.AttachmentsConfiguration`.
|
|
74
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-attachmentsconfiguration.html}
|
|
75
|
+
*/
|
|
76
|
+
export type AttachmentsConfiguration = {
|
|
77
|
+
AttachmentsControlMode: AttachmentsControlMode;
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* Type definition for `AWS::QBusiness::Application.AttachmentsControlMode`.
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-attachmentscontrolmode.html}
|
|
82
|
+
*/
|
|
83
|
+
export type AttachmentsControlMode = "ENABLED" | "DISABLED";
|
|
84
|
+
/**
|
|
85
|
+
* Type definition for `AWS::QBusiness::Application.EncryptionConfiguration`.
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-encryptionconfiguration.html}
|
|
87
|
+
*/
|
|
88
|
+
export type EncryptionConfiguration = {
|
|
89
|
+
/**
|
|
90
|
+
* @minLength `1`
|
|
91
|
+
* @maxLength `2048`
|
|
92
|
+
*/
|
|
93
|
+
KmsKeyId?: string;
|
|
94
|
+
};
|
|
95
|
+
/**
|
|
96
|
+
* Type definition for `AWS::QBusiness::Application.Tag`.
|
|
97
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-tag.html}
|
|
98
|
+
*/
|
|
99
|
+
export type Tag = {
|
|
100
|
+
/**
|
|
101
|
+
* @minLength `1`
|
|
102
|
+
* @maxLength `128`
|
|
103
|
+
*/
|
|
104
|
+
Key: string;
|
|
105
|
+
/**
|
|
106
|
+
* @minLength `0`
|
|
107
|
+
* @maxLength `256`
|
|
108
|
+
*/
|
|
109
|
+
Value: string;
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* Definition of AWS::QBusiness::Application Resource Type
|
|
113
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-application.html}
|
|
114
|
+
*/
|
|
115
|
+
export declare class QBusinessApplication extends $Resource<"AWS::QBusiness::Application", QBusinessApplicationProperties, QBusinessApplicationAttributes> {
|
|
116
|
+
static readonly Type = "AWS::QBusiness::Application";
|
|
117
|
+
constructor(logicalId: string, properties: QBusinessApplicationProperties, options?: $ResourceOptions);
|
|
118
|
+
}
|
|
119
|
+
//# sourceMappingURL=AWS-QBusiness-Application.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::Application Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-application.html}
|
|
5
|
+
*/
|
|
6
|
+
export class QBusinessApplication extends $Resource {
|
|
7
|
+
static Type = "AWS::QBusiness::Application";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, QBusinessApplication.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-QBusiness-Application.js.map
|
|
@@ -0,0 +1,225 @@
|
|
|
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::DataSource Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-datasource.html}
|
|
6
|
+
*/
|
|
7
|
+
export type QBusinessDataSourceProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `36`
|
|
10
|
+
* @maxLength `36`
|
|
11
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
12
|
+
*/
|
|
13
|
+
ApplicationId: string;
|
|
14
|
+
Configuration: any;
|
|
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
|
+
DocumentEnrichmentConfiguration?: DocumentEnrichmentConfiguration;
|
|
28
|
+
/**
|
|
29
|
+
* @minLength `36`
|
|
30
|
+
* @maxLength `36`
|
|
31
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
32
|
+
*/
|
|
33
|
+
IndexId: string;
|
|
34
|
+
/**
|
|
35
|
+
* @minLength `0`
|
|
36
|
+
* @maxLength `1284`
|
|
37
|
+
* @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
|
|
38
|
+
*/
|
|
39
|
+
RoleArn?: string;
|
|
40
|
+
/**
|
|
41
|
+
* @maxLength `998`
|
|
42
|
+
* @pattern `^[\s\S]*$`
|
|
43
|
+
*/
|
|
44
|
+
SyncSchedule?: string;
|
|
45
|
+
/**
|
|
46
|
+
* @minLength `0`
|
|
47
|
+
* @maxLength `200`
|
|
48
|
+
*/
|
|
49
|
+
Tags?: Tag[];
|
|
50
|
+
VpcConfiguration?: DataSourceVpcConfiguration;
|
|
51
|
+
};
|
|
52
|
+
/**
|
|
53
|
+
* Attribute type definition for `AWS::QBusiness::DataSource`.
|
|
54
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-datasource.html#aws-resource-qbusiness-datasource-return-values}
|
|
55
|
+
*/
|
|
56
|
+
export type QBusinessDataSourceAttributes = {
|
|
57
|
+
CreatedAt: 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
|
+
DataSourceArn: string;
|
|
64
|
+
/**
|
|
65
|
+
* @minLength `36`
|
|
66
|
+
* @maxLength `36`
|
|
67
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
68
|
+
*/
|
|
69
|
+
DataSourceId: string;
|
|
70
|
+
Status: DataSourceStatus;
|
|
71
|
+
/**
|
|
72
|
+
* @minLength `1`
|
|
73
|
+
* @maxLength `2048`
|
|
74
|
+
*/
|
|
75
|
+
Type: string;
|
|
76
|
+
UpdatedAt: string;
|
|
77
|
+
};
|
|
78
|
+
/**
|
|
79
|
+
* Type definition for `AWS::QBusiness::DataSource.AttributeValueOperator`.
|
|
80
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-attributevalueoperator.html}
|
|
81
|
+
*/
|
|
82
|
+
export type AttributeValueOperator = "DELETE";
|
|
83
|
+
/**
|
|
84
|
+
* Type definition for `AWS::QBusiness::DataSource.DataSourceStatus`.
|
|
85
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-datasourcestatus.html}
|
|
86
|
+
*/
|
|
87
|
+
export type DataSourceStatus = "PENDING_CREATION" | "CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING";
|
|
88
|
+
/**
|
|
89
|
+
* Type definition for `AWS::QBusiness::DataSource.DataSourceVpcConfiguration`.
|
|
90
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-datasourcevpcconfiguration.html}
|
|
91
|
+
*/
|
|
92
|
+
export type DataSourceVpcConfiguration = {
|
|
93
|
+
/**
|
|
94
|
+
* @minLength `1`
|
|
95
|
+
* @maxLength `10`
|
|
96
|
+
*/
|
|
97
|
+
SecurityGroupIds: string[];
|
|
98
|
+
SubnetIds: string[];
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* Type definition for `AWS::QBusiness::DataSource.DocumentAttributeCondition`.
|
|
102
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-documentattributecondition.html}
|
|
103
|
+
*/
|
|
104
|
+
export type DocumentAttributeCondition = {
|
|
105
|
+
/**
|
|
106
|
+
* @minLength `1`
|
|
107
|
+
* @maxLength `200`
|
|
108
|
+
* @pattern `^[a-zA-Z0-9_][a-zA-Z0-9_-]*$`
|
|
109
|
+
*/
|
|
110
|
+
Key: string;
|
|
111
|
+
Operator: DocumentEnrichmentConditionOperator;
|
|
112
|
+
Value?: DocumentAttributeValue;
|
|
113
|
+
};
|
|
114
|
+
/**
|
|
115
|
+
* Type definition for `AWS::QBusiness::DataSource.DocumentAttributeTarget`.
|
|
116
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-documentattributetarget.html}
|
|
117
|
+
*/
|
|
118
|
+
export type DocumentAttributeTarget = {
|
|
119
|
+
AttributeValueOperator?: AttributeValueOperator;
|
|
120
|
+
/**
|
|
121
|
+
* @minLength `1`
|
|
122
|
+
* @maxLength `200`
|
|
123
|
+
* @pattern `^[a-zA-Z0-9_][a-zA-Z0-9_-]*$`
|
|
124
|
+
*/
|
|
125
|
+
Key: string;
|
|
126
|
+
Value?: DocumentAttributeValue;
|
|
127
|
+
};
|
|
128
|
+
/**
|
|
129
|
+
* Type definition for `AWS::QBusiness::DataSource.DocumentAttributeValue`.
|
|
130
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-documentattributevalue.html}
|
|
131
|
+
*/
|
|
132
|
+
export type DocumentAttributeValue = {
|
|
133
|
+
/**
|
|
134
|
+
* @maxLength `2048`
|
|
135
|
+
*/
|
|
136
|
+
StringValue: string;
|
|
137
|
+
} | {
|
|
138
|
+
StringListValue: string[];
|
|
139
|
+
} | {
|
|
140
|
+
LongValue: number;
|
|
141
|
+
} | {
|
|
142
|
+
DateValue: string;
|
|
143
|
+
};
|
|
144
|
+
/**
|
|
145
|
+
* Type definition for `AWS::QBusiness::DataSource.DocumentContentOperator`.
|
|
146
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-documentcontentoperator.html}
|
|
147
|
+
*/
|
|
148
|
+
export type DocumentContentOperator = "DELETE";
|
|
149
|
+
/**
|
|
150
|
+
* Type definition for `AWS::QBusiness::DataSource.DocumentEnrichmentConditionOperator`.
|
|
151
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-documentenrichmentconditionoperator.html}
|
|
152
|
+
*/
|
|
153
|
+
export type DocumentEnrichmentConditionOperator = "GREATER_THAN" | "GREATER_THAN_OR_EQUALS" | "LESS_THAN" | "LESS_THAN_OR_EQUALS" | "EQUALS" | "NOT_EQUALS" | "CONTAINS" | "NOT_CONTAINS" | "EXISTS" | "NOT_EXISTS" | "BEGINS_WITH";
|
|
154
|
+
/**
|
|
155
|
+
* Type definition for `AWS::QBusiness::DataSource.DocumentEnrichmentConfiguration`.
|
|
156
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-documentenrichmentconfiguration.html}
|
|
157
|
+
*/
|
|
158
|
+
export type DocumentEnrichmentConfiguration = {
|
|
159
|
+
/**
|
|
160
|
+
* @minLength `1`
|
|
161
|
+
* @maxLength `100`
|
|
162
|
+
*/
|
|
163
|
+
InlineConfigurations?: InlineDocumentEnrichmentConfiguration[];
|
|
164
|
+
PostExtractionHookConfiguration?: HookConfiguration;
|
|
165
|
+
PreExtractionHookConfiguration?: HookConfiguration;
|
|
166
|
+
};
|
|
167
|
+
/**
|
|
168
|
+
* Type definition for `AWS::QBusiness::DataSource.HookConfiguration`.
|
|
169
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-hookconfiguration.html}
|
|
170
|
+
*/
|
|
171
|
+
export type HookConfiguration = {
|
|
172
|
+
InvocationCondition?: DocumentAttributeCondition;
|
|
173
|
+
/**
|
|
174
|
+
* @minLength `1`
|
|
175
|
+
* @maxLength `2048`
|
|
176
|
+
* @pattern `^arn:aws[a-zA-Z-]*:lambda:[a-z-]*-[0-9]:[0-9]{12}:function:[a-zA-Z0-9-_]+(/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})?(:[a-zA-Z0-9-_]+)?$`
|
|
177
|
+
*/
|
|
178
|
+
LambdaArn?: string;
|
|
179
|
+
/**
|
|
180
|
+
* @minLength `0`
|
|
181
|
+
* @maxLength `1284`
|
|
182
|
+
* @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
|
|
183
|
+
*/
|
|
184
|
+
RoleArn?: string;
|
|
185
|
+
/**
|
|
186
|
+
* @minLength `1`
|
|
187
|
+
* @maxLength `63`
|
|
188
|
+
* @pattern `^[a-z0-9][\.\-a-z0-9]{1,61}[a-z0-9]$`
|
|
189
|
+
*/
|
|
190
|
+
S3BucketName?: string;
|
|
191
|
+
};
|
|
192
|
+
/**
|
|
193
|
+
* Type definition for `AWS::QBusiness::DataSource.InlineDocumentEnrichmentConfiguration`.
|
|
194
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-inlinedocumentenrichmentconfiguration.html}
|
|
195
|
+
*/
|
|
196
|
+
export type InlineDocumentEnrichmentConfiguration = {
|
|
197
|
+
Condition?: DocumentAttributeCondition;
|
|
198
|
+
DocumentContentOperator?: DocumentContentOperator;
|
|
199
|
+
Target?: DocumentAttributeTarget;
|
|
200
|
+
};
|
|
201
|
+
/**
|
|
202
|
+
* Type definition for `AWS::QBusiness::DataSource.Tag`.
|
|
203
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-tag.html}
|
|
204
|
+
*/
|
|
205
|
+
export type Tag = {
|
|
206
|
+
/**
|
|
207
|
+
* @minLength `1`
|
|
208
|
+
* @maxLength `128`
|
|
209
|
+
*/
|
|
210
|
+
Key: string;
|
|
211
|
+
/**
|
|
212
|
+
* @minLength `0`
|
|
213
|
+
* @maxLength `256`
|
|
214
|
+
*/
|
|
215
|
+
Value: string;
|
|
216
|
+
};
|
|
217
|
+
/**
|
|
218
|
+
* Definition of AWS::QBusiness::DataSource Resource Type
|
|
219
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-datasource.html}
|
|
220
|
+
*/
|
|
221
|
+
export declare class QBusinessDataSource extends $Resource<"AWS::QBusiness::DataSource", QBusinessDataSourceProperties, QBusinessDataSourceAttributes> {
|
|
222
|
+
static readonly Type = "AWS::QBusiness::DataSource";
|
|
223
|
+
constructor(logicalId: string, properties: QBusinessDataSourceProperties, options?: $ResourceOptions);
|
|
224
|
+
}
|
|
225
|
+
//# sourceMappingURL=AWS-QBusiness-DataSource.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::DataSource Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-datasource.html}
|
|
5
|
+
*/
|
|
6
|
+
export class QBusinessDataSource extends $Resource {
|
|
7
|
+
static Type = "AWS::QBusiness::DataSource";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, QBusinessDataSource.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-QBusiness-DataSource.js.map
|
|
@@ -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
|
/**
|
|
@@ -10,28 +10,24 @@ export type TransferCertificateProperties = {
|
|
|
10
10
|
*/
|
|
11
11
|
ActiveDate?: string;
|
|
12
12
|
/**
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
-ÿ]*`
|
|
19
|
-
*/
|
|
13
|
+
* Specifies the certificate body to be imported.
|
|
14
|
+
* @minLength `1`
|
|
15
|
+
* @maxLength `16384`
|
|
16
|
+
* @pattern `^[\t\n\r\u0020-\u00FF]+$`
|
|
17
|
+
*/
|
|
20
18
|
Certificate: string;
|
|
21
19
|
/**
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
-ÿ]*`
|
|
28
|
-
*/
|
|
20
|
+
* Specifies the certificate chain to be imported.
|
|
21
|
+
* @minLength `1`
|
|
22
|
+
* @maxLength `2097152`
|
|
23
|
+
* @pattern `^[\t\n\r\u0020-\u00FF]+$`
|
|
24
|
+
*/
|
|
29
25
|
CertificateChain?: string;
|
|
30
26
|
/**
|
|
31
27
|
* A textual description for the certificate.
|
|
32
28
|
* @minLength `1`
|
|
33
29
|
* @maxLength `200`
|
|
34
|
-
* @pattern `^[\
|
|
30
|
+
* @pattern `^[\u0021-\u007E]+$`
|
|
35
31
|
*/
|
|
36
32
|
Description?: string;
|
|
37
33
|
/**
|
|
@@ -39,13 +35,11 @@ export type TransferCertificateProperties = {
|
|
|
39
35
|
*/
|
|
40
36
|
InactiveDate?: string;
|
|
41
37
|
/**
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
-ÿ]*`
|
|
48
|
-
*/
|
|
38
|
+
* Specifies the private key for the certificate.
|
|
39
|
+
* @minLength `1`
|
|
40
|
+
* @maxLength `16384`
|
|
41
|
+
* @pattern `^[\t\n\r\u0020-\u00FF]+$`
|
|
42
|
+
*/
|
|
49
43
|
PrivateKey?: string;
|
|
50
44
|
/**
|
|
51
45
|
* Key-value pairs that can be used to group and search for certificates. Tags are metadata attached to certificates for any purpose.
|
|
@@ -55,7 +49,7 @@ export type TransferCertificateProperties = {
|
|
|
55
49
|
/**
|
|
56
50
|
* Specifies the usage type for the certificate.
|
|
57
51
|
*/
|
|
58
|
-
Usage: "SIGNING" | "ENCRYPTION";
|
|
52
|
+
Usage: "SIGNING" | "ENCRYPTION" | "TLS";
|
|
59
53
|
};
|
|
60
54
|
/**
|
|
61
55
|
* Attribute type definition for `AWS::Transfer::Certificate`.
|
|
@@ -88,7 +82,7 @@ export type TransferCertificateAttributes = {
|
|
|
88
82
|
* Specifies Certificate's serial.
|
|
89
83
|
* @minLength `0`
|
|
90
84
|
* @maxLength `48`
|
|
91
|
-
* @pattern `^[
|
|
85
|
+
* @pattern `^[0-9a-fA-F{}:?]*$`
|
|
92
86
|
*/
|
|
93
87
|
Serial: string;
|
|
94
88
|
/**
|
|
@@ -29,7 +29,7 @@ export type TransferConnectorProperties = {
|
|
|
29
29
|
/**
|
|
30
30
|
* Encryption algorithm for this AS2 connector configuration.
|
|
31
31
|
*/
|
|
32
|
-
EncryptionAlgorithm?: "AES128_CBC" | "AES192_CBC" | "AES256_CBC" | "NONE";
|
|
32
|
+
EncryptionAlgorithm?: "AES128_CBC" | "AES192_CBC" | "AES256_CBC" | "NONE" | "DES_EDE3_CBC";
|
|
33
33
|
/**
|
|
34
34
|
* A unique identifier for the local profile.
|
|
35
35
|
* @minLength `19`
|
|
@@ -49,7 +49,7 @@ export type TransferConnectorProperties = {
|
|
|
49
49
|
* The message subject for this AS2 connector configuration.
|
|
50
50
|
* @minLength `1`
|
|
51
51
|
* @maxLength `1024`
|
|
52
|
-
* @pattern `^[\
|
|
52
|
+
* @pattern `^[\u0020-\u007E\t]+$`
|
|
53
53
|
*/
|
|
54
54
|
MessageSubject?: string;
|
|
55
55
|
/**
|
|
@@ -71,6 +71,12 @@ export type TransferConnectorProperties = {
|
|
|
71
71
|
* @pattern `arn:.*role/.*`
|
|
72
72
|
*/
|
|
73
73
|
LoggingRole?: string;
|
|
74
|
+
/**
|
|
75
|
+
* Security policy for SFTP Connector
|
|
76
|
+
* @maxLength `50`
|
|
77
|
+
* @pattern `TransferSFTPConnectorSecurityPolicy-[A-Za-z0-9-]+`
|
|
78
|
+
*/
|
|
79
|
+
SecurityPolicyName?: string;
|
|
74
80
|
/**
|
|
75
81
|
* Configuration for an SFTP connector.
|
|
76
82
|
*/
|
|
@@ -117,6 +123,10 @@ export type TransferConnectorAttributes = {
|
|
|
117
123
|
* @pattern `^c-([0-9a-f]{17})$`
|
|
118
124
|
*/
|
|
119
125
|
ConnectorId: string;
|
|
126
|
+
/**
|
|
127
|
+
* The list of egress IP addresses of this connector. These IP addresses are assigned automatically when you create the connector.
|
|
128
|
+
*/
|
|
129
|
+
ServiceManagedEgressIpAddresses: string[];
|
|
120
130
|
};
|
|
121
131
|
/**
|
|
122
132
|
* Type definition for `AWS::Transfer::Connector.Tag`.
|
|
@@ -226,7 +226,7 @@ export type WorkflowStep = {
|
|
|
226
226
|
/**
|
|
227
227
|
* Specifies the location for the file being decrypted. Only applicable for the Decrypt type of workflow steps.
|
|
228
228
|
*/
|
|
229
|
-
DestinationFileLocation
|
|
229
|
+
DestinationFileLocation: InputFileLocation;
|
|
230
230
|
/**
|
|
231
231
|
* The name of the step, used as an identifier.
|
|
232
232
|
* @minLength `0`
|
|
@@ -248,7 +248,7 @@ export type WorkflowStep = {
|
|
|
248
248
|
/**
|
|
249
249
|
* Specifies which encryption method to use.
|
|
250
250
|
*/
|
|
251
|
-
Type
|
|
251
|
+
Type: "PGP";
|
|
252
252
|
};
|
|
253
253
|
/**
|
|
254
254
|
* Details for a step that deletes the file.
|