@awboost/cfn-resource-types 0.1.209 → 0.1.211
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-AmazonMQ-Configuration.d.ts +1 -1
- package/lib/AWS-EC2-LaunchTemplate.d.ts +24 -15
- package/lib/AWS-QBusiness-Application.d.ts +14 -1
- package/lib/AWS-QBusiness-DataAccessor.d.ts +150 -0
- package/lib/AWS-QBusiness-DataAccessor.js +12 -0
- package/lib/AWS-QBusiness-DataSource.d.ts +20 -0
- package/lib/AWS-QBusiness-Permission.d.ts +40 -0
- package/lib/AWS-QBusiness-Permission.js +12 -0
- package/lib/AWS-QBusiness-Plugin.d.ts +14 -2
- package/lib/AWS-QBusiness-WebExperience.d.ts +31 -0
- package/lib/AWS-VpcLattice-ResourceConfiguration.d.ts +103 -0
- package/lib/AWS-VpcLattice-ResourceConfiguration.js +13 -0
- package/lib/AWS-VpcLattice-ResourceGateway.d.ts +78 -0
- package/lib/AWS-VpcLattice-ResourceGateway.js +13 -0
- package/lib/AWS-VpcLattice-ServiceNetworkResourceAssociation.d.ts +71 -0
- package/lib/AWS-VpcLattice-ServiceNetworkResourceAssociation.js +13 -0
- package/lib/AWS-Wisdom-AIAgent.d.ts +30 -1
- package/lib/AWS-Wisdom-AIPrompt.d.ts +1 -1
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@ export type EC2LaunchTemplateProperties = {
|
|
|
22
22
|
LaunchTemplateName?: string;
|
|
23
23
|
/**
|
|
24
24
|
* The tags to apply to the launch template on creation. To tag the launch template, the resource type must be ``launch-template``.
|
|
25
|
-
To specify the tags for
|
|
25
|
+
To specify the tags for resources that are created during instance launch, use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications).
|
|
26
26
|
*/
|
|
27
27
|
TagSpecifications?: LaunchTemplateTagSpecification[];
|
|
28
28
|
/**
|
|
@@ -86,9 +86,14 @@ export type BaselineEbsBandwidthMbps = {
|
|
|
86
86
|
};
|
|
87
87
|
/**
|
|
88
88
|
* Type definition for `AWS::EC2::LaunchTemplate.BaselinePerformanceFactors`.
|
|
89
|
+
* The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Amazon EC2 uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application.
|
|
90
|
+
Currently, this parameter only supports CPU performance as a baseline performance factor. For example, specifying ``c6i`` would use the CPU performance of the ``c6i`` family as the baseline reference.
|
|
89
91
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-baselineperformancefactors.html}
|
|
90
92
|
*/
|
|
91
93
|
export type BaselinePerformanceFactors = {
|
|
94
|
+
/**
|
|
95
|
+
* The CPU performance to consider, using an instance family as the baseline reference.
|
|
96
|
+
*/
|
|
92
97
|
Cpu?: Cpu;
|
|
93
98
|
};
|
|
94
99
|
/**
|
|
@@ -124,7 +129,8 @@ export type BlockDeviceMapping = {
|
|
|
124
129
|
export type CapacityReservationSpecification = {
|
|
125
130
|
/**
|
|
126
131
|
* Indicates the instance's Capacity Reservation preferences. Possible preferences include:
|
|
127
|
-
+ ``
|
|
132
|
+
+ ``capacity-reservations-only`` - The instance will only run in a Capacity Reservation or Capacity Reservation group. If capacity isn't available, the instance will fail to launch.
|
|
133
|
+
+ ``open`` - The instance can run in any ``open`` Capacity Reservation that has matching attributes (instance type, platform, Availability Zone, tenancy).
|
|
128
134
|
+ ``none`` - The instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.
|
|
129
135
|
*/
|
|
130
136
|
CapacityReservationPreference?: string;
|
|
@@ -238,7 +244,7 @@ export type Ebs = {
|
|
|
238
244
|
*/
|
|
239
245
|
Iops?: number;
|
|
240
246
|
/**
|
|
241
|
-
*
|
|
247
|
+
* Identifier (key ID, key alias, key ARN, or alias ARN) of the customer managed KMS key to use for EBS encryption.
|
|
242
248
|
*/
|
|
243
249
|
KmsKeyId?: string;
|
|
244
250
|
/**
|
|
@@ -372,7 +378,7 @@ export type InstanceMarketOptions = {
|
|
|
372
378
|
|
|
373
379
|
If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
|
374
380
|
Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the [launch instance wizard](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-instance-wizard.html), or with the [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) API or [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) AWS CloudFormation resource, you can't specify ``InstanceRequirements``.
|
|
375
|
-
For more information, see [
|
|
381
|
+
For more information, see [Specify attributes for instance type selection for EC2 Fleet or Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html) and [Spot placement score](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html) in the *Amazon EC2 User Guide*.
|
|
376
382
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-instancerequirements.html}
|
|
377
383
|
*/
|
|
378
384
|
export type InstanceRequirements = {
|
|
@@ -420,7 +426,6 @@ export type InstanceRequirements = {
|
|
|
420
426
|
* The accelerator types that must be on the instance type.
|
|
421
427
|
+ For instance types with GPU accelerators, specify ``gpu``.
|
|
422
428
|
+ For instance types with FPGA accelerators, specify ``fpga``.
|
|
423
|
-
+ For instance types with inference accelerators, specify ``inference``.
|
|
424
429
|
|
|
425
430
|
Default: Any accelerator type
|
|
426
431
|
*/
|
|
@@ -447,6 +452,9 @@ export type InstanceRequirements = {
|
|
|
447
452
|
Default: No minimum or maximum limits
|
|
448
453
|
*/
|
|
449
454
|
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbps;
|
|
455
|
+
/**
|
|
456
|
+
* The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Amazon EC2 uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application. Currently, this parameter only supports CPU performance as a baseline performance factor. For more information, see [Performance protection](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html#ec2fleet-abis-performance-protection) in the *Amazon EC2 User Guide*.
|
|
457
|
+
*/
|
|
450
458
|
BaselinePerformanceFactors?: BaselinePerformanceFactors;
|
|
451
459
|
/**
|
|
452
460
|
* Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see [Burstable performance instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances.html).
|
|
@@ -462,6 +470,7 @@ export type InstanceRequirements = {
|
|
|
462
470
|
+ For instance types with Intel CPUs, specify ``intel``.
|
|
463
471
|
+ For instance types with AMD CPUs, specify ``amd``.
|
|
464
472
|
+ For instance types with AWS CPUs, specify ``amazon-web-services``.
|
|
473
|
+
+ For instance types with Apple CPUs, specify ``apple``.
|
|
465
474
|
|
|
466
475
|
Don't confuse the CPU manufacturer with the CPU architecture. Instances will be launched with a compatible CPU architecture based on the Amazon Machine Image (AMI) that you specify in your launch template.
|
|
467
476
|
Default: Any manufacturer
|
|
@@ -636,7 +645,8 @@ export type LaunchTemplateData = {
|
|
|
636
645
|
*/
|
|
637
646
|
ElasticGpuSpecifications?: ElasticGpuSpecification[];
|
|
638
647
|
/**
|
|
639
|
-
*
|
|
648
|
+
* Amazon Elastic Inference is no longer available.
|
|
649
|
+
An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.
|
|
640
650
|
You cannot specify accelerators from different generations in the same request.
|
|
641
651
|
Starting April 15, 2023, AWS will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.
|
|
642
652
|
*/
|
|
@@ -684,7 +694,7 @@ export type LaunchTemplateData = {
|
|
|
684
694
|
|
|
685
695
|
If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
|
686
696
|
Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the [launch instance wizard](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-instance-wizard.html), or with the [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) API or [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) AWS CloudFormation resource, you can't specify ``InstanceRequirements``.
|
|
687
|
-
For more information, see [
|
|
697
|
+
For more information, see [Specify attributes for instance type selection for EC2 Fleet or Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html) and [Spot placement score](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html) in the *Amazon EC2 User Guide*.
|
|
688
698
|
*/
|
|
689
699
|
InstanceRequirements?: InstanceRequirements;
|
|
690
700
|
/**
|
|
@@ -722,6 +732,7 @@ export type LaunchTemplateData = {
|
|
|
722
732
|
* The network interfaces for the instance.
|
|
723
733
|
*/
|
|
724
734
|
NetworkInterfaces?: NetworkInterface[];
|
|
735
|
+
NetworkPerformanceOptions?: unknown;
|
|
725
736
|
/**
|
|
726
737
|
* The placement for the instance.
|
|
727
738
|
*/
|
|
@@ -746,8 +757,7 @@ export type LaunchTemplateData = {
|
|
|
746
757
|
*/
|
|
747
758
|
SecurityGroups?: string[];
|
|
748
759
|
/**
|
|
749
|
-
* The tags to apply to
|
|
750
|
-
To tag a resource after it has been created, see [CreateTags](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html).
|
|
760
|
+
* The tags to apply to resources that are created during instance launch.
|
|
751
761
|
To tag the launch template itself, use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-tagspecifications).
|
|
752
762
|
*/
|
|
753
763
|
TagSpecifications?: TagSpecification[];
|
|
@@ -777,6 +787,7 @@ export type LaunchTemplateElasticInferenceAccelerator = {
|
|
|
777
787
|
/**
|
|
778
788
|
* Type definition for `AWS::EC2::LaunchTemplate.LaunchTemplateTagSpecification`.
|
|
779
789
|
* Specifies the tags to apply to the launch template during creation.
|
|
790
|
+
To specify the tags for the resources that are created during instance launch, use [AWS::EC2::LaunchTemplate TagSpecification](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tagspecification.html).
|
|
780
791
|
``LaunchTemplateTagSpecification`` is a property of [AWS::EC2::LaunchTemplate](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html).
|
|
781
792
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatetagspecification.html}
|
|
782
793
|
*/
|
|
@@ -950,9 +961,10 @@ export type NetworkInterface = {
|
|
|
950
961
|
*/
|
|
951
962
|
Groups?: string[];
|
|
952
963
|
/**
|
|
953
|
-
* The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa``. For more information, see [Elastic Fabric Adapter](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html) in the *Amazon EC2 User Guide*.
|
|
964
|
+
* The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa`` or ``efa``. For more information, see [Elastic Fabric Adapter](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html) in the *Amazon EC2 User Guide*.
|
|
954
965
|
If you are not creating an EFA, specify ``interface`` or omit this parameter.
|
|
955
|
-
|
|
966
|
+
If you specify ``efa-only``, do not assign any IP addresses to the network interface. EFA-only network interfaces do not support IP addresses.
|
|
967
|
+
Valid values: ``interface`` | ``efa`` | ``efa-only``
|
|
956
968
|
*/
|
|
957
969
|
InterfaceType?: string;
|
|
958
970
|
/**
|
|
@@ -1107,9 +1119,6 @@ export type PrivateIpAdd = {
|
|
|
1107
1119
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-reference.html}
|
|
1108
1120
|
*/
|
|
1109
1121
|
export type Reference = {
|
|
1110
|
-
/**
|
|
1111
|
-
* The instance family to refer. Ensure that you specify the correct family name. For example, C6i and C6g are valid values, but C6 is not.
|
|
1112
|
-
*/
|
|
1113
1122
|
InstanceFamily?: string;
|
|
1114
1123
|
};
|
|
1115
1124
|
/**
|
|
@@ -1163,7 +1172,7 @@ export type Tag = {
|
|
|
1163
1172
|
};
|
|
1164
1173
|
/**
|
|
1165
1174
|
* Type definition for `AWS::EC2::LaunchTemplate.TagSpecification`.
|
|
1166
|
-
* Specifies the tags to apply to
|
|
1175
|
+
* Specifies the tags to apply to resources that are created during instance launch.
|
|
1167
1176
|
``TagSpecification`` is a property type of [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications). [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications) is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
|
|
1168
1177
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tagspecification.html}
|
|
1169
1178
|
*/
|
|
@@ -36,6 +36,7 @@ export type QBusinessApplicationProperties = {
|
|
|
36
36
|
IdentityType?: IdentityType;
|
|
37
37
|
PersonalizationConfiguration?: PersonalizationConfiguration;
|
|
38
38
|
QAppsConfiguration?: QAppsConfiguration;
|
|
39
|
+
QuickSightConfiguration?: QuickSightConfiguration;
|
|
39
40
|
/**
|
|
40
41
|
* @minLength `0`
|
|
41
42
|
* @maxLength `1284`
|
|
@@ -120,7 +121,7 @@ export type EncryptionConfiguration = {
|
|
|
120
121
|
* Type definition for `AWS::QBusiness::Application.IdentityType`.
|
|
121
122
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-identitytype.html}
|
|
122
123
|
*/
|
|
123
|
-
export type IdentityType = "AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC";
|
|
124
|
+
export type IdentityType = "AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP";
|
|
124
125
|
/**
|
|
125
126
|
* Type definition for `AWS::QBusiness::Application.PersonalizationConfiguration`.
|
|
126
127
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-personalizationconfiguration.html}
|
|
@@ -145,6 +146,18 @@ export type QAppsConfiguration = {
|
|
|
145
146
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-qappscontrolmode.html}
|
|
146
147
|
*/
|
|
147
148
|
export type QAppsControlMode = "ENABLED" | "DISABLED";
|
|
149
|
+
/**
|
|
150
|
+
* Type definition for `AWS::QBusiness::Application.QuickSightConfiguration`.
|
|
151
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-quicksightconfiguration.html}
|
|
152
|
+
*/
|
|
153
|
+
export type QuickSightConfiguration = {
|
|
154
|
+
/**
|
|
155
|
+
* @minLength `1`
|
|
156
|
+
* @maxLength `64`
|
|
157
|
+
* @pattern `^[a-zA-Z0-9._-]*$`
|
|
158
|
+
*/
|
|
159
|
+
ClientNamespace: string;
|
|
160
|
+
};
|
|
148
161
|
/**
|
|
149
162
|
* Type definition for `AWS::QBusiness::Application.SubscriptionType`.
|
|
150
163
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-subscriptiontype.html}
|
|
@@ -0,0 +1,150 @@
|
|
|
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::DataAccessor Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html}
|
|
6
|
+
*/
|
|
7
|
+
export type QBusinessDataAccessorProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `1`
|
|
10
|
+
* @maxLength `10`
|
|
11
|
+
*/
|
|
12
|
+
ActionConfigurations: ActionConfiguration[];
|
|
13
|
+
/**
|
|
14
|
+
* @minLength `36`
|
|
15
|
+
* @maxLength `36`
|
|
16
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
17
|
+
*/
|
|
18
|
+
ApplicationId?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @minLength `1`
|
|
21
|
+
* @maxLength `1000`
|
|
22
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9_-]*$`
|
|
23
|
+
*/
|
|
24
|
+
DisplayName: string;
|
|
25
|
+
/**
|
|
26
|
+
* @minLength `1`
|
|
27
|
+
* @maxLength `1284`
|
|
28
|
+
* @pattern `^arn:aws:iam::[0-9]{12}:role/.+`
|
|
29
|
+
*/
|
|
30
|
+
Principal: string;
|
|
31
|
+
/**
|
|
32
|
+
* @minLength `0`
|
|
33
|
+
* @maxLength `200`
|
|
34
|
+
*/
|
|
35
|
+
Tags?: Tag[];
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Attribute type definition for `AWS::QBusiness::DataAccessor`.
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#aws-resource-qbusiness-dataaccessor-return-values}
|
|
40
|
+
*/
|
|
41
|
+
export type QBusinessDataAccessorAttributes = {
|
|
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
|
+
DataAccessorArn: string;
|
|
49
|
+
/**
|
|
50
|
+
* @minLength `36`
|
|
51
|
+
* @maxLength `36`
|
|
52
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
53
|
+
*/
|
|
54
|
+
DataAccessorId: string;
|
|
55
|
+
/**
|
|
56
|
+
* @minLength `10`
|
|
57
|
+
* @maxLength `1224`
|
|
58
|
+
* @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}$`
|
|
59
|
+
*/
|
|
60
|
+
IdcApplicationArn: string;
|
|
61
|
+
UpdatedAt: string;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* Type definition for `AWS::QBusiness::DataAccessor.ActionConfiguration`.
|
|
65
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-actionconfiguration.html}
|
|
66
|
+
*/
|
|
67
|
+
export type ActionConfiguration = {
|
|
68
|
+
/**
|
|
69
|
+
* @pattern `^qbusiness:[a-zA-Z]+$`
|
|
70
|
+
*/
|
|
71
|
+
Action: string;
|
|
72
|
+
FilterConfiguration?: ActionFilterConfiguration;
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* Type definition for `AWS::QBusiness::DataAccessor.ActionFilterConfiguration`.
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-actionfilterconfiguration.html}
|
|
77
|
+
*/
|
|
78
|
+
export type ActionFilterConfiguration = {
|
|
79
|
+
DocumentAttributeFilter: AttributeFilter;
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* Type definition for `AWS::QBusiness::DataAccessor.AttributeFilter`.
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-attributefilter.html}
|
|
84
|
+
*/
|
|
85
|
+
export type AttributeFilter = {
|
|
86
|
+
AndAllFilters?: AttributeFilter[];
|
|
87
|
+
ContainsAll?: DocumentAttribute;
|
|
88
|
+
ContainsAny?: DocumentAttribute;
|
|
89
|
+
EqualsTo?: DocumentAttribute;
|
|
90
|
+
GreaterThan?: DocumentAttribute;
|
|
91
|
+
GreaterThanOrEquals?: DocumentAttribute;
|
|
92
|
+
LessThan?: DocumentAttribute;
|
|
93
|
+
LessThanOrEquals?: DocumentAttribute;
|
|
94
|
+
NotFilter?: AttributeFilter;
|
|
95
|
+
OrAllFilters?: AttributeFilter[];
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* Type definition for `AWS::QBusiness::DataAccessor.DocumentAttribute`.
|
|
99
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-documentattribute.html}
|
|
100
|
+
*/
|
|
101
|
+
export type DocumentAttribute = {
|
|
102
|
+
/**
|
|
103
|
+
* @minLength `1`
|
|
104
|
+
* @maxLength `200`
|
|
105
|
+
* @pattern `^[a-zA-Z0-9_][a-zA-Z0-9_-]*$`
|
|
106
|
+
*/
|
|
107
|
+
Name: string;
|
|
108
|
+
Value: DocumentAttributeValue;
|
|
109
|
+
};
|
|
110
|
+
/**
|
|
111
|
+
* Type definition for `AWS::QBusiness::DataAccessor.DocumentAttributeValue`.
|
|
112
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-documentattributevalue.html}
|
|
113
|
+
*/
|
|
114
|
+
export type DocumentAttributeValue = {
|
|
115
|
+
/**
|
|
116
|
+
* @maxLength `2048`
|
|
117
|
+
*/
|
|
118
|
+
StringValue: string;
|
|
119
|
+
} | {
|
|
120
|
+
StringListValue: string[];
|
|
121
|
+
} | {
|
|
122
|
+
LongValue: number;
|
|
123
|
+
} | {
|
|
124
|
+
DateValue: string;
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* Type definition for `AWS::QBusiness::DataAccessor.Tag`.
|
|
128
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-dataaccessor-tag.html}
|
|
129
|
+
*/
|
|
130
|
+
export type Tag = {
|
|
131
|
+
/**
|
|
132
|
+
* @minLength `1`
|
|
133
|
+
* @maxLength `128`
|
|
134
|
+
*/
|
|
135
|
+
Key: string;
|
|
136
|
+
/**
|
|
137
|
+
* @minLength `0`
|
|
138
|
+
* @maxLength `256`
|
|
139
|
+
*/
|
|
140
|
+
Value: string;
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* Definition of AWS::QBusiness::DataAccessor Resource Type
|
|
144
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html}
|
|
145
|
+
*/
|
|
146
|
+
export declare class QBusinessDataAccessor extends $Resource<"AWS::QBusiness::DataAccessor", QBusinessDataAccessorProperties, QBusinessDataAccessorAttributes> {
|
|
147
|
+
static readonly Type = "AWS::QBusiness::DataAccessor";
|
|
148
|
+
constructor(logicalId: string, properties: QBusinessDataAccessorProperties, options?: $ResourceOptions);
|
|
149
|
+
}
|
|
150
|
+
//# sourceMappingURL=AWS-QBusiness-DataAccessor.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::DataAccessor Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html}
|
|
5
|
+
*/
|
|
6
|
+
export class QBusinessDataAccessor extends $Resource {
|
|
7
|
+
static Type = "AWS::QBusiness::DataAccessor";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, QBusinessDataAccessor.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-QBusiness-DataAccessor.js.map
|
|
@@ -31,6 +31,7 @@ export type QBusinessDataSourceProperties = {
|
|
|
31
31
|
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
32
32
|
*/
|
|
33
33
|
IndexId: string;
|
|
34
|
+
MediaExtractionConfiguration?: MediaExtractionConfiguration;
|
|
34
35
|
/**
|
|
35
36
|
* @minLength `0`
|
|
36
37
|
* @maxLength `1284`
|
|
@@ -189,6 +190,18 @@ export type HookConfiguration = {
|
|
|
189
190
|
*/
|
|
190
191
|
S3BucketName?: string;
|
|
191
192
|
};
|
|
193
|
+
/**
|
|
194
|
+
* Type definition for `AWS::QBusiness::DataSource.ImageExtractionConfiguration`.
|
|
195
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-imageextractionconfiguration.html}
|
|
196
|
+
*/
|
|
197
|
+
export type ImageExtractionConfiguration = {
|
|
198
|
+
ImageExtractionStatus: ImageExtractionStatus;
|
|
199
|
+
};
|
|
200
|
+
/**
|
|
201
|
+
* Type definition for `AWS::QBusiness::DataSource.ImageExtractionStatus`.
|
|
202
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-imageextractionstatus.html}
|
|
203
|
+
*/
|
|
204
|
+
export type ImageExtractionStatus = "ENABLED" | "DISABLED";
|
|
192
205
|
/**
|
|
193
206
|
* Type definition for `AWS::QBusiness::DataSource.InlineDocumentEnrichmentConfiguration`.
|
|
194
207
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-inlinedocumentenrichmentconfiguration.html}
|
|
@@ -198,6 +211,13 @@ export type InlineDocumentEnrichmentConfiguration = {
|
|
|
198
211
|
DocumentContentOperator?: DocumentContentOperator;
|
|
199
212
|
Target?: DocumentAttributeTarget;
|
|
200
213
|
};
|
|
214
|
+
/**
|
|
215
|
+
* Type definition for `AWS::QBusiness::DataSource.MediaExtractionConfiguration`.
|
|
216
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-mediaextractionconfiguration.html}
|
|
217
|
+
*/
|
|
218
|
+
export type MediaExtractionConfiguration = {
|
|
219
|
+
ImageExtractionConfiguration?: ImageExtractionConfiguration;
|
|
220
|
+
};
|
|
201
221
|
/**
|
|
202
222
|
* Type definition for `AWS::QBusiness::DataSource.Tag`.
|
|
203
223
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-tag.html}
|
|
@@ -0,0 +1,40 @@
|
|
|
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::Permission Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-permission.html}
|
|
6
|
+
*/
|
|
7
|
+
export type QBusinessPermissionProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `1`
|
|
10
|
+
* @maxLength `10`
|
|
11
|
+
*/
|
|
12
|
+
Actions: string[];
|
|
13
|
+
/**
|
|
14
|
+
* @minLength `36`
|
|
15
|
+
* @maxLength `36`
|
|
16
|
+
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
17
|
+
*/
|
|
18
|
+
ApplicationId: string;
|
|
19
|
+
/**
|
|
20
|
+
* @minLength `1`
|
|
21
|
+
* @maxLength `1284`
|
|
22
|
+
* @pattern `^arn:aws:iam::[0-9]{12}:role/.+`
|
|
23
|
+
*/
|
|
24
|
+
Principal: string;
|
|
25
|
+
/**
|
|
26
|
+
* @minLength `1`
|
|
27
|
+
* @maxLength `100`
|
|
28
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
|
29
|
+
*/
|
|
30
|
+
StatementId: string;
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* Definition of AWS::QBusiness::Permission Resource Type
|
|
34
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-permission.html}
|
|
35
|
+
*/
|
|
36
|
+
export declare class QBusinessPermission extends $Resource<"AWS::QBusiness::Permission", QBusinessPermissionProperties, Record<string, never>> {
|
|
37
|
+
static readonly Type = "AWS::QBusiness::Permission";
|
|
38
|
+
constructor(logicalId: string, properties: QBusinessPermissionProperties, options?: $ResourceOptions);
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=AWS-QBusiness-Permission.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::Permission Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-permission.html}
|
|
5
|
+
*/
|
|
6
|
+
export class QBusinessPermission extends $Resource {
|
|
7
|
+
static Type = "AWS::QBusiness::Permission";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, QBusinessPermission.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-QBusiness-Permission.js.map
|
|
@@ -10,7 +10,7 @@ export type QBusinessPluginProperties = {
|
|
|
10
10
|
* @maxLength `36`
|
|
11
11
|
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
12
12
|
*/
|
|
13
|
-
ApplicationId
|
|
13
|
+
ApplicationId?: string;
|
|
14
14
|
AuthConfiguration: PluginAuthConfiguration;
|
|
15
15
|
CustomPluginConfiguration?: CustomPluginConfiguration;
|
|
16
16
|
/**
|
|
@@ -109,6 +109,12 @@ export type NoAuthConfiguration = Record<string, any>;
|
|
|
109
109
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-oauth2clientcredentialconfiguration.html}
|
|
110
110
|
*/
|
|
111
111
|
export type OAuth2ClientCredentialConfiguration = {
|
|
112
|
+
/**
|
|
113
|
+
* @minLength `1`
|
|
114
|
+
* @maxLength `2048`
|
|
115
|
+
* @pattern `^(https?|ftp|file)://([^\s]*)$`
|
|
116
|
+
*/
|
|
117
|
+
AuthorizationUrl?: string;
|
|
112
118
|
/**
|
|
113
119
|
* @minLength `0`
|
|
114
120
|
* @maxLength `1284`
|
|
@@ -121,6 +127,12 @@ export type OAuth2ClientCredentialConfiguration = {
|
|
|
121
127
|
* @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
128
|
*/
|
|
123
129
|
SecretArn: string;
|
|
130
|
+
/**
|
|
131
|
+
* @minLength `1`
|
|
132
|
+
* @maxLength `2048`
|
|
133
|
+
* @pattern `^(https?|ftp|file)://([^\s]*)$`
|
|
134
|
+
*/
|
|
135
|
+
TokenUrl?: string;
|
|
124
136
|
};
|
|
125
137
|
/**
|
|
126
138
|
* Type definition for `AWS::QBusiness::Plugin.PluginAuthConfiguration`.
|
|
@@ -147,7 +159,7 @@ export type PluginState = "ENABLED" | "DISABLED";
|
|
|
147
159
|
* Type definition for `AWS::QBusiness::Plugin.PluginType`.
|
|
148
160
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-plugintype.html}
|
|
149
161
|
*/
|
|
150
|
-
export type PluginType = "SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM";
|
|
162
|
+
export type PluginType = "SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM" | "QUICKSIGHT" | "SERVICENOW_NOW_PLATFORM" | "JIRA_CLOUD" | "SALESFORCE_CRM" | "ZENDESK_SUITE" | "ATLASSIAN_CONFLUENCE" | "GOOGLE_CALENDAR" | "MICROSOFT_TEAMS" | "MICROSOFT_EXCHANGE" | "PAGERDUTY_ADVANCE" | "SMARTSHEET" | "ASANA";
|
|
151
163
|
/**
|
|
152
164
|
* Type definition for `AWS::QBusiness::Plugin.S3`.
|
|
153
165
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-plugin-s3.html}
|
|
@@ -11,6 +11,7 @@ export type QBusinessWebExperienceProperties = {
|
|
|
11
11
|
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
|
|
12
12
|
*/
|
|
13
13
|
ApplicationId: string;
|
|
14
|
+
CustomizationConfiguration?: CustomizationConfiguration;
|
|
14
15
|
IdentityProviderConfiguration?: IdentityProviderConfiguration;
|
|
15
16
|
/**
|
|
16
17
|
* @minLength `0`
|
|
@@ -74,6 +75,36 @@ export type QBusinessWebExperienceAttributes = {
|
|
|
74
75
|
*/
|
|
75
76
|
WebExperienceId: string;
|
|
76
77
|
};
|
|
78
|
+
/**
|
|
79
|
+
* Type definition for `AWS::QBusiness::WebExperience.CustomizationConfiguration`.
|
|
80
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-customizationconfiguration.html}
|
|
81
|
+
*/
|
|
82
|
+
export type CustomizationConfiguration = {
|
|
83
|
+
/**
|
|
84
|
+
* @minLength `0`
|
|
85
|
+
* @maxLength `1284`
|
|
86
|
+
* @pattern `^(https?://[a-zA-Z0-9-_.+%/]+\.css)?$`
|
|
87
|
+
*/
|
|
88
|
+
CustomCSSUrl?: string;
|
|
89
|
+
/**
|
|
90
|
+
* @minLength `0`
|
|
91
|
+
* @maxLength `1284`
|
|
92
|
+
* @pattern `^(https?://[a-zA-Z0-9-_.+%/]+\.(svg|ico))?$`
|
|
93
|
+
*/
|
|
94
|
+
FaviconUrl?: string;
|
|
95
|
+
/**
|
|
96
|
+
* @minLength `0`
|
|
97
|
+
* @maxLength `1284`
|
|
98
|
+
* @pattern `^(https?://[a-zA-Z0-9-_.+%/]+\.(ttf|woff|woff2|otf))?$`
|
|
99
|
+
*/
|
|
100
|
+
FontUrl?: string;
|
|
101
|
+
/**
|
|
102
|
+
* @minLength `0`
|
|
103
|
+
* @maxLength `1284`
|
|
104
|
+
* @pattern `^(https?://[a-zA-Z0-9-_.+%/]+\.(svg|png))?$`
|
|
105
|
+
*/
|
|
106
|
+
LogoUrl?: string;
|
|
107
|
+
};
|
|
77
108
|
/**
|
|
78
109
|
* Type definition for `AWS::QBusiness::WebExperience.IdentityProviderConfiguration`.
|
|
79
110
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-identityproviderconfiguration.html}
|
|
@@ -0,0 +1,103 @@
|
|
|
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::VpcLattice::ResourceConfiguration`.
|
|
5
|
+
* VpcLattice ResourceConfiguration CFN resource
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html}
|
|
7
|
+
*/
|
|
8
|
+
export type VpcLatticeResourceConfigurationProperties = {
|
|
9
|
+
AllowAssociationToSharableServiceNetwork?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* @minLength `3`
|
|
12
|
+
* @maxLength `40`
|
|
13
|
+
* @pattern `^(?!rcfg-)(?![-])(?!.*[-]$)(?!.*[-]{2})[a-z0-9-]+$`
|
|
14
|
+
*/
|
|
15
|
+
Name?: string;
|
|
16
|
+
PortRanges?: string[];
|
|
17
|
+
ProtocolType?: "TCP";
|
|
18
|
+
ResourceConfigurationAuthType?: "NONE" | "AWS_IAM";
|
|
19
|
+
ResourceConfigurationDefinition?: {
|
|
20
|
+
/**
|
|
21
|
+
* @minLength `4`
|
|
22
|
+
* @maxLength `39`
|
|
23
|
+
*/
|
|
24
|
+
IpResource: string;
|
|
25
|
+
} | {
|
|
26
|
+
/**
|
|
27
|
+
* @maxLength `1224`
|
|
28
|
+
* @pattern `^arn:[a-z0-9][-.a-z0-9]{0,62}:vpc-lattice:([a-z0-9][-.a-z0-9]{0,62})?:\d{12}?:[^/].{0,1023}$`
|
|
29
|
+
*/
|
|
30
|
+
ArnResource: string;
|
|
31
|
+
} | {
|
|
32
|
+
DnsResource: DnsResource;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* @minLength `22`
|
|
36
|
+
* @maxLength `22`
|
|
37
|
+
* @pattern `^rcfg-[0-9a-z]{17}$`
|
|
38
|
+
*/
|
|
39
|
+
ResourceConfigurationGroupId?: string;
|
|
40
|
+
ResourceConfigurationType?: "GROUP" | "CHILD" | "SINGLE" | "ARN";
|
|
41
|
+
ResourceGatewayId?: string;
|
|
42
|
+
/**
|
|
43
|
+
* @minLength `0`
|
|
44
|
+
* @maxLength `50`
|
|
45
|
+
*/
|
|
46
|
+
Tags?: Tag[];
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Attribute type definition for `AWS::VpcLattice::ResourceConfiguration`.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#aws-resource-vpclattice-resourceconfiguration-return-values}
|
|
51
|
+
*/
|
|
52
|
+
export type VpcLatticeResourceConfigurationAttributes = {
|
|
53
|
+
/**
|
|
54
|
+
* @minLength `20`
|
|
55
|
+
* @maxLength `2048`
|
|
56
|
+
* @pattern `^arn:[a-z0-9f\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:resourceconfiguration/rcfg-[0-9a-z]{17}$`
|
|
57
|
+
*/
|
|
58
|
+
Arn: string;
|
|
59
|
+
/**
|
|
60
|
+
* @minLength `22`
|
|
61
|
+
* @maxLength `22`
|
|
62
|
+
* @pattern `^rcfg-[0-9a-z]{17}$`
|
|
63
|
+
*/
|
|
64
|
+
Id: string;
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Type definition for `AWS::VpcLattice::ResourceConfiguration.DnsResource`.
|
|
68
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-resourceconfiguration-dnsresource.html}
|
|
69
|
+
*/
|
|
70
|
+
export type DnsResource = {
|
|
71
|
+
/**
|
|
72
|
+
* @minLength `3`
|
|
73
|
+
* @maxLength `255`
|
|
74
|
+
*/
|
|
75
|
+
DomainName: string;
|
|
76
|
+
IpAddressType: "IPV4" | "IPV6" | "DUALSTACK";
|
|
77
|
+
};
|
|
78
|
+
/**
|
|
79
|
+
* Type definition for `AWS::VpcLattice::ResourceConfiguration.Tag`.
|
|
80
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-resourceconfiguration-tag.html}
|
|
81
|
+
*/
|
|
82
|
+
export type Tag = {
|
|
83
|
+
/**
|
|
84
|
+
* @minLength `1`
|
|
85
|
+
* @maxLength `128`
|
|
86
|
+
*/
|
|
87
|
+
Key: string;
|
|
88
|
+
/**
|
|
89
|
+
* @minLength `1`
|
|
90
|
+
* @maxLength `256`
|
|
91
|
+
*/
|
|
92
|
+
Value?: string;
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* Resource type definition for `AWS::VpcLattice::ResourceConfiguration`.
|
|
96
|
+
* VpcLattice ResourceConfiguration CFN resource
|
|
97
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html}
|
|
98
|
+
*/
|
|
99
|
+
export declare class VpcLatticeResourceConfiguration extends $Resource<"AWS::VpcLattice::ResourceConfiguration", VpcLatticeResourceConfigurationProperties, VpcLatticeResourceConfigurationAttributes> {
|
|
100
|
+
static readonly Type = "AWS::VpcLattice::ResourceConfiguration";
|
|
101
|
+
constructor(logicalId: string, properties: VpcLatticeResourceConfigurationProperties, options?: $ResourceOptions);
|
|
102
|
+
}
|
|
103
|
+
//# sourceMappingURL=AWS-VpcLattice-ResourceConfiguration.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::VpcLattice::ResourceConfiguration`.
|
|
4
|
+
* VpcLattice ResourceConfiguration CFN resource
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html}
|
|
6
|
+
*/
|
|
7
|
+
export class VpcLatticeResourceConfiguration extends $Resource {
|
|
8
|
+
static Type = "AWS::VpcLattice::ResourceConfiguration";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, VpcLatticeResourceConfiguration.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-VpcLattice-ResourceConfiguration.js.map
|
|
@@ -0,0 +1,78 @@
|
|
|
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::VpcLattice::ResourceGateway`.
|
|
5
|
+
* Creates a resource gateway for a service.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html}
|
|
7
|
+
*/
|
|
8
|
+
export type VpcLatticeResourceGatewayProperties = {
|
|
9
|
+
IpAddressType?: "IPV4" | "IPV6" | "DUALSTACK";
|
|
10
|
+
/**
|
|
11
|
+
* @minLength `3`
|
|
12
|
+
* @maxLength `40`
|
|
13
|
+
* @pattern `^(?!rgw-)(?![-])(?!.*[-]$)(?!.*[-]{2})[a-z0-9-]+$`
|
|
14
|
+
*/
|
|
15
|
+
Name?: string;
|
|
16
|
+
/**
|
|
17
|
+
* The ID of one or more security groups to associate with the endpoint network interface.
|
|
18
|
+
*/
|
|
19
|
+
SecurityGroupIds?: string[];
|
|
20
|
+
/**
|
|
21
|
+
* The ID of one or more subnets in which to create an endpoint network interface.
|
|
22
|
+
*/
|
|
23
|
+
SubnetIds?: string[];
|
|
24
|
+
/**
|
|
25
|
+
* @minLength `0`
|
|
26
|
+
* @maxLength `50`
|
|
27
|
+
*/
|
|
28
|
+
Tags?: Tag[];
|
|
29
|
+
/**
|
|
30
|
+
* @minLength `5`
|
|
31
|
+
* @maxLength `50`
|
|
32
|
+
*/
|
|
33
|
+
VpcIdentifier?: string;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Attribute type definition for `AWS::VpcLattice::ResourceGateway`.
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#aws-resource-vpclattice-resourcegateway-return-values}
|
|
38
|
+
*/
|
|
39
|
+
export type VpcLatticeResourceGatewayAttributes = {
|
|
40
|
+
/**
|
|
41
|
+
* @minLength `20`
|
|
42
|
+
* @maxLength `2048`
|
|
43
|
+
* @pattern `^arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:resourcegateway/rgw-[0-9a-z]{17}$`
|
|
44
|
+
*/
|
|
45
|
+
Arn: string;
|
|
46
|
+
/**
|
|
47
|
+
* @minLength `17`
|
|
48
|
+
* @maxLength `2048`
|
|
49
|
+
* @pattern `^((rgw-[0-9a-z]{17})|(arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:resourcegateway/rgw-[0-9a-z]{17}))$`
|
|
50
|
+
*/
|
|
51
|
+
Id: string;
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* Type definition for `AWS::VpcLattice::ResourceGateway.Tag`.
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-resourcegateway-tag.html}
|
|
56
|
+
*/
|
|
57
|
+
export type Tag = {
|
|
58
|
+
/**
|
|
59
|
+
* @minLength `1`
|
|
60
|
+
* @maxLength `128`
|
|
61
|
+
*/
|
|
62
|
+
Key: string;
|
|
63
|
+
/**
|
|
64
|
+
* @minLength `1`
|
|
65
|
+
* @maxLength `256`
|
|
66
|
+
*/
|
|
67
|
+
Value?: string;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* Resource type definition for `AWS::VpcLattice::ResourceGateway`.
|
|
71
|
+
* Creates a resource gateway for a service.
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html}
|
|
73
|
+
*/
|
|
74
|
+
export declare class VpcLatticeResourceGateway extends $Resource<"AWS::VpcLattice::ResourceGateway", VpcLatticeResourceGatewayProperties, VpcLatticeResourceGatewayAttributes> {
|
|
75
|
+
static readonly Type = "AWS::VpcLattice::ResourceGateway";
|
|
76
|
+
constructor(logicalId: string, properties: VpcLatticeResourceGatewayProperties, options?: $ResourceOptions);
|
|
77
|
+
}
|
|
78
|
+
//# sourceMappingURL=AWS-VpcLattice-ResourceGateway.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::VpcLattice::ResourceGateway`.
|
|
4
|
+
* Creates a resource gateway for a service.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html}
|
|
6
|
+
*/
|
|
7
|
+
export class VpcLatticeResourceGateway extends $Resource {
|
|
8
|
+
static Type = "AWS::VpcLattice::ResourceGateway";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, VpcLatticeResourceGateway.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-VpcLattice-ResourceGateway.js.map
|
|
@@ -0,0 +1,71 @@
|
|
|
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::VpcLattice::ServiceNetworkResourceAssociation`.
|
|
5
|
+
* VpcLattice ServiceNetworkResourceAssociation CFN resource
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html}
|
|
7
|
+
*/
|
|
8
|
+
export type VpcLatticeServiceNetworkResourceAssociationProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `17`
|
|
11
|
+
* @maxLength `2048`
|
|
12
|
+
* @pattern `^rcfg-[0-9a-z]{17}$`
|
|
13
|
+
*/
|
|
14
|
+
ResourceConfigurationId?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @minLength `3`
|
|
17
|
+
* @maxLength `2048`
|
|
18
|
+
* @pattern `^((sn-[0-9a-z]{17})|(arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:servicenetwork/sn-[0-9a-z]{17}))$`
|
|
19
|
+
*/
|
|
20
|
+
ServiceNetworkId?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @minLength `0`
|
|
23
|
+
* @maxLength `50`
|
|
24
|
+
*/
|
|
25
|
+
Tags?: Tag[];
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Attribute type definition for `AWS::VpcLattice::ServiceNetworkResourceAssociation`.
|
|
29
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html#aws-resource-vpclattice-servicenetworkresourceassociation-return-values}
|
|
30
|
+
*/
|
|
31
|
+
export type VpcLatticeServiceNetworkResourceAssociationAttributes = {
|
|
32
|
+
/**
|
|
33
|
+
* @minLength `22`
|
|
34
|
+
* @maxLength `2048`
|
|
35
|
+
* @pattern `^arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:servicenetworkresourceassociation/snra-[0-9a-f]{17}$`
|
|
36
|
+
*/
|
|
37
|
+
Arn: string;
|
|
38
|
+
/**
|
|
39
|
+
* @minLength `22`
|
|
40
|
+
* @maxLength `22`
|
|
41
|
+
* @pattern `^snra-[0-9a-f]{17}$`
|
|
42
|
+
*/
|
|
43
|
+
Id: string;
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* Type definition for `AWS::VpcLattice::ServiceNetworkResourceAssociation.Tag`.
|
|
47
|
+
* A key-value pair to associate with a resource.
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-servicenetworkresourceassociation-tag.html}
|
|
49
|
+
*/
|
|
50
|
+
export type Tag = {
|
|
51
|
+
/**
|
|
52
|
+
* @minLength `1`
|
|
53
|
+
* @maxLength `128`
|
|
54
|
+
*/
|
|
55
|
+
Key: string;
|
|
56
|
+
/**
|
|
57
|
+
* @minLength `1`
|
|
58
|
+
* @maxLength `256`
|
|
59
|
+
*/
|
|
60
|
+
Value: string;
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* Resource type definition for `AWS::VpcLattice::ServiceNetworkResourceAssociation`.
|
|
64
|
+
* VpcLattice ServiceNetworkResourceAssociation CFN resource
|
|
65
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html}
|
|
66
|
+
*/
|
|
67
|
+
export declare class VpcLatticeServiceNetworkResourceAssociation extends $Resource<"AWS::VpcLattice::ServiceNetworkResourceAssociation", VpcLatticeServiceNetworkResourceAssociationProperties, VpcLatticeServiceNetworkResourceAssociationAttributes> {
|
|
68
|
+
static readonly Type = "AWS::VpcLattice::ServiceNetworkResourceAssociation";
|
|
69
|
+
constructor(logicalId: string, properties: VpcLatticeServiceNetworkResourceAssociationProperties, options?: $ResourceOptions);
|
|
70
|
+
}
|
|
71
|
+
//# sourceMappingURL=AWS-VpcLattice-ServiceNetworkResourceAssociation.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::VpcLattice::ServiceNetworkResourceAssociation`.
|
|
4
|
+
* VpcLattice ServiceNetworkResourceAssociation CFN resource
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html}
|
|
6
|
+
*/
|
|
7
|
+
export class VpcLatticeServiceNetworkResourceAssociation extends $Resource {
|
|
8
|
+
static Type = "AWS::VpcLattice::ServiceNetworkResourceAssociation";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, VpcLatticeServiceNetworkResourceAssociation.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-VpcLattice-ServiceNetworkResourceAssociation.js.map
|
|
@@ -56,17 +56,23 @@ export type AIAgentConfiguration = {
|
|
|
56
56
|
ManualSearchAIAgentConfiguration: ManualSearchAIAgentConfiguration;
|
|
57
57
|
} | {
|
|
58
58
|
AnswerRecommendationAIAgentConfiguration: AnswerRecommendationAIAgentConfiguration;
|
|
59
|
+
} | {
|
|
60
|
+
SelfServiceAIAgentConfiguration: SelfServiceAIAgentConfiguration;
|
|
59
61
|
};
|
|
60
62
|
/**
|
|
61
63
|
* Type definition for `AWS::Wisdom::AIAgent.AIAgentType`.
|
|
62
64
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagenttype.html}
|
|
63
65
|
*/
|
|
64
|
-
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION";
|
|
66
|
+
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE";
|
|
65
67
|
/**
|
|
66
68
|
* Type definition for `AWS::Wisdom::AIAgent.AnswerRecommendationAIAgentConfiguration`.
|
|
67
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html}
|
|
68
70
|
*/
|
|
69
71
|
export type AnswerRecommendationAIAgentConfiguration = {
|
|
72
|
+
/**
|
|
73
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
74
|
+
*/
|
|
75
|
+
AnswerGenerationAIGuardrailId?: string;
|
|
70
76
|
/**
|
|
71
77
|
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
72
78
|
*/
|
|
@@ -123,6 +129,10 @@ export type KnowledgeBaseSearchType = "HYBRID" | "SEMANTIC";
|
|
|
123
129
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-manualsearchaiagentconfiguration.html}
|
|
124
130
|
*/
|
|
125
131
|
export type ManualSearchAIAgentConfiguration = {
|
|
132
|
+
/**
|
|
133
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
134
|
+
*/
|
|
135
|
+
AnswerGenerationAIGuardrailId?: string;
|
|
126
136
|
/**
|
|
127
137
|
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
128
138
|
*/
|
|
@@ -138,6 +148,25 @@ export type OrCondition = {
|
|
|
138
148
|
} | {
|
|
139
149
|
TagCondition: TagCondition;
|
|
140
150
|
};
|
|
151
|
+
/**
|
|
152
|
+
* Type definition for `AWS::Wisdom::AIAgent.SelfServiceAIAgentConfiguration`.
|
|
153
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-selfserviceaiagentconfiguration.html}
|
|
154
|
+
*/
|
|
155
|
+
export type SelfServiceAIAgentConfiguration = {
|
|
156
|
+
AssociationConfigurations?: AssociationConfiguration[];
|
|
157
|
+
/**
|
|
158
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
159
|
+
*/
|
|
160
|
+
SelfServiceAIGuardrailId?: string;
|
|
161
|
+
/**
|
|
162
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
163
|
+
*/
|
|
164
|
+
SelfServiceAnswerGenerationAIPromptId?: string;
|
|
165
|
+
/**
|
|
166
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
167
|
+
*/
|
|
168
|
+
SelfServicePreProcessingAIPromptId?: string;
|
|
169
|
+
};
|
|
141
170
|
/**
|
|
142
171
|
* Type definition for `AWS::Wisdom::AIAgent.TagCondition`.
|
|
143
172
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagcondition.html}
|
|
@@ -71,7 +71,7 @@ export type AIPromptTemplateType = "TEXT";
|
|
|
71
71
|
* Type definition for `AWS::Wisdom::AIPrompt.AIPromptType`.
|
|
72
72
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-aiprompttype.html}
|
|
73
73
|
*/
|
|
74
|
-
export type AIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION";
|
|
74
|
+
export type AIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION";
|
|
75
75
|
/**
|
|
76
76
|
* Type definition for `AWS::Wisdom::AIPrompt.Tags`.
|
|
77
77
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-tags.html}
|