@awboost/cfn-resource-types 0.1.209 → 0.1.210

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.
@@ -12,7 +12,7 @@ export type AmazonMQConfigurationProperties = {
12
12
  /**
13
13
  * The base64-encoded XML configuration.
14
14
  */
15
- Data: string;
15
+ Data?: string;
16
16
  /**
17
17
  * The description of the configuration.
18
18
  */
@@ -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
@@ -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: string;
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
@@ -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}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.209",
3
+ "version": "0.1.210",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },