@awboost/cfn-resource-types 0.1.96 → 0.1.97
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.
|
@@ -43,6 +43,10 @@ export type BedrockAgentProperties = {
|
|
|
43
43
|
* @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}(([:][a-z0-9-]{1,63}){0,2})?/[a-z0-9]{12})|(:foundation-model/([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})))|(([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2}))|(([0-9a-zA-Z][_-]?)+)$`
|
|
44
44
|
*/
|
|
45
45
|
FoundationModel?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Configuration for a guardrail.
|
|
48
|
+
*/
|
|
49
|
+
GuardrailConfiguration?: GuardrailConfiguration;
|
|
46
50
|
/**
|
|
47
51
|
* Max Session Time.
|
|
48
52
|
* @min `60`
|
|
@@ -287,6 +291,24 @@ export type FunctionSchema = {
|
|
|
287
291
|
*/
|
|
288
292
|
Functions: Function[];
|
|
289
293
|
};
|
|
294
|
+
/**
|
|
295
|
+
* Type definition for `AWS::Bedrock::Agent.GuardrailConfiguration`.
|
|
296
|
+
* Configuration for a guardrail.
|
|
297
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-guardrailconfiguration.html}
|
|
298
|
+
*/
|
|
299
|
+
export type GuardrailConfiguration = {
|
|
300
|
+
/**
|
|
301
|
+
* Identifier for the guardrail, could be the id or the arn
|
|
302
|
+
* @maxLength `2048`
|
|
303
|
+
* @pattern `^(([a-z0-9]+)|(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:guardrail/[a-z0-9]+))$`
|
|
304
|
+
*/
|
|
305
|
+
GuardrailIdentifier?: string;
|
|
306
|
+
/**
|
|
307
|
+
* Version of the guardrail
|
|
308
|
+
* @pattern `^(([0-9]{1,8})|(DRAFT))$`
|
|
309
|
+
*/
|
|
310
|
+
GuardrailVersion?: string;
|
|
311
|
+
};
|
|
290
312
|
/**
|
|
291
313
|
* Type definition for `AWS::Bedrock::Agent.InferenceConfiguration`.
|
|
292
314
|
* Configuration for inference in prompt configuration
|
|
@@ -11,13 +11,13 @@ export type GuardDutyFilterProperties = {
|
|
|
11
11
|
* @minLength `1`
|
|
12
12
|
* @maxLength `300`
|
|
13
13
|
*/
|
|
14
|
-
DetectorId
|
|
14
|
+
DetectorId: string;
|
|
15
15
|
FindingCriteria: FindingCriteria;
|
|
16
16
|
/**
|
|
17
17
|
* @minLength `1`
|
|
18
18
|
* @maxLength `64`
|
|
19
19
|
*/
|
|
20
|
-
Name
|
|
20
|
+
Name: string;
|
|
21
21
|
/**
|
|
22
22
|
* @min `1`
|
|
23
23
|
* @max `100`
|
|
@@ -57,6 +57,19 @@ export type DimensionConfiguration = {
|
|
|
57
57
|
*/
|
|
58
58
|
DimensionValueSource: string;
|
|
59
59
|
};
|
|
60
|
+
/**
|
|
61
|
+
* Type definition for `AWS::SES::ConfigurationSetEventDestination.EventBridgeDestination`.
|
|
62
|
+
* An object that contains Event bus ARN associated with the event bridge destination.
|
|
63
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-eventbridgedestination.html}
|
|
64
|
+
*/
|
|
65
|
+
export type EventBridgeDestination = {
|
|
66
|
+
/**
|
|
67
|
+
* @minLength `36`
|
|
68
|
+
* @maxLength `1024`
|
|
69
|
+
* @pattern `^arn:aws[a-z0-9-]*:events:[a-z0-9-]+:\d{12}:event-bus/[^:]+$`
|
|
70
|
+
*/
|
|
71
|
+
EventBusArn: string;
|
|
72
|
+
};
|
|
60
73
|
/**
|
|
61
74
|
* Type definition for `AWS::SES::ConfigurationSetEventDestination.EventDestination`.
|
|
62
75
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationseteventdestination-eventdestination.html}
|
|
@@ -70,6 +83,10 @@ export type EventDestination = {
|
|
|
70
83
|
* Sets whether Amazon SES publishes events to this destination when you send an email with the associated configuration set. Set to true to enable publishing to this destination; set to false to prevent publishing to this destination. The default value is false.
|
|
71
84
|
*/
|
|
72
85
|
Enabled?: boolean;
|
|
86
|
+
/**
|
|
87
|
+
* An object that contains Event bus ARN associated with the event bridge destination.
|
|
88
|
+
*/
|
|
89
|
+
EventBridgeDestination?: EventBridgeDestination;
|
|
73
90
|
/**
|
|
74
91
|
* An object that contains the delivery stream ARN and the IAM role ARN associated with an Amazon Kinesis Firehose event destination.
|
|
75
92
|
*/
|
|
@@ -8,6 +8,9 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
8
8
|
export type SignerProfilePermissionProperties = {
|
|
9
9
|
Action: string;
|
|
10
10
|
Principal: string;
|
|
11
|
+
/**
|
|
12
|
+
* @pattern `^[0-9a-zA-Z_]{2,64}$`
|
|
13
|
+
*/
|
|
11
14
|
ProfileName: string;
|
|
12
15
|
/**
|
|
13
16
|
* @pattern `^[0-9a-zA-Z]{10}$`
|
|
@@ -30,7 +30,10 @@ export type SignerSigningProfileAttributes = {
|
|
|
30
30
|
*/
|
|
31
31
|
Arn: string;
|
|
32
32
|
/**
|
|
33
|
-
* A name for the signing profile. AWS CloudFormation generates a unique physical ID and uses that ID for the signing profile name.
|
|
33
|
+
* A name for the signing profile. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the signing profile name.
|
|
34
|
+
* @minLength `2`
|
|
35
|
+
* @maxLength `64`
|
|
36
|
+
* @pattern `^[0-9a-zA-Z_]$`
|
|
34
37
|
*/
|
|
35
38
|
ProfileName: string;
|
|
36
39
|
/**
|