@propulsionworks/cloudformation 0.1.15 → 0.1.17
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/out/exports/resources.generated/aws-aiops-investigationgroup.d.ts +53 -13
- package/out/exports/resources.generated/aws-arczonalshift-zonalautoshiftconfiguration.d.ts +2 -0
- package/out/exports/resources.generated/aws-b2bi-partnership.d.ts +8 -0
- package/out/exports/resources.generated/aws-bedrock-datasource.d.ts +1 -1
- package/out/exports/resources.generated/aws-bedrock-guardrail.d.ts +24 -0
- package/out/exports/resources.generated/aws-cassandra-table.d.ts +11 -1
- package/out/exports/resources.generated/aws-certificatemanager-certificate.d.ts +4 -0
- package/out/exports/resources.generated/aws-cloudformation-hookdefaultversion.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudformation-hooktypeconfig.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudformation-macro.d.ts +1 -0
- package/out/exports/resources.generated/aws-cloudformation-stack.d.ts +4 -4
- package/out/exports/resources.generated/aws-cloudformation-stackset.d.ts +39 -39
- package/out/exports/resources.generated/aws-cloudformation-waitcondition.d.ts +3 -2
- package/out/exports/resources.generated/aws-cloudformation-waitconditionhandle.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +42 -8
- package/out/exports/resources.generated/aws-datasync-locationefs.d.ts +1 -1
- package/out/exports/resources.generated/aws-dynamodb-globaltable.d.ts +82 -46
- package/out/exports/resources.generated/aws-dynamodb-table.d.ts +6 -2
- package/out/exports/resources.generated/aws-ec2-customergateway.d.ts +1 -1
- package/out/exports/resources.generated/aws-ec2-trafficmirrorfilterrule.d.ts +1 -1
- package/out/exports/resources.generated/aws-ec2-vpnconnection.d.ts +2 -2
- package/out/exports/resources.generated/aws-ecs-service.d.ts +1 -1
- package/out/exports/resources.generated/aws-ecs-taskdefinition.d.ts +0 -4
- package/out/exports/resources.generated/aws-emrserverless-application.d.ts +1 -1
- package/out/exports/resources.generated/aws-evs-environment.d.ts +1 -1
- package/out/exports/resources.generated/aws-fsx-filesystem.d.ts +25 -7
- package/out/exports/resources.generated/aws-fsx-s3accesspointattachment.d.ts +25 -3
- package/out/exports/resources.generated/aws-gamelift-containerfleet.d.ts +1 -1
- package/out/exports/resources.generated/aws-glue-job.d.ts +1 -1
- package/out/exports/resources.generated/aws-imagebuilder-component.d.ts +1 -56
- package/out/exports/resources.generated/aws-imagebuilder-containerrecipe.d.ts +1 -85
- package/out/exports/resources.generated/aws-imagebuilder-workflow.d.ts +1 -57
- package/out/exports/resources.generated/aws-iot-logging.d.ts +2 -2
- package/out/exports/resources.generated/aws-kinesis-streamconsumer.d.ts +18 -5
- package/out/exports/resources.generated/aws-lex-bot.d.ts +1 -0
- package/out/exports/resources.generated/aws-neptune-dbinstance.d.ts +2 -0
- package/out/exports/resources.generated/aws-odb-cloudautonomousvmcluster.d.ts +299 -0
- package/out/exports/resources.generated/aws-odb-cloudexadatainfrastructure.d.ts +212 -0
- package/out/exports/resources.generated/aws-odb-cloudvmcluster.d.ts +251 -0
- package/out/exports/resources.generated/aws-odb-odbnetwork.d.ts +108 -0
- package/out/exports/resources.generated/aws-omics-workflow.d.ts +2 -2
- package/out/exports/resources.generated/aws-qbusiness-dataaccessor.d.ts +54 -0
- package/out/exports/resources.generated/aws-qbusiness-datasource.d.ts +1 -1
- package/out/exports/resources.generated/aws-qbusiness-permission.d.ts +23 -0
- package/out/exports/resources.generated/aws-quicksight-custompermissions.d.ts +32 -2
- package/out/exports/resources.generated/aws-quicksight-dashboard.d.ts +1 -1
- package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +5 -4
- package/out/exports/resources.generated/aws-redshiftserverless-snapshot.d.ts +109 -0
- package/out/exports/resources.generated/aws-s3tables-table.d.ts +178 -0
- package/out/exports/resources.generated/aws-timestream-influxdbinstance.d.ts +1 -1
- package/out/exports/resources.generated/aws-transfer-server.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,16 +1,44 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Creates an *investigation group* in your account. Creating an investigation group is a one-time setup task for each Region in your account. It is a necessary task to be able to perform investigations.
|
|
4
|
+
*
|
|
5
|
+
* Settings in the investigation group help you centrally manage the common properties of your investigations, such as the following:
|
|
6
|
+
*
|
|
7
|
+
* - Who can access the investigations
|
|
8
|
+
* - Whether investigation data is encrypted with a customer managed AWS Key Management Service key.
|
|
9
|
+
* - How long investigations and their data are retained by default.
|
|
10
|
+
*
|
|
11
|
+
* Currently, you can have one investigation group in each Region in your account. Each investigation in a Region is a part of the investigation group in that Region
|
|
12
|
+
*
|
|
13
|
+
* To create an investigation group and set up Amazon Q Developer operational investigations, you must be signed in to an IAM principal that has the either the `AIOpsConsoleAdminPolicy` or the `AdministratorAccess` IAM policy attached, or to an account that has similar permissions.
|
|
14
|
+
*
|
|
15
|
+
* > You can optionally configure CloudWatch alarms to start investigations and add events to investigations. The examples section on this page demonstrates creating an investigation group and an alarm at the same time.
|
|
16
|
+
* >
|
|
17
|
+
* > For more information about configuring CloudWatch alarms to work with Amazon Q Developer operational investigations, see
|
|
4
18
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html}
|
|
5
19
|
*/
|
|
6
20
|
export type AIOpsInvestigationGroup = ResourceDefinitionWithAttributes<"AWS::AIOps::InvestigationGroup", AIOpsInvestigationGroupProps, AIOpsInvestigationGroupAttribs>;
|
|
7
21
|
/**
|
|
8
|
-
*
|
|
22
|
+
* Creates an *investigation group* in your account. Creating an investigation group is a one-time setup task for each Region in your account. It is a necessary task to be able to perform investigations.
|
|
23
|
+
*
|
|
24
|
+
* Settings in the investigation group help you centrally manage the common properties of your investigations, such as the following:
|
|
25
|
+
*
|
|
26
|
+
* - Who can access the investigations
|
|
27
|
+
* - Whether investigation data is encrypted with a customer managed AWS Key Management Service key.
|
|
28
|
+
* - How long investigations and their data are retained by default.
|
|
29
|
+
*
|
|
30
|
+
* Currently, you can have one investigation group in each Region in your account. Each investigation in a Region is a part of the investigation group in that Region
|
|
31
|
+
*
|
|
32
|
+
* To create an investigation group and set up Amazon Q Developer operational investigations, you must be signed in to an IAM principal that has the either the `AIOpsConsoleAdminPolicy` or the `AdministratorAccess` IAM policy attached, or to an account that has similar permissions.
|
|
33
|
+
*
|
|
34
|
+
* > You can optionally configure CloudWatch alarms to start investigations and add events to investigations. The examples section on this page demonstrates creating an investigation group and an alarm at the same time.
|
|
35
|
+
* >
|
|
36
|
+
* > For more information about configuring CloudWatch alarms to work with Amazon Q Developer operational investigations, see
|
|
9
37
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html}
|
|
10
38
|
*/
|
|
11
39
|
export type AIOpsInvestigationGroupProps = {
|
|
12
40
|
/**
|
|
13
|
-
*
|
|
41
|
+
* Use this property to integrate Amazon Q Developer operational investigations with Amazon Q in chat applications. This property is an array. For the first string, specify the ARN of an Amazon SNS topic. For the array of strings, specify the ARNs of one or more Amazon Q in chat applications configurations that you want to associate with that topic. For more information about these configuration ARNs, see [Getting started with Amazon Q in chat applications](https://docs.aws.amazon.com/chatbot/latest/adminguide/getting-started.html) and [Resource type defined by AWS Chatbot](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awschatbot.html#awschatbot-resources-for-iam-policies) .
|
|
14
42
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-chatbotnotificationchannels}
|
|
15
43
|
*/
|
|
16
44
|
ChatbotNotificationChannels?: ChatbotNotificationChannel[] | undefined;
|
|
@@ -20,6 +48,7 @@ export type AIOpsInvestigationGroupProps = {
|
|
|
20
48
|
*/
|
|
21
49
|
CrossAccountConfigurations?: CrossAccountConfiguration[] | undefined;
|
|
22
50
|
/**
|
|
51
|
+
* Use this property to specify a customer managed AWS KMS key to encrypt your investigation data. If you omit this property, Amazon Q Developer operational investigations will use an AWS key to encrypt the data. For more information, see [Encryption of investigation data](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Investigations-Security.html#Investigations-KMS) .
|
|
23
52
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-encryptionconfig}
|
|
24
53
|
*/
|
|
25
54
|
EncryptionConfig?: EncryptionConfigMap | undefined;
|
|
@@ -29,31 +58,40 @@ export type AIOpsInvestigationGroupProps = {
|
|
|
29
58
|
*/
|
|
30
59
|
InvestigationGroupPolicy?: string | undefined;
|
|
31
60
|
/**
|
|
32
|
-
*
|
|
61
|
+
* Specify `true` to enable Amazon Q Developer operational investigations to have access to change events that are recorded by CloudTrail . The default is `true` .
|
|
33
62
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-iscloudtraileventhistoryenabled}
|
|
34
63
|
*/
|
|
35
64
|
IsCloudTrailEventHistoryEnabled?: boolean | undefined;
|
|
36
65
|
/**
|
|
37
|
-
*
|
|
66
|
+
* A name for the investigation group.
|
|
38
67
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-name}
|
|
39
68
|
*/
|
|
40
69
|
Name: string;
|
|
41
70
|
/**
|
|
42
|
-
*
|
|
71
|
+
* Specify how long that investigation data is kept. For more information, see [Operational investigation data retention](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Investigations-Retention.html) .
|
|
72
|
+
*
|
|
73
|
+
* If you omit this parameter, the default of 90 days is used.
|
|
43
74
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-retentionindays}
|
|
44
75
|
*/
|
|
45
76
|
RetentionInDays?: number | undefined;
|
|
46
77
|
/**
|
|
47
|
-
* The
|
|
78
|
+
* Specify the ARN of the IAM role that Amazon Q Developer operational investigations will use when it gathers investigation data. The permissions in this role determine which of your resources that Amazon Q Developer operational investigations will have access to during investigations.
|
|
79
|
+
*
|
|
80
|
+
* For more information, see [How to control what data Amazon Q has access to during investigations](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Investigations-Security.html#Investigations-Security-Data) .
|
|
48
81
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-rolearn}
|
|
49
82
|
*/
|
|
50
83
|
RoleArn?: string | undefined;
|
|
51
84
|
/**
|
|
85
|
+
* Enter the existing custom tag keys for custom applications in your system. Resource tags help Amazon Q narrow the search space when it is unable to discover definite relationships between resources. For example, to discover that an Amazon ECS service depends on an Amazon RDS database, Amazon Q can discover this relationship using data sources such as X-Ray and CloudWatch Application Signals. However, if you haven't deployed these features, Amazon Q will attempt to identify possible relationships. Tag boundaries can be used to narrow the resources that will be discovered by Amazon Q in these cases.
|
|
86
|
+
*
|
|
87
|
+
* You don't need to enter tags created by myApplications or AWS CloudFormation , because Amazon Q can automatically detect those tags.
|
|
52
88
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-tagkeyboundaries}
|
|
53
89
|
*/
|
|
54
90
|
TagKeyBoundaries?: string[] | undefined;
|
|
55
91
|
/**
|
|
56
|
-
*
|
|
92
|
+
* A list of key-value pairs to associate with the investigation group. You can associate as many as 50 tags with an investigation group.
|
|
93
|
+
*
|
|
94
|
+
* Tags can help you organize and categorize your resources.
|
|
57
95
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-tags}
|
|
58
96
|
*/
|
|
59
97
|
Tags?: Tag[] | undefined;
|
|
@@ -63,32 +101,33 @@ export type AIOpsInvestigationGroupProps = {
|
|
|
63
101
|
*/
|
|
64
102
|
export type AIOpsInvestigationGroupAttribs = {
|
|
65
103
|
/**
|
|
66
|
-
* The
|
|
104
|
+
* The Amazon Resource Name (ARN) of the investigation group. For example, `arn:aws:aiops: *Region* : *account-id* :investigation-group: *investigation-group-id*`
|
|
67
105
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-arn}
|
|
68
106
|
*/
|
|
69
107
|
Arn: string;
|
|
70
108
|
/**
|
|
71
|
-
* The
|
|
109
|
+
* The date and time that the investigation group was created.
|
|
72
110
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-createdat}
|
|
73
111
|
*/
|
|
74
112
|
CreatedAt: string;
|
|
75
113
|
/**
|
|
76
|
-
*
|
|
114
|
+
* The name of the user who created the investigation group.
|
|
77
115
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-createdby}
|
|
78
116
|
*/
|
|
79
117
|
CreatedBy: string;
|
|
80
118
|
/**
|
|
81
|
-
*
|
|
119
|
+
* The date and time that the investigation group was most recently modified.
|
|
82
120
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-lastmodifiedat}
|
|
83
121
|
*/
|
|
84
122
|
LastModifiedAt: string;
|
|
85
123
|
/**
|
|
86
|
-
*
|
|
124
|
+
* The name of the user who most recently modified the investigation group.
|
|
87
125
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#cfn-aiops-investigationgroup-lastmodifiedby}
|
|
88
126
|
*/
|
|
89
127
|
LastModifiedBy: string;
|
|
90
128
|
};
|
|
91
129
|
/**
|
|
130
|
+
* This structure is a string array. The first string is the ARN of a Amazon SNS topic. The array of strings display the ARNs of Amazon Q in chat applications configurations that are associated with that topic. For more information about these configuration ARNs, see [Getting started with Amazon Q in chat applications](https://docs.aws.amazon.com/chatbot/latest/adminguide/getting-started.html) and [Resource type defined by AWS Chatbot](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awschatbot.html#awschatbot-resources-for-iam-policies) .
|
|
92
131
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aiops-investigationgroup-chatbotnotificationchannel.html}
|
|
93
132
|
*/
|
|
94
133
|
export type ChatbotNotificationChannel = {
|
|
@@ -124,6 +163,7 @@ export type EncryptionConfigMap = {
|
|
|
124
163
|
*/
|
|
125
164
|
EncryptionConfigurationType?: string | undefined;
|
|
126
165
|
/**
|
|
166
|
+
* If the investigation group uses a customer managed key for encryption, this field displays the ID of that key.
|
|
127
167
|
* @minLength 1
|
|
128
168
|
* @maxLength 256
|
|
129
169
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aiops-investigationgroup-encryptionconfigmap.html#cfn-aiops-investigationgroup-encryptionconfigmap-kmskeyid}
|
|
@@ -104,6 +104,8 @@ export type PracticeRunConfiguration = {
|
|
|
104
104
|
* An array of one or more days and times that you can specify when ARC does not start practice runs for a resource. Days and times are in UTC.
|
|
105
105
|
*
|
|
106
106
|
* Specify blocked windows in the format `DAY:HH:MM-DAY:HH:MM` , separated by spaces. For example, `MON:18:30-MON:19:30 TUE:18:30-TUE:19:30` .
|
|
107
|
+
*
|
|
108
|
+
* > Blocked windows have to start and end on the same day. Windows that span multiple days aren't supported.
|
|
107
109
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arczonalshift-zonalautoshiftconfiguration-practicerunconfiguration.html#cfn-arczonalshift-zonalautoshiftconfiguration-practicerunconfiguration-blockedwindows}
|
|
108
110
|
*/
|
|
109
111
|
BlockedWindows?: string[] | undefined;
|
|
@@ -20,6 +20,7 @@ export type B2BIPartnershipProps = {
|
|
|
20
20
|
*/
|
|
21
21
|
CapabilityOptions?: CapabilityOptions | undefined;
|
|
22
22
|
/**
|
|
23
|
+
* Specifies the email address associated with this trading partner.
|
|
23
24
|
* @minLength 5
|
|
24
25
|
* @maxLength 254
|
|
25
26
|
* @pattern ^[\w\.\-]+@[\w\.\-]+$
|
|
@@ -34,6 +35,7 @@ export type B2BIPartnershipProps = {
|
|
|
34
35
|
*/
|
|
35
36
|
Name: string;
|
|
36
37
|
/**
|
|
38
|
+
* Specifies the phone number associated with the partnership.
|
|
37
39
|
* @minLength 7
|
|
38
40
|
* @maxLength 22
|
|
39
41
|
* @pattern ^\+?([0-9 \t\-()\/]{7,})(?:\s*(?:#|x\.?|ext\.?|extension) \t*(\d+))?$
|
|
@@ -100,6 +102,7 @@ export type B2BIPartnershipAttribs = {
|
|
|
100
102
|
*/
|
|
101
103
|
export type CapabilityOptions = {
|
|
102
104
|
/**
|
|
105
|
+
* A structure that contains the inbound EDI options for the capability.
|
|
103
106
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-capabilityoptions.html#cfn-b2bi-partnership-capabilityoptions-inboundedi}
|
|
104
107
|
*/
|
|
105
108
|
InboundEdi?: InboundEdiOptions | undefined;
|
|
@@ -110,10 +113,12 @@ export type CapabilityOptions = {
|
|
|
110
113
|
OutboundEdi?: OutboundEdiOptions | undefined;
|
|
111
114
|
};
|
|
112
115
|
/**
|
|
116
|
+
* Contains options for processing inbound EDI files. These options allow for customizing how incoming EDI documents are processed.
|
|
113
117
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-inboundedioptions.html}
|
|
114
118
|
*/
|
|
115
119
|
export type InboundEdiOptions = {
|
|
116
120
|
/**
|
|
121
|
+
* A structure that contains X12-specific options for processing inbound X12 EDI files.
|
|
117
122
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-inboundedioptions.html#cfn-b2bi-partnership-inboundedioptions-x12}
|
|
118
123
|
*/
|
|
119
124
|
X12?: X12InboundEdiOptions | undefined;
|
|
@@ -269,10 +274,12 @@ export type X12FunctionalGroupHeaders = {
|
|
|
269
274
|
*/
|
|
270
275
|
export type X12GS05TimeFormat = "HHMM" | "HHMMSS" | "HHMMSSDD";
|
|
271
276
|
/**
|
|
277
|
+
* Contains options specific to processing inbound X12 EDI files.
|
|
272
278
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12inboundedioptions.html}
|
|
273
279
|
*/
|
|
274
280
|
export type X12InboundEdiOptions = {
|
|
275
281
|
/**
|
|
282
|
+
* Specifies acknowledgment options for inbound X12 EDI files. These options control how functional and technical acknowledgments are handled.
|
|
276
283
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12inboundedioptions.html#cfn-b2bi-partnership-x12inboundedioptions-acknowledgmentoptions}
|
|
277
284
|
*/
|
|
278
285
|
AcknowledgmentOptions?: X12AcknowledgmentOptions | undefined;
|
|
@@ -336,6 +343,7 @@ export type X12InterchangeControlHeaders = {
|
|
|
336
343
|
*/
|
|
337
344
|
export type X12OutboundEdiHeaders = {
|
|
338
345
|
/**
|
|
346
|
+
* Specifies control number configuration for outbound X12 EDI headers. These settings determine the starting values for interchange, functional group, and transaction set control numbers.
|
|
339
347
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12outboundediheaders.html#cfn-b2bi-partnership-x12outboundediheaders-controlnumbers}
|
|
340
348
|
*/
|
|
341
349
|
ControlNumbers?: X12ControlNumbers | undefined;
|
|
@@ -551,7 +551,7 @@ export type S3DataSourceConfiguration = {
|
|
|
551
551
|
*/
|
|
552
552
|
BucketOwnerAccountId?: string | undefined;
|
|
553
553
|
/**
|
|
554
|
-
* A list of S3 prefixes to include certain files or content. For more information, see [Organizing objects using prefixes](https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html) .
|
|
554
|
+
* A list of S3 prefixes to include certain files or content. This field is an array with a maximum of one item, which can contain a string that has a maximum length of 300 characters. For more information, see [Organizing objects using prefixes](https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html) .
|
|
555
555
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-s3datasourceconfiguration.html#cfn-bedrock-datasource-s3datasourceconfiguration-inclusionprefixes}
|
|
556
556
|
*/
|
|
557
557
|
InclusionPrefixes?: string[] | undefined;
|
|
@@ -219,11 +219,23 @@ export type ContentFilterConfig = {
|
|
|
219
219
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contentfiltertype.html}
|
|
220
220
|
*/
|
|
221
221
|
export type ContentFilterType = "SEXUAL" | "VIOLENCE" | "HATE" | "INSULTS" | "MISCONDUCT" | "PROMPT_ATTACK";
|
|
222
|
+
/**
|
|
223
|
+
* Tier name for tier configuration in content filters policy
|
|
224
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contentfilterstiername.html}
|
|
225
|
+
*/
|
|
226
|
+
export type ContentFiltersTierName = "CLASSIC" | "STANDARD";
|
|
222
227
|
/**
|
|
223
228
|
* Contains details about how to handle harmful content.
|
|
224
229
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contentpolicyconfig.html}
|
|
225
230
|
*/
|
|
226
231
|
export type ContentPolicyConfig = {
|
|
232
|
+
/**
|
|
233
|
+
* Guardrail tier config for content policy
|
|
234
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contentpolicyconfig.html#cfn-bedrock-guardrail-contentpolicyconfig-contentfilterstierconfig}
|
|
235
|
+
*/
|
|
236
|
+
ContentFiltersTierConfig?: {
|
|
237
|
+
TierName: ContentFiltersTierName;
|
|
238
|
+
} | undefined;
|
|
227
239
|
/**
|
|
228
240
|
* Contains the type of the content filter and how strongly it should apply to prompts and model responses.
|
|
229
241
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contentpolicyconfig.html#cfn-bedrock-guardrail-contentpolicyconfig-filtersconfig}
|
|
@@ -625,12 +637,24 @@ export type TopicPolicyConfig = {
|
|
|
625
637
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-topicpolicyconfig.html#cfn-bedrock-guardrail-topicpolicyconfig-topicsconfig}
|
|
626
638
|
*/
|
|
627
639
|
TopicsConfig: TopicConfig[];
|
|
640
|
+
/**
|
|
641
|
+
* Guardrail tier config for topic policy
|
|
642
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-topicpolicyconfig.html#cfn-bedrock-guardrail-topicpolicyconfig-topicstierconfig}
|
|
643
|
+
*/
|
|
644
|
+
TopicsTierConfig?: {
|
|
645
|
+
TierName: TopicsTierName;
|
|
646
|
+
} | undefined;
|
|
628
647
|
};
|
|
629
648
|
/**
|
|
630
649
|
* Type of topic in a policy
|
|
631
650
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-topictype.html}
|
|
632
651
|
*/
|
|
633
652
|
export type TopicType = "DENY";
|
|
653
|
+
/**
|
|
654
|
+
* Tier name for tier configuration in topic policy
|
|
655
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-topicstiername.html}
|
|
656
|
+
*/
|
|
657
|
+
export type TopicsTierName = "CLASSIC" | "STANDARD";
|
|
634
658
|
/**
|
|
635
659
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-wordaction.html}
|
|
636
660
|
*/
|
|
@@ -25,6 +25,7 @@ export type CassandraTableProps = {
|
|
|
25
25
|
*/
|
|
26
26
|
BillingMode?: BillingMode | undefined;
|
|
27
27
|
/**
|
|
28
|
+
* The settings for the CDC stream of a table. For more information about CDC streams, see [Working with change data capture (CDC) streams in Amazon Keyspaces](https://docs.aws.amazon.com/keyspaces/latest/devguide/cdc.html) in the *Amazon Keyspaces Developer Guide* .
|
|
28
29
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-table.html#cfn-cassandra-table-cdcspecification}
|
|
29
30
|
*/
|
|
30
31
|
CdcSpecification?: CdcSpecification | undefined;
|
|
@@ -195,15 +196,24 @@ export type BillingMode = {
|
|
|
195
196
|
ProvisionedThroughput?: ProvisionedThroughput | undefined;
|
|
196
197
|
};
|
|
197
198
|
/**
|
|
198
|
-
*
|
|
199
|
+
* The settings for the CDC stream of a table. For more information about CDC streams, see [Working with change data capture (CDC) streams in Amazon Keyspaces](https://docs.aws.amazon.com/keyspaces/latest/devguide/cdc.html) in the *Amazon Keyspaces Developer Guide* .
|
|
199
200
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-cdcspecification.html}
|
|
200
201
|
*/
|
|
201
202
|
export type CdcSpecification = {
|
|
202
203
|
/**
|
|
204
|
+
* The status of the CDC stream. You can enable or disable a stream for a table.
|
|
203
205
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-cdcspecification.html#cfn-cassandra-table-cdcspecification-status}
|
|
204
206
|
*/
|
|
205
207
|
Status: CdcStatus;
|
|
206
208
|
/**
|
|
209
|
+
* The view type specifies the changes Amazon Keyspaces records for each changed row in the stream. After you create the stream, you can't make changes to this selection.
|
|
210
|
+
*
|
|
211
|
+
* The options are:
|
|
212
|
+
*
|
|
213
|
+
* - `NEW_AND_OLD_IMAGES` - both versions of the row, before and after the change. This is the default.
|
|
214
|
+
* - `NEW_IMAGE` - the version of the row after the change.
|
|
215
|
+
* - `OLD_IMAGE` - the version of the row before the change.
|
|
216
|
+
* - `KEYS_ONLY` - the partition and clustering keys of the row that was changed.
|
|
207
217
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-cdcspecification.html#cfn-cassandra-table-cdcspecification-viewtype}
|
|
208
218
|
*/
|
|
209
219
|
ViewType?: CdcViewType | undefined;
|
|
@@ -24,6 +24,10 @@ export type CertificateManagerCertificateProps = {
|
|
|
24
24
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn}
|
|
25
25
|
*/
|
|
26
26
|
CertificateAuthorityArn?: string | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateexport}
|
|
29
|
+
*/
|
|
30
|
+
CertificateExport?: string | undefined;
|
|
27
31
|
/**
|
|
28
32
|
* You can opt out of certificate transparency logging by specifying the `DISABLED` option. Opt in by specifying `ENABLED` .
|
|
29
33
|
*
|
|
@@ -72,7 +72,7 @@ export type CloudFormationHookDefaultVersionProps = {
|
|
|
72
72
|
*/
|
|
73
73
|
export type CloudFormationHookDefaultVersionAttribs = {
|
|
74
74
|
/**
|
|
75
|
-
* The Amazon Resource Number (ARN) of the activated Hook
|
|
75
|
+
* The Amazon Resource Number (ARN) of the activated Hook in this account and Region.
|
|
76
76
|
* @pattern ^arn:aws[A-Za-z0-9-]{0,64}:cloudformation:[A-Za-z0-9-]{1,64}:([0-9]{12})?:type/hook/.+$
|
|
77
77
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-hookdefaultversion.html#cfn-cloudformation-hookdefaultversion-arn}
|
|
78
78
|
*/
|
|
@@ -86,7 +86,7 @@ export type CloudFormationHookTypeConfigProps = {
|
|
|
86
86
|
*/
|
|
87
87
|
export type CloudFormationHookTypeConfigAttribs = {
|
|
88
88
|
/**
|
|
89
|
-
* The Amazon Resource Number (ARN) of the activated Hook type configuration
|
|
89
|
+
* The Amazon Resource Number (ARN) of the activated Hook type configuration in this account and Region.
|
|
90
90
|
* @pattern ^arn:aws[A-Za-z0-9-]{0,64}:cloudformation:[A-Za-z0-9-]{1,64}:([0-9]{12})?:type(-configuration)?/hook/.+$
|
|
91
91
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-hooktypeconfig.html#cfn-cloudformation-hooktypeconfig-configurationarn}
|
|
92
92
|
*/
|
|
@@ -46,6 +46,7 @@ export type CloudFormationMacroProps = {
|
|
|
46
46
|
*/
|
|
47
47
|
export type CloudFormationMacroAttribs = {
|
|
48
48
|
/**
|
|
49
|
+
* Returns a unique identifier for the resource.
|
|
49
50
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html#cfn-cloudformation-macro-id}
|
|
50
51
|
*/
|
|
51
52
|
Id: string;
|
|
@@ -2,7 +2,7 @@ import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
|
2
2
|
/**
|
|
3
3
|
* The `AWS::CloudFormation::Stack` resource nests a stack as a resource in a top-level template. For more information, see [Nested stacks](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html) in the *AWS CloudFormation User Guide* .
|
|
4
4
|
*
|
|
5
|
-
* You can add output values from a nested stack within the containing template. You use the [GetAtt](https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
|
5
|
+
* You can add output values from a nested stack within the containing template. You use the [GetAtt](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/intrinsic-function-reference-getatt.html) function with the nested stack's logical name and the name of the output value in the nested stack in the format `Outputs. *NestedStackOutputName*` .
|
|
6
6
|
*
|
|
7
7
|
* We strongly recommend that updates to nested stacks are run from the parent stack.
|
|
8
8
|
*
|
|
@@ -49,7 +49,7 @@ export type CloudFormationStack = ResourceDefinitionWithAttributes<"AWS::CloudFo
|
|
|
49
49
|
/**
|
|
50
50
|
* The `AWS::CloudFormation::Stack` resource nests a stack as a resource in a top-level template. For more information, see [Nested stacks](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html) in the *AWS CloudFormation User Guide* .
|
|
51
51
|
*
|
|
52
|
-
* You can add output values from a nested stack within the containing template. You use the [GetAtt](https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
|
52
|
+
* You can add output values from a nested stack within the containing template. You use the [GetAtt](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/intrinsic-function-reference-getatt.html) function with the nested stack's logical name and the name of the output value in the nested stack in the format `Outputs. *NestedStackOutputName*` .
|
|
53
53
|
*
|
|
54
54
|
* We strongly recommend that updates to nested stacks are run from the parent stack.
|
|
55
55
|
*
|
|
@@ -179,12 +179,12 @@ export type CloudFormationStackProps = {
|
|
|
179
179
|
*/
|
|
180
180
|
export type CloudFormationStackAttribs = {
|
|
181
181
|
/**
|
|
182
|
-
* Returns the unique
|
|
182
|
+
* Returns the unique identifier of the change set.
|
|
183
183
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stack.html#cfn-cloudformation-stack-changesetid}
|
|
184
184
|
*/
|
|
185
185
|
ChangeSetId: string;
|
|
186
186
|
/**
|
|
187
|
-
* Returns
|
|
187
|
+
* Returns the time the stack was created.
|
|
188
188
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stack.html#cfn-cloudformation-stack-creationtime}
|
|
189
189
|
*/
|
|
190
190
|
CreationTime: string;
|