@awboost/cfn-resource-types 0.1.362 → 0.1.364
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-AIOps-InvestigationGroup.d.ts +129 -0
- package/lib/AWS-AIOps-InvestigationGroup.js +12 -0
- package/lib/AWS-Bedrock-Guardrail.d.ts +18 -0
- package/lib/AWS-CloudFront-Distribution.d.ts +2 -0
- package/lib/AWS-ConnectCampaignsV2-Campaign.d.ts +10 -0
- package/lib/AWS-DSQL-Cluster.d.ts +21 -0
- package/lib/AWS-DataZone-ProjectProfile.d.ts +97 -0
- package/lib/AWS-Kendra-DataSource.d.ts +9 -1
- package/lib/AWS-RolesAnywhere-TrustAnchor.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,129 @@
|
|
|
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::AIOps::InvestigationGroup Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html}
|
|
6
|
+
*/
|
|
7
|
+
export type AIOpsInvestigationGroupProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* An array of key-value pairs of notification channels to apply to this resource.
|
|
10
|
+
*/
|
|
11
|
+
ChatbotNotificationChannels?: ChatbotNotificationChannel[];
|
|
12
|
+
EncryptionConfig?: EncryptionConfigMap;
|
|
13
|
+
/**
|
|
14
|
+
* Investigation Group policy
|
|
15
|
+
*/
|
|
16
|
+
InvestigationGroupPolicy?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Flag to enable cloud trail history
|
|
19
|
+
*/
|
|
20
|
+
IsCloudTrailEventHistoryEnabled?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* User friendly name for resources.
|
|
23
|
+
* @minLength `1`
|
|
24
|
+
* @maxLength `512`
|
|
25
|
+
*/
|
|
26
|
+
Name: string;
|
|
27
|
+
/**
|
|
28
|
+
* The number of days to retain the investigation group
|
|
29
|
+
*/
|
|
30
|
+
RetentionInDays?: number;
|
|
31
|
+
/**
|
|
32
|
+
* The Investigation Role's ARN.
|
|
33
|
+
* @minLength `20`
|
|
34
|
+
* @maxLength `2048`
|
|
35
|
+
*/
|
|
36
|
+
RoleArn?: string;
|
|
37
|
+
TagKeyBoundaries?: string[];
|
|
38
|
+
/**
|
|
39
|
+
* An array of key-value pairs to apply to this resource.
|
|
40
|
+
*/
|
|
41
|
+
Tags?: Tag[];
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Attribute type definition for `AWS::AIOps::InvestigationGroup`.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#aws-resource-aiops-investigationgroup-return-values}
|
|
46
|
+
*/
|
|
47
|
+
export type AIOpsInvestigationGroupAttributes = {
|
|
48
|
+
/**
|
|
49
|
+
* The Investigation Group's ARN.
|
|
50
|
+
* @minLength `20`
|
|
51
|
+
* @maxLength `2048`
|
|
52
|
+
*/
|
|
53
|
+
Arn: string;
|
|
54
|
+
/**
|
|
55
|
+
* The timestamp value.
|
|
56
|
+
*/
|
|
57
|
+
CreatedAt: string;
|
|
58
|
+
/**
|
|
59
|
+
* User friendly name for resources.
|
|
60
|
+
* @minLength `1`
|
|
61
|
+
* @maxLength `512`
|
|
62
|
+
*/
|
|
63
|
+
CreatedBy: string;
|
|
64
|
+
/**
|
|
65
|
+
* User friendly name for resources.
|
|
66
|
+
* @minLength `1`
|
|
67
|
+
* @maxLength `512`
|
|
68
|
+
*/
|
|
69
|
+
LastModifiedAt: string;
|
|
70
|
+
/**
|
|
71
|
+
* User friendly name for resources.
|
|
72
|
+
* @minLength `1`
|
|
73
|
+
* @maxLength `512`
|
|
74
|
+
*/
|
|
75
|
+
LastModifiedBy: string;
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* Type definition for `AWS::AIOps::InvestigationGroup.ChatbotNotificationChannel`.
|
|
79
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aiops-investigationgroup-chatbotnotificationchannel.html}
|
|
80
|
+
*/
|
|
81
|
+
export type ChatbotNotificationChannel = {
|
|
82
|
+
ChatConfigurationArns?: string[];
|
|
83
|
+
/**
|
|
84
|
+
* @minLength `20`
|
|
85
|
+
* @maxLength `2048`
|
|
86
|
+
*/
|
|
87
|
+
SNSTopicArn?: string;
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Type definition for `AWS::AIOps::InvestigationGroup.EncryptionConfigMap`.
|
|
91
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aiops-investigationgroup-encryptionconfigmap.html}
|
|
92
|
+
*/
|
|
93
|
+
export type EncryptionConfigMap = {
|
|
94
|
+
/**
|
|
95
|
+
* @minLength `1`
|
|
96
|
+
* @maxLength `128`
|
|
97
|
+
*/
|
|
98
|
+
EncryptionConfigurationType?: string;
|
|
99
|
+
/**
|
|
100
|
+
* @minLength `1`
|
|
101
|
+
* @maxLength `256`
|
|
102
|
+
*/
|
|
103
|
+
KmsKeyId?: string;
|
|
104
|
+
};
|
|
105
|
+
/**
|
|
106
|
+
* Type definition for `AWS::AIOps::InvestigationGroup.Tag`.
|
|
107
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aiops-investigationgroup-tag.html}
|
|
108
|
+
*/
|
|
109
|
+
export type Tag = {
|
|
110
|
+
/**
|
|
111
|
+
* @minLength `1`
|
|
112
|
+
* @maxLength `128`
|
|
113
|
+
*/
|
|
114
|
+
Key: string;
|
|
115
|
+
/**
|
|
116
|
+
* @minLength `1`
|
|
117
|
+
* @maxLength `256`
|
|
118
|
+
*/
|
|
119
|
+
Value: string;
|
|
120
|
+
};
|
|
121
|
+
/**
|
|
122
|
+
* Definition of AWS::AIOps::InvestigationGroup Resource Type
|
|
123
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html}
|
|
124
|
+
*/
|
|
125
|
+
export declare class AIOpsInvestigationGroup extends $Resource<"AWS::AIOps::InvestigationGroup", AIOpsInvestigationGroupProperties, AIOpsInvestigationGroupAttributes> {
|
|
126
|
+
static readonly Type = "AWS::AIOps::InvestigationGroup";
|
|
127
|
+
constructor(logicalId: string, properties: AIOpsInvestigationGroupProperties, options?: $ResourceOptions);
|
|
128
|
+
}
|
|
129
|
+
//# sourceMappingURL=AWS-AIOps-InvestigationGroup.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::AIOps::InvestigationGroup Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html}
|
|
5
|
+
*/
|
|
6
|
+
export class AIOpsInvestigationGroup extends $Resource {
|
|
7
|
+
static Type = "AWS::AIOps::InvestigationGroup";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, AIOpsInvestigationGroup.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-AIOps-InvestigationGroup.js.map
|
|
@@ -25,6 +25,10 @@ export type BedrockGuardrailProperties = {
|
|
|
25
25
|
* Contextual grounding policy config for a guardrail.
|
|
26
26
|
*/
|
|
27
27
|
ContextualGroundingPolicyConfig?: ContextualGroundingPolicyConfig;
|
|
28
|
+
/**
|
|
29
|
+
* The system-defined guardrail profile that you’re using with your guardrail
|
|
30
|
+
*/
|
|
31
|
+
CrossRegionConfig?: GuardrailCrossRegionConfig;
|
|
28
32
|
/**
|
|
29
33
|
* Description of the guardrail or its version
|
|
30
34
|
* @minLength `1`
|
|
@@ -213,6 +217,20 @@ export type ContextualGroundingPolicyConfig = {
|
|
|
213
217
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-filterstrength.html}
|
|
214
218
|
*/
|
|
215
219
|
export type FilterStrength = "NONE" | "LOW" | "MEDIUM" | "HIGH";
|
|
220
|
+
/**
|
|
221
|
+
* Type definition for `AWS::Bedrock::Guardrail.GuardrailCrossRegionConfig`.
|
|
222
|
+
* The system-defined guardrail profile that you’re using with your guardrail
|
|
223
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-guardrailcrossregionconfig.html}
|
|
224
|
+
*/
|
|
225
|
+
export type GuardrailCrossRegionConfig = {
|
|
226
|
+
/**
|
|
227
|
+
* The Amazon Resource Name (ARN) of the guardrail profile
|
|
228
|
+
* @minLength `15`
|
|
229
|
+
* @maxLength `2048`
|
|
230
|
+
* @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:guardrail-profile/[a-z0-9-]+[.]{1}guardrail[.]{1}v[0-9:]+$`
|
|
231
|
+
*/
|
|
232
|
+
GuardrailProfileArn: string;
|
|
233
|
+
};
|
|
216
234
|
/**
|
|
217
235
|
* Type definition for `AWS::Bedrock::Guardrail.GuardrailStatus`.
|
|
218
236
|
* Status of the guardrail
|
|
@@ -747,6 +747,7 @@ export type Origin = {
|
|
|
747
747
|
For more information, see [Using Origin Shield](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/origin-shield.html) in the *Amazon CloudFront Developer Guide*.
|
|
748
748
|
*/
|
|
749
749
|
OriginShield?: OriginShield;
|
|
750
|
+
ResponseCompletionTimeout?: number;
|
|
750
751
|
/**
|
|
751
752
|
* Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the ``CustomOriginConfig`` type instead.
|
|
752
753
|
*/
|
|
@@ -920,6 +921,7 @@ export type S3OriginConfig = {
|
|
|
920
921
|
For more information about the origin access identity, see [Serving Private Content through CloudFront](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html) in the *Amazon CloudFront Developer Guide*.
|
|
921
922
|
*/
|
|
922
923
|
OriginAccessIdentity?: string;
|
|
924
|
+
OriginReadTimeout?: number;
|
|
923
925
|
};
|
|
924
926
|
/**
|
|
925
927
|
* Type definition for `AWS::CloudFront::Distribution.StatusCodes`.
|
|
@@ -144,6 +144,10 @@ export type CommunicationLimitsConfig = {
|
|
|
144
144
|
* Communication limits
|
|
145
145
|
*/
|
|
146
146
|
AllChannelsSubtypes?: CommunicationLimits;
|
|
147
|
+
/**
|
|
148
|
+
* Enumeration of Instance Limits handling in a Campaign
|
|
149
|
+
*/
|
|
150
|
+
InstanceLimitsHandling?: InstanceLimitsHandling;
|
|
147
151
|
};
|
|
148
152
|
/**
|
|
149
153
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationLimitTimeUnit`.
|
|
@@ -268,6 +272,12 @@ export type EventTrigger = {
|
|
|
268
272
|
*/
|
|
269
273
|
CustomerProfilesDomainArn?: string;
|
|
270
274
|
};
|
|
275
|
+
/**
|
|
276
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.InstanceLimitsHandling`.
|
|
277
|
+
* Enumeration of Instance Limits handling in a Campaign
|
|
278
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-instancelimitshandling.html}
|
|
279
|
+
*/
|
|
280
|
+
export type InstanceLimitsHandling = "OPT_IN" | "OPT_OUT";
|
|
271
281
|
/**
|
|
272
282
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.LocalTimeZoneConfig`.
|
|
273
283
|
* Local time zone config
|
|
@@ -9,6 +9,10 @@ export type DSQLClusterProperties = {
|
|
|
9
9
|
* Whether deletion protection is enabled in this cluster.
|
|
10
10
|
*/
|
|
11
11
|
DeletionProtectionEnabled?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* The KMS key that encrypts data on the cluster.
|
|
14
|
+
*/
|
|
15
|
+
KmsEncryptionKey?: string;
|
|
12
16
|
/**
|
|
13
17
|
* The Multi-region properties associated to this cluster.
|
|
14
18
|
*/
|
|
@@ -30,6 +34,23 @@ export type DSQLClusterAttributes = {
|
|
|
30
34
|
* The time of when the cluster was created in ISO-8601 format.
|
|
31
35
|
*/
|
|
32
36
|
CreationTime: string;
|
|
37
|
+
/**
|
|
38
|
+
* The encryption configuration details for the cluster.
|
|
39
|
+
*/
|
|
40
|
+
EncryptionDetails: {
|
|
41
|
+
/**
|
|
42
|
+
* The status of encryption for the cluster.
|
|
43
|
+
*/
|
|
44
|
+
EncryptionStatus: string;
|
|
45
|
+
/**
|
|
46
|
+
* The type of encryption that protects data in the cluster.
|
|
47
|
+
*/
|
|
48
|
+
EncryptionType: string;
|
|
49
|
+
/**
|
|
50
|
+
* The Amazon Resource Name (ARN) of the KMS key that encrypts data in the cluster.
|
|
51
|
+
*/
|
|
52
|
+
KmsKeyArn: string;
|
|
53
|
+
};
|
|
33
54
|
/**
|
|
34
55
|
* The ID of the created cluster.
|
|
35
56
|
*/
|
|
@@ -19,6 +19,7 @@ export type DataZoneProjectProfileProperties = {
|
|
|
19
19
|
* @pattern `^[a-z0-9_\-]+$`
|
|
20
20
|
*/
|
|
21
21
|
DomainUnitIdentifier?: string;
|
|
22
|
+
EnvironmentConfigurations?: EnvironmentConfiguration[];
|
|
22
23
|
/**
|
|
23
24
|
* @minLength `1`
|
|
24
25
|
* @maxLength `64`
|
|
@@ -44,6 +45,22 @@ export type DataZoneProjectProfileAttributes = {
|
|
|
44
45
|
* @pattern `^[a-z0-9_\-]+$`
|
|
45
46
|
*/
|
|
46
47
|
DomainUnitId: string;
|
|
48
|
+
EnvironmentConfigurations: {
|
|
49
|
+
ConfigurationParameters: {
|
|
50
|
+
ResolvedParameters: {
|
|
51
|
+
IsEditable: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* @pattern `^[a-zA-Z_][a-zA-Z0-9_]*$`
|
|
54
|
+
*/
|
|
55
|
+
Name: string;
|
|
56
|
+
Value: string;
|
|
57
|
+
}[];
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
61
|
+
*/
|
|
62
|
+
Id: string;
|
|
63
|
+
}[];
|
|
47
64
|
/**
|
|
48
65
|
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
49
66
|
*/
|
|
@@ -54,6 +71,86 @@ export type DataZoneProjectProfileAttributes = {
|
|
|
54
71
|
Identifier: string;
|
|
55
72
|
LastUpdatedAt: string;
|
|
56
73
|
};
|
|
74
|
+
/**
|
|
75
|
+
* Type definition for `AWS::DataZone::ProjectProfile.AwsAccount`.
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-awsaccount.html}
|
|
77
|
+
*/
|
|
78
|
+
export type AwsAccount = {
|
|
79
|
+
/**
|
|
80
|
+
* @pattern `^\d{12}$`
|
|
81
|
+
*/
|
|
82
|
+
AwsAccountId: string;
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* Type definition for `AWS::DataZone::ProjectProfile.DeploymentMode`.
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-deploymentmode.html}
|
|
87
|
+
*/
|
|
88
|
+
export type DeploymentMode = "ON_CREATE" | "ON_DEMAND";
|
|
89
|
+
/**
|
|
90
|
+
* Type definition for `AWS::DataZone::ProjectProfile.EnvironmentConfiguration`.
|
|
91
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html}
|
|
92
|
+
*/
|
|
93
|
+
export type EnvironmentConfiguration = {
|
|
94
|
+
AwsAccount?: AwsAccount;
|
|
95
|
+
AwsRegion: Region;
|
|
96
|
+
ConfigurationParameters?: EnvironmentConfigurationParametersDetails;
|
|
97
|
+
DeploymentMode?: DeploymentMode;
|
|
98
|
+
/**
|
|
99
|
+
* @min `0`
|
|
100
|
+
* @max `16`
|
|
101
|
+
*/
|
|
102
|
+
DeploymentOrder?: number;
|
|
103
|
+
/**
|
|
104
|
+
* @maxLength `2048`
|
|
105
|
+
*/
|
|
106
|
+
Description?: string;
|
|
107
|
+
/**
|
|
108
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
109
|
+
*/
|
|
110
|
+
EnvironmentBlueprintId: string;
|
|
111
|
+
/**
|
|
112
|
+
* @minLength `1`
|
|
113
|
+
* @maxLength `64`
|
|
114
|
+
* @pattern `^[\w -]+$`
|
|
115
|
+
*/
|
|
116
|
+
Name: string;
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* Type definition for `AWS::DataZone::ProjectProfile.EnvironmentConfigurationParameter`.
|
|
120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html}
|
|
121
|
+
*/
|
|
122
|
+
export type EnvironmentConfigurationParameter = {
|
|
123
|
+
IsEditable?: boolean;
|
|
124
|
+
/**
|
|
125
|
+
* @pattern `^[a-zA-Z_][a-zA-Z0-9_]*$`
|
|
126
|
+
*/
|
|
127
|
+
Name?: string;
|
|
128
|
+
Value?: string;
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* Type definition for `AWS::DataZone::ProjectProfile.EnvironmentConfigurationParametersDetails`.
|
|
132
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html}
|
|
133
|
+
*/
|
|
134
|
+
export type EnvironmentConfigurationParametersDetails = {
|
|
135
|
+
ParameterOverrides?: EnvironmentConfigurationParameter[];
|
|
136
|
+
/**
|
|
137
|
+
* @minLength `1`
|
|
138
|
+
* @maxLength `2048`
|
|
139
|
+
*/
|
|
140
|
+
SsmPath?: string;
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* Type definition for `AWS::DataZone::ProjectProfile.Region`.
|
|
144
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-region.html}
|
|
145
|
+
*/
|
|
146
|
+
export type Region = {
|
|
147
|
+
/**
|
|
148
|
+
* @minLength `4`
|
|
149
|
+
* @maxLength `16`
|
|
150
|
+
* @pattern `^[a-z]{2}-?(iso|gov)?-{1}[a-z]*-{1}[0-9]$`
|
|
151
|
+
*/
|
|
152
|
+
RegionName: string;
|
|
153
|
+
};
|
|
57
154
|
/**
|
|
58
155
|
* Type definition for `AWS::DataZone::ProjectProfile.Status`.
|
|
59
156
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-status.html}
|
|
@@ -396,6 +396,7 @@ export type DataSourceConfiguration = {
|
|
|
396
396
|
* SharePoint configuration
|
|
397
397
|
*/
|
|
398
398
|
SharePointConfiguration?: SharePointConfiguration;
|
|
399
|
+
TemplateConfiguration?: TemplateConfiguration;
|
|
399
400
|
WebCrawlerConfiguration?: WebCrawlerConfiguration;
|
|
400
401
|
WorkDocsConfiguration?: WorkDocsConfiguration;
|
|
401
402
|
};
|
|
@@ -1003,12 +1004,19 @@ export type Tag = {
|
|
|
1003
1004
|
*/
|
|
1004
1005
|
Value: string;
|
|
1005
1006
|
};
|
|
1007
|
+
/**
|
|
1008
|
+
* Type definition for `AWS::Kendra::DataSource.TemplateConfiguration`.
|
|
1009
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-templateconfiguration.html}
|
|
1010
|
+
*/
|
|
1011
|
+
export type TemplateConfiguration = {
|
|
1012
|
+
Template: Record<string, any>;
|
|
1013
|
+
};
|
|
1006
1014
|
/**
|
|
1007
1015
|
* Type definition for `AWS::Kendra::DataSource.Type`.
|
|
1008
1016
|
* Data source type
|
|
1009
1017
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-type.html}
|
|
1010
1018
|
*/
|
|
1011
|
-
export type Type = "S3" | "SHAREPOINT" | "SALESFORCE" | "ONEDRIVE" | "SERVICENOW" | "DATABASE" | "CUSTOM" | "CONFLUENCE" | "GOOGLEDRIVE" | "WEBCRAWLER" | "WORKDOCS";
|
|
1019
|
+
export type Type = "S3" | "SHAREPOINT" | "SALESFORCE" | "ONEDRIVE" | "SERVICENOW" | "DATABASE" | "CUSTOM" | "CONFLUENCE" | "GOOGLEDRIVE" | "WEBCRAWLER" | "WORKDOCS" | "TEMPLATE";
|
|
1012
1020
|
/**
|
|
1013
1021
|
* Type definition for `AWS::Kendra::DataSource.WebCrawlerAuthenticationConfiguration`.
|
|
1014
1022
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-webcrawlerauthenticationconfiguration.html}
|
|
@@ -94,7 +94,7 @@ export type Tag = {
|
|
|
94
94
|
* Type definition for `AWS::RolesAnywhere::TrustAnchor.TrustAnchorType`.
|
|
95
95
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-trustanchortype.html}
|
|
96
96
|
*/
|
|
97
|
-
export type TrustAnchorType = "AWS_ACM_PCA" | "CERTIFICATE_BUNDLE"
|
|
97
|
+
export type TrustAnchorType = "AWS_ACM_PCA" | "CERTIFICATE_BUNDLE";
|
|
98
98
|
/**
|
|
99
99
|
* Definition of AWS::RolesAnywhere::TrustAnchor Resource Type.
|
|
100
100
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.html}
|