@propulsionworks/cloudformation 0.1.7 → 0.1.9
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/builder.ts +2 -2
- package/lib/template.ts +1 -1
- package/out/exports/resources.generated/aws-apigateway-domainname.d.ts +2 -2
- package/out/exports/resources.generated/aws-aps-scraper.d.ts +4 -4
- package/out/exports/resources.generated/aws-aps-workspace.d.ts +15 -11
- package/out/exports/resources.generated/aws-bedrock-flow.d.ts +17 -13
- package/out/exports/resources.generated/aws-bedrock-flowalias.d.ts +7 -1
- package/out/exports/resources.generated/aws-cloudformation-hookversion.d.ts +3 -5
- package/out/exports/resources.generated/aws-cloudformation-moduleversion.d.ts +3 -5
- package/out/exports/resources.generated/aws-cloudformation-resourceversion.d.ts +4 -6
- package/out/exports/resources.generated/aws-cloudformation-stack.d.ts +6 -10
- package/out/exports/resources.generated/aws-cloudformation-stackset.d.ts +2 -2
- package/out/exports/resources.generated/aws-cloudtrail-trail.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudwatch-insightrule.d.ts +4 -0
- package/out/exports/resources.generated/aws-codebuild-project.d.ts +17 -0
- package/out/exports/resources.generated/aws-datazone-environmentblueprintconfiguration.d.ts +2 -0
- package/out/exports/resources.generated/aws-datazone-project.d.ts +1 -1
- package/out/exports/resources.generated/aws-datazone-projectprofile.d.ts +86 -0
- package/out/exports/resources.generated/aws-deadline-fleet.d.ts +21 -0
- package/out/exports/resources.generated/aws-ec2-instance.d.ts +26 -5
- package/out/exports/resources.generated/aws-ec2-ipam.d.ts +5 -0
- package/out/exports/resources.generated/aws-ec2-trafficmirrorfilter.d.ts +1 -0
- package/out/exports/resources.generated/aws-elasticloadbalancingv2-listener.d.ts +2 -2
- package/out/exports/resources.generated/aws-elasticloadbalancingv2-listenerrule.d.ts +1 -1
- package/out/exports/resources.generated/aws-emr-cluster.d.ts +8 -0
- package/out/exports/resources.generated/aws-entityresolution-idnamespace.d.ts +1 -1
- package/out/exports/resources.generated/aws-fsx-filesystem.d.ts +21 -0
- package/out/exports/resources.generated/aws-glue-tableoptimizer.d.ts +19 -3
- package/out/exports/resources.generated/aws-iot-thingprincipalattachment.d.ts +4 -0
- package/out/exports/resources.generated/aws-lex-bot.d.ts +12 -0
- package/out/exports/resources.generated/aws-lightsail-instancesnapshot.d.ts +73 -0
- package/out/exports/resources.generated/aws-medialive-channel.d.ts +49 -0
- package/out/exports/resources.generated/aws-medialive-input.d.ts +56 -0
- package/out/exports/resources.generated/aws-msk-configuration.d.ts +1 -1
- package/out/exports/resources.generated/aws-networkfirewall-firewall.d.ts +5 -1
- package/out/exports/resources.generated/aws-panorama-applicationinstance.d.ts +6 -0
- package/out/exports/resources.generated/aws-panorama-package.d.ts +6 -0
- package/out/exports/resources.generated/aws-panorama-packageversion.d.ts +6 -0
- package/out/exports/resources.generated/aws-pcs-cluster.d.ts +7 -3
- package/out/exports/resources.generated/aws-rds-dbcluster.d.ts +2 -2
- package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +1 -1
- package/out/exports/resources.generated/aws-rds-globalcluster.d.ts +2 -2
- package/out/exports/resources.generated/aws-route53resolver-resolverendpoint.d.ts +1 -1
- package/out/exports/resources.generated/aws-s3express-accesspoint.d.ts +142 -0
- package/out/exports/resources.generated/aws-ses-mailmanagerruleset.d.ts +28 -0
- package/out/exports/resources.generated/aws-ses-mailmanagertrafficpolicy.d.ts +19 -0
- package/out/exports/resources.generated/aws-synthetics-canary.d.ts +13 -8
- package/out/exports/resources.generated/aws-voiceid-domain.d.ts +6 -0
- package/out/lib/builder.d.ts +1 -1
- package/out/lib/builder.d.ts.map +1 -1
- package/out/lib/builder.js +1 -1
- package/out/lib/builder.js.map +1 -1
- package/out/lib/template.d.ts +1 -1
- package/out/lib/template.d.ts.map +1 -1
- package/package.json +1 -1
package/lib/builder.ts
CHANGED
|
@@ -128,8 +128,8 @@ export class TemplateBuilder<
|
|
|
128
128
|
return this.#template;
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
-
public constructor(template
|
|
132
|
-
this.#template = template;
|
|
131
|
+
public constructor(template?: Template) {
|
|
132
|
+
this.#template = template ?? { Resources: {} };
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
/**
|
package/lib/template.ts
CHANGED
|
@@ -116,7 +116,7 @@ export type Template<
|
|
|
116
116
|
*
|
|
117
117
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resources-section-structure.html}
|
|
118
118
|
*/
|
|
119
|
-
Resources: TemplateMap<ResourceType
|
|
119
|
+
Resources: TemplateMap<ResourceType>;
|
|
120
120
|
|
|
121
121
|
/**
|
|
122
122
|
* The optional `Rules` section validates a parameter or a combination of
|
|
@@ -2,7 +2,7 @@ import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
|
2
2
|
/**
|
|
3
3
|
* The `AWS::ApiGateway::DomainName` resource specifies a public custom domain name for your API in API Gateway.
|
|
4
4
|
*
|
|
5
|
-
* To create a custom domain name for private APIs, use [AWS::ApiGateway::
|
|
5
|
+
* To create a custom domain name for private APIs, use [AWS::ApiGateway::DomainNameV2](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnamev2.html) .
|
|
6
6
|
*
|
|
7
7
|
* You can use a custom domain name to provide a URL that's more intuitive and easier to recall. For more information about using custom domain names, see [Set up Custom Domain Name for an API in API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-custom-domains.html) in the *API Gateway Developer Guide* .
|
|
8
8
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html}
|
|
@@ -11,7 +11,7 @@ export type ApiGatewayDomainName = ResourceDefinitionWithAttributes<"AWS::ApiGat
|
|
|
11
11
|
/**
|
|
12
12
|
* The `AWS::ApiGateway::DomainName` resource specifies a public custom domain name for your API in API Gateway.
|
|
13
13
|
*
|
|
14
|
-
* To create a custom domain name for private APIs, use [AWS::ApiGateway::
|
|
14
|
+
* To create a custom domain name for private APIs, use [AWS::ApiGateway::DomainNameV2](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnamev2.html) .
|
|
15
15
|
*
|
|
16
16
|
* You can use a custom domain name to provide a URL that's more intuitive and easier to recall. For more information about using custom domain names, see [Set up Custom Domain Name for an API in API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-custom-domains.html) in the *API Gateway Developer Guide* .
|
|
17
17
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html}
|
|
@@ -35,7 +35,7 @@ export type APSScraperProps = {
|
|
|
35
35
|
*/
|
|
36
36
|
Destination: Destination;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* The role configuration in an Amazon Managed Service for Prometheus scraper.
|
|
39
39
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-scraper.html#cfn-aps-scraper-roleconfiguration}
|
|
40
40
|
*/
|
|
41
41
|
RoleConfiguration?: RoleConfiguration | undefined;
|
|
@@ -102,17 +102,17 @@ export type Destination = {
|
|
|
102
102
|
};
|
|
103
103
|
};
|
|
104
104
|
/**
|
|
105
|
-
*
|
|
105
|
+
* The role configuration in an Amazon Managed Service for Prometheus scraper.
|
|
106
106
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-roleconfiguration.html}
|
|
107
107
|
*/
|
|
108
108
|
export type RoleConfiguration = {
|
|
109
109
|
/**
|
|
110
|
-
*
|
|
110
|
+
* The ARN of the source role.
|
|
111
111
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-roleconfiguration.html#cfn-aps-scraper-roleconfiguration-sourcerolearn}
|
|
112
112
|
*/
|
|
113
113
|
SourceRoleArn?: string | undefined;
|
|
114
114
|
/**
|
|
115
|
-
*
|
|
115
|
+
* The ARN of the target role.
|
|
116
116
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-roleconfiguration.html#cfn-aps-scraper-roleconfiguration-targetrolearn}
|
|
117
117
|
*/
|
|
118
118
|
TargetRoleArn?: string | undefined;
|
|
@@ -36,12 +36,14 @@ export type APSWorkspaceProps = {
|
|
|
36
36
|
*/
|
|
37
37
|
KmsKeyArn?: string | undefined;
|
|
38
38
|
/**
|
|
39
|
-
* Contains information about the logging configuration for the workspace.
|
|
39
|
+
* Contains information about the current rules and alerting logging configuration for the workspace.
|
|
40
|
+
*
|
|
41
|
+
* > These logging configurations are only for rules and alerting logs.
|
|
40
42
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-workspace.html#cfn-aps-workspace-loggingconfiguration}
|
|
41
43
|
*/
|
|
42
44
|
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
43
45
|
/**
|
|
44
|
-
*
|
|
46
|
+
* The definition of logging configuration in an Amazon Managed Service for Prometheus workspace.
|
|
45
47
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-workspace.html#cfn-aps-workspace-queryloggingconfiguration}
|
|
46
48
|
*/
|
|
47
49
|
QueryLoggingConfiguration?: QueryLoggingConfiguration | undefined;
|
|
@@ -83,12 +85,12 @@ export type APSWorkspaceAttribs = {
|
|
|
83
85
|
WorkspaceId: string;
|
|
84
86
|
};
|
|
85
87
|
/**
|
|
86
|
-
*
|
|
88
|
+
* Configuration details for logging to CloudWatch Logs.
|
|
87
89
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-cloudwatchlogdestination.html}
|
|
88
90
|
*/
|
|
89
91
|
export type CloudWatchLogDestination = {
|
|
90
92
|
/**
|
|
91
|
-
* The ARN of the CloudWatch
|
|
93
|
+
* The ARN of the CloudWatch log group.
|
|
92
94
|
* @minLength 0
|
|
93
95
|
* @maxLength 512
|
|
94
96
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-cloudwatchlogdestination.html#cfn-aps-workspace-cloudwatchlogdestination-loggrouparn}
|
|
@@ -147,7 +149,9 @@ export type LimitsPerLabelSetEntry = {
|
|
|
147
149
|
MaxSeries?: number | undefined;
|
|
148
150
|
};
|
|
149
151
|
/**
|
|
150
|
-
* Contains information about the logging configuration for the workspace.
|
|
152
|
+
* Contains information about the rules and alerting logging configuration for the workspace.
|
|
153
|
+
*
|
|
154
|
+
* > These logging configurations are only for rules and alerting logs.
|
|
151
155
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-loggingconfiguration.html}
|
|
152
156
|
*/
|
|
153
157
|
export type LoggingConfiguration = {
|
|
@@ -160,23 +164,23 @@ export type LoggingConfiguration = {
|
|
|
160
164
|
LogGroupArn?: string | undefined;
|
|
161
165
|
};
|
|
162
166
|
/**
|
|
163
|
-
*
|
|
167
|
+
* The logging destination in an Amazon Managed Service for Prometheus workspace.
|
|
164
168
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-loggingdestination.html}
|
|
165
169
|
*/
|
|
166
170
|
export type LoggingDestination = {
|
|
167
171
|
/**
|
|
168
|
-
*
|
|
172
|
+
* Configuration details for logging to CloudWatch Logs.
|
|
169
173
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-loggingdestination.html#cfn-aps-workspace-loggingdestination-cloudwatchlogs}
|
|
170
174
|
*/
|
|
171
175
|
CloudWatchLogs: CloudWatchLogDestination;
|
|
172
176
|
/**
|
|
173
|
-
*
|
|
177
|
+
* Filtering criteria that determine which queries are logged.
|
|
174
178
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-loggingdestination.html#cfn-aps-workspace-loggingdestination-filters}
|
|
175
179
|
*/
|
|
176
180
|
Filters: LoggingFilter;
|
|
177
181
|
};
|
|
178
182
|
/**
|
|
179
|
-
*
|
|
183
|
+
* Filtering criteria that determine which queries are logged.
|
|
180
184
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-loggingfilter.html}
|
|
181
185
|
*/
|
|
182
186
|
export type LoggingFilter = {
|
|
@@ -188,12 +192,12 @@ export type LoggingFilter = {
|
|
|
188
192
|
QspThreshold: number;
|
|
189
193
|
};
|
|
190
194
|
/**
|
|
191
|
-
*
|
|
195
|
+
* The query logging configuration in an Amazon Managed Service for Prometheus workspace.
|
|
192
196
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-queryloggingconfiguration.html}
|
|
193
197
|
*/
|
|
194
198
|
export type QueryLoggingConfiguration = {
|
|
195
199
|
/**
|
|
196
|
-
*
|
|
200
|
+
* Defines a destination and its associated filtering criteria for query logging.
|
|
197
201
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-queryloggingconfiguration.html#cfn-aps-workspace-queryloggingconfiguration-destinations}
|
|
198
202
|
*/
|
|
199
203
|
Destinations: LoggingDestination[];
|
|
@@ -140,7 +140,7 @@ export type BedrockFlowAttribs = {
|
|
|
140
140
|
Version: string;
|
|
141
141
|
};
|
|
142
142
|
/**
|
|
143
|
-
* Defines an agent node in your flow. You specify the agent to invoke at this point in the flow. For more information, see [Node types in
|
|
143
|
+
* Defines an agent node in your flow. You specify the agent to invoke at this point in the flow. For more information, see [Node types in a flow](https://docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html) in the Amazon Bedrock User Guide.
|
|
144
144
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-agentflownodeconfiguration.html}
|
|
145
145
|
*/
|
|
146
146
|
export type AgentFlowNodeConfiguration = {
|
|
@@ -153,7 +153,7 @@ export type AgentFlowNodeConfiguration = {
|
|
|
153
153
|
AgentAliasArn: string;
|
|
154
154
|
};
|
|
155
155
|
/**
|
|
156
|
-
* Defines a condition node in your flow. You can specify conditions that determine which node comes next in the flow. For more information, see [Node types in
|
|
156
|
+
* Defines a condition node in your flow. You can specify conditions that determine which node comes next in the flow. For more information, see [Node types in a flow](https://docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html) in the Amazon Bedrock User Guide.
|
|
157
157
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-conditionflownodeconfiguration.html}
|
|
158
158
|
*/
|
|
159
159
|
export type ConditionFlowNodeConfiguration = {
|
|
@@ -309,7 +309,7 @@ export type FlowNode = {
|
|
|
309
309
|
Type: FlowNodeType;
|
|
310
310
|
};
|
|
311
311
|
/**
|
|
312
|
-
* Contains configurations for a node in your flow. For more information, see [Node types in
|
|
312
|
+
* Contains configurations for a node in your flow. For more information, see [Node types in a flow](https://docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html) in the Amazon Bedrock User Guide.
|
|
313
313
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flownodeconfiguration.html}
|
|
314
314
|
*/
|
|
315
315
|
export type FlowNodeConfiguration = {
|
|
@@ -345,7 +345,7 @@ export type FlowNodeConfiguration = {
|
|
|
345
345
|
*/
|
|
346
346
|
export type FlowNodeIODataType = "String" | "Number" | "Boolean" | "Object" | "Array";
|
|
347
347
|
/**
|
|
348
|
-
* Contains configurations for an input
|
|
348
|
+
* Contains configurations for an input in an Amazon Bedrock Flows node.
|
|
349
349
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flownodeinput.html}
|
|
350
350
|
*/
|
|
351
351
|
export type FlowNodeInput = {
|
|
@@ -357,13 +357,13 @@ export type FlowNodeInput = {
|
|
|
357
357
|
*/
|
|
358
358
|
Expression: string;
|
|
359
359
|
/**
|
|
360
|
-
*
|
|
360
|
+
* Specifies a name for the input that you can reference.
|
|
361
361
|
* @pattern ^[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}$
|
|
362
362
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flownodeinput.html#cfn-bedrock-flow-flownodeinput-name}
|
|
363
363
|
*/
|
|
364
364
|
Name: string;
|
|
365
365
|
/**
|
|
366
|
-
*
|
|
366
|
+
* Specifies the data type of the input. If the input doesn't match this type at runtime, a validation error will be thrown.
|
|
367
367
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-flownodeinput.html#cfn-bedrock-flow-flownodeinput-type}
|
|
368
368
|
*/
|
|
369
369
|
Type: FlowNodeIODataType;
|
|
@@ -415,24 +415,28 @@ export type GuardrailConfiguration = {
|
|
|
415
415
|
GuardrailVersion?: string | undefined;
|
|
416
416
|
};
|
|
417
417
|
/**
|
|
418
|
-
* Inline code
|
|
418
|
+
* Contains configurations for an inline code node in your flow. Inline code nodes let you write and execute code directly within your flow, enabling data transformations, custom logic, and integrations without needing an external Lambda function.
|
|
419
419
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-inlinecodeflownodeconfiguration.html}
|
|
420
420
|
*/
|
|
421
421
|
export type InlineCodeFlowNodeConfiguration = {
|
|
422
422
|
/**
|
|
423
|
-
* The inline code
|
|
423
|
+
* The code that's executed in your inline code node. The code can access input data from previous nodes in the flow, perform operations on that data, and produce output that can be used by other nodes in your flow.
|
|
424
|
+
*
|
|
425
|
+
* The code must be valid in the programming `language` that you specify.
|
|
424
426
|
* @maxLength 5000000
|
|
425
427
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-inlinecodeflownodeconfiguration.html#cfn-bedrock-flow-inlinecodeflownodeconfiguration-code}
|
|
426
428
|
*/
|
|
427
429
|
Code: string;
|
|
428
430
|
/**
|
|
429
|
-
*
|
|
431
|
+
* The programming language used by your inline code node.
|
|
432
|
+
*
|
|
433
|
+
* The code must be valid in the programming `language` that you specify. Currently, only Python 3 ( `Python_3` ) is supported.
|
|
430
434
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-inlinecodeflownodeconfiguration.html#cfn-bedrock-flow-inlinecodeflownodeconfiguration-language}
|
|
431
435
|
*/
|
|
432
436
|
Language: SupportedLanguages;
|
|
433
437
|
};
|
|
434
438
|
/**
|
|
435
|
-
* Contains configurations for a knowledge base node in a flow. This node takes a query as the input and returns, as the output, the retrieved responses directly (as an array) or a response generated based on the retrieved responses. For more information, see [Node types in
|
|
439
|
+
* Contains configurations for a knowledge base node in a flow. This node takes a query as the input and returns, as the output, the retrieved responses directly (as an array) or a response generated based on the retrieved responses. For more information, see [Node types in a flow](https://docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html) in the Amazon Bedrock User Guide.
|
|
436
440
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-knowledgebaseflownodeconfiguration.html}
|
|
437
441
|
*/
|
|
438
442
|
export type KnowledgeBaseFlowNodeConfiguration = {
|
|
@@ -458,7 +462,7 @@ export type KnowledgeBaseFlowNodeConfiguration = {
|
|
|
458
462
|
ModelId?: string | undefined;
|
|
459
463
|
};
|
|
460
464
|
/**
|
|
461
|
-
* Contains configurations for a Lambda function node in the flow. You specify the Lambda function to invoke and the inputs into the function. The output is the response that is defined in the Lambda function. For more information, see [Node types in
|
|
465
|
+
* Contains configurations for a Lambda function node in the flow. You specify the Lambda function to invoke and the inputs into the function. The output is the response that is defined in the Lambda function. For more information, see [Node types in a flow](https://docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html) in the Amazon Bedrock User Guide.
|
|
462
466
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-lambdafunctionflownodeconfiguration.html}
|
|
463
467
|
*/
|
|
464
468
|
export type LambdaFunctionFlowNodeConfiguration = {
|
|
@@ -471,7 +475,7 @@ export type LambdaFunctionFlowNodeConfiguration = {
|
|
|
471
475
|
LambdaArn: string;
|
|
472
476
|
};
|
|
473
477
|
/**
|
|
474
|
-
* Contains configurations for a Lex node in the flow. You specify a Amazon Lex bot to invoke. This node takes an utterance as the input and returns as the output the intent identified by the Amazon Lex bot. For more information, see [Node types in
|
|
478
|
+
* Contains configurations for a Lex node in the flow. You specify a Amazon Lex bot to invoke. This node takes an utterance as the input and returns as the output the intent identified by the Amazon Lex bot. For more information, see [Node types in a flow](https://docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html) in the Amazon Bedrock User Guide.
|
|
475
479
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-lexflownodeconfiguration.html}
|
|
476
480
|
*/
|
|
477
481
|
export type LexFlowNodeConfiguration = {
|
|
@@ -491,7 +495,7 @@ export type LexFlowNodeConfiguration = {
|
|
|
491
495
|
LocaleId: string;
|
|
492
496
|
};
|
|
493
497
|
/**
|
|
494
|
-
* Contains configurations for a prompt node in the flow. You can use a prompt from Prompt management or you can define one in this node. If the prompt contains variables, the inputs into this node will fill in the variables. The output from this node is the response generated by the model. For more information, see [Node types in
|
|
498
|
+
* Contains configurations for a prompt node in the flow. You can use a prompt from Prompt management or you can define one in this node. If the prompt contains variables, the inputs into this node will fill in the variables. The output from this node is the response generated by the model. For more information, see [Node types in a flow](https://docs.aws.amazon.com/bedrock/latest/userguide/flows-nodes.html) in the Amazon Bedrock User Guide.
|
|
495
499
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-promptflownodeconfiguration.html}
|
|
496
500
|
*/
|
|
497
501
|
export type PromptFlowNodeConfiguration = {
|
|
@@ -10,6 +10,7 @@ export type BedrockFlowAlias = ResourceDefinitionWithAttributes<"AWS::Bedrock::F
|
|
|
10
10
|
*/
|
|
11
11
|
export type BedrockFlowAliasProps = {
|
|
12
12
|
/**
|
|
13
|
+
* The configuration that specifies how nodes in the flow are executed concurrently.
|
|
13
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-flowalias.html#cfn-bedrock-flowalias-concurrencyconfiguration}
|
|
14
15
|
*/
|
|
15
16
|
ConcurrencyConfiguration?: FlowAliasConcurrencyConfiguration | undefined;
|
|
@@ -90,17 +91,22 @@ export type BedrockFlowAliasAttribs = {
|
|
|
90
91
|
*/
|
|
91
92
|
export type ConcurrencyType = "Automatic" | "Manual";
|
|
92
93
|
/**
|
|
94
|
+
* Determines how multiple nodes in a flow can run in parallel. Running nodes concurrently can improve your flow's performance.
|
|
93
95
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowalias-flowaliasconcurrencyconfiguration.html}
|
|
94
96
|
*/
|
|
95
97
|
export type FlowAliasConcurrencyConfiguration = {
|
|
96
98
|
/**
|
|
97
|
-
*
|
|
99
|
+
* The maximum number of nodes that can be executed concurrently in the flow.
|
|
98
100
|
* @min 1
|
|
99
101
|
* @max 100
|
|
100
102
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowalias-flowaliasconcurrencyconfiguration.html#cfn-bedrock-flowalias-flowaliasconcurrencyconfiguration-maxconcurrency}
|
|
101
103
|
*/
|
|
102
104
|
MaxConcurrency?: number | undefined;
|
|
103
105
|
/**
|
|
106
|
+
* The type of concurrency to use for parallel node execution. Specify one of the following options:
|
|
107
|
+
*
|
|
108
|
+
* - `Automatic` - Amazon Bedrock determines which nodes can be executed in parallel based on the flow definition and its dependencies.
|
|
109
|
+
* - `Manual` - You specify which nodes can be executed in parallel.
|
|
104
110
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flowalias-flowaliasconcurrencyconfiguration.html#cfn-bedrock-flowalias-flowaliasconcurrencyconfiguration-type}
|
|
105
111
|
*/
|
|
106
112
|
Type: ConcurrencyType;
|
|
@@ -84,12 +84,10 @@ export type CloudFormationHookVersionAttribs = {
|
|
|
84
84
|
*/
|
|
85
85
|
VersionId: string;
|
|
86
86
|
/**
|
|
87
|
-
* The
|
|
87
|
+
* The visibility level that determines who can see and use this Hook in CloudFormation operations:
|
|
88
88
|
*
|
|
89
|
-
*
|
|
90
|
-
*
|
|
91
|
-
* - `PRIVATE` : The extension (Hook) is only visible and usable within the account in which it's registered. CloudFormation marks any resources you register as `PRIVATE` .
|
|
92
|
-
* - `PUBLIC` : The extension (Hook) is publicly visible and usable within any AWS account.
|
|
89
|
+
* - `PRIVATE` : The Hook is only visible and usable within the account where it was registered. CloudFormation automatically marks any Hooks you register as `PRIVATE` .
|
|
90
|
+
* - `PUBLIC` : The Hook is publicly visible and usable within any AWS account.
|
|
93
91
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-hookversion.html#cfn-cloudformation-hookversion-visibility}
|
|
94
92
|
*/
|
|
95
93
|
Visibility: "PUBLIC" | "PRIVATE";
|
|
@@ -82,12 +82,10 @@ export type CloudFormationModuleVersionAttribs = {
|
|
|
82
82
|
*/
|
|
83
83
|
VersionId: string;
|
|
84
84
|
/**
|
|
85
|
-
* The
|
|
85
|
+
* The visibility level that determines who can see and use this module in CloudFormation operations:
|
|
86
86
|
*
|
|
87
|
-
*
|
|
88
|
-
*
|
|
89
|
-
* - `PRIVATE` : The extension (module) is only visible and usable within the account in which it is registered. CloudFormation marks any extensions you register as `PRIVATE` .
|
|
90
|
-
* - `PUBLIC` : The extension (module) is publicly visible and usable within any AWS account.
|
|
87
|
+
* - `PRIVATE` : The module is only visible and usable within the account where it was registered. CloudFormation automatically marks any modules you register as `PRIVATE` .
|
|
88
|
+
* - `PUBLIC` : The module is publicly visible and usable within any AWS account.
|
|
91
89
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduleversion.html#cfn-cloudformation-moduleversion-visibility}
|
|
92
90
|
*/
|
|
93
91
|
Visibility: "PRIVATE";
|
|
@@ -82,7 +82,7 @@ export type CloudFormationResourceVersionAttribs = {
|
|
|
82
82
|
/**
|
|
83
83
|
* For resource type extensions, the provisioning behavior of the resource type. CloudFormation determines the provisioning type during registration, based on the types of handlers in the schema handler package submitted.
|
|
84
84
|
*
|
|
85
|
-
*
|
|
85
|
+
* Possible values:
|
|
86
86
|
*
|
|
87
87
|
* - `FULLY_MUTABLE` : The resource type includes an update handler to process updates to the type during stack update operations.
|
|
88
88
|
* - `IMMUTABLE` : The resource type doesn't include an update handler, so the type can't be updated and must instead be replaced during stack update operations.
|
|
@@ -107,12 +107,10 @@ export type CloudFormationResourceVersionAttribs = {
|
|
|
107
107
|
*/
|
|
108
108
|
VersionId: string;
|
|
109
109
|
/**
|
|
110
|
-
* The
|
|
110
|
+
* The visibility level that determines who can see and use this resource in CloudFormation operations:
|
|
111
111
|
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
* - `PRIVATE` : The extension (resource) is only visible and usable within the account in which it is registered. CloudFormation marks any extensions you register as `PRIVATE` .
|
|
115
|
-
* - `PUBLIC` : The extension (resource) is publicly visible and usable within any AWS account.
|
|
112
|
+
* - `PRIVATE` : The resource is only visible and usable within the account where it was registered. CloudFormation automatically marks any resources you register as `PRIVATE` .
|
|
113
|
+
* - `PUBLIC` : The resource is publicly visible and usable within any AWS account.
|
|
116
114
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-resourceversion.html#cfn-cloudformation-resourceversion-visibility}
|
|
117
115
|
*/
|
|
118
116
|
Visibility: "PUBLIC" | "PRIVATE";
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
* The `AWS::CloudFormation::Stack` resource nests a stack as a resource in a top-level template.
|
|
4
|
-
*
|
|
5
|
-
* For more information, see [Embed stacks within other stacks using nested stacks](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html) in the *AWS CloudFormation User Guide* .
|
|
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* .
|
|
6
4
|
*
|
|
7
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/UserGuide/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*` .
|
|
8
6
|
*
|
|
@@ -10,7 +8,7 @@ import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
|
10
8
|
*
|
|
11
9
|
* When you apply template changes to update a top-level stack, CloudFormation updates the top-level stack and initiates an update to its nested stacks. CloudFormation updates the resources of modified nested stacks, but doesn't update the resources of unmodified nested stacks.
|
|
12
10
|
*
|
|
13
|
-
*
|
|
11
|
+
* For stacks that contain IAM resources, you must acknowledge IAM capabilities. Also, make sure that you have cancel update stack permissions, which are required if an update rolls back. For more information about IAM and CloudFormation , see [Controlling access with AWS Identity and Access Management](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html) in the *AWS CloudFormation User Guide* .
|
|
14
12
|
*
|
|
15
13
|
* > A subset of `AWS::CloudFormation::Stack` resource type properties listed below are available to customers using CloudFormation , AWS CDK , and Cloud Control to configure.
|
|
16
14
|
* >
|
|
@@ -49,9 +47,7 @@ import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
|
49
47
|
*/
|
|
50
48
|
export type CloudFormationStack = ResourceDefinitionWithAttributes<"AWS::CloudFormation::Stack", CloudFormationStackProps, CloudFormationStackAttribs>;
|
|
51
49
|
/**
|
|
52
|
-
* The `AWS::CloudFormation::Stack` resource nests a stack as a resource in a top-level template.
|
|
53
|
-
*
|
|
54
|
-
* For more information, see [Embed stacks within other stacks using nested stacks](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html) in the *AWS CloudFormation User Guide* .
|
|
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* .
|
|
55
51
|
*
|
|
56
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/UserGuide/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*` .
|
|
57
53
|
*
|
|
@@ -59,7 +55,7 @@ export type CloudFormationStack = ResourceDefinitionWithAttributes<"AWS::CloudFo
|
|
|
59
55
|
*
|
|
60
56
|
* When you apply template changes to update a top-level stack, CloudFormation updates the top-level stack and initiates an update to its nested stacks. CloudFormation updates the resources of modified nested stacks, but doesn't update the resources of unmodified nested stacks.
|
|
61
57
|
*
|
|
62
|
-
*
|
|
58
|
+
* For stacks that contain IAM resources, you must acknowledge IAM capabilities. Also, make sure that you have cancel update stack permissions, which are required if an update rolls back. For more information about IAM and CloudFormation , see [Controlling access with AWS Identity and Access Management](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html) in the *AWS CloudFormation User Guide* .
|
|
63
59
|
*
|
|
64
60
|
* > A subset of `AWS::CloudFormation::Stack` resource type properties listed below are available to customers using CloudFormation , AWS CDK , and Cloud Control to configure.
|
|
65
61
|
* >
|
|
@@ -198,12 +194,12 @@ export type CloudFormationStackAttribs = {
|
|
|
198
194
|
*/
|
|
199
195
|
LastUpdateTime: string;
|
|
200
196
|
/**
|
|
201
|
-
* For nested stacks
|
|
197
|
+
* For nested stacks, returns the stack ID of the direct parent of this stack. For the first level of nested stacks, the root stack is also the parent stack.
|
|
202
198
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stack.html#cfn-cloudformation-stack-parentid}
|
|
203
199
|
*/
|
|
204
200
|
ParentId: string;
|
|
205
201
|
/**
|
|
206
|
-
* For nested stacks
|
|
202
|
+
* For nested stacks, returns the stack ID of the top-level stack to which the nested stack ultimately belongs.
|
|
207
203
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stack.html#cfn-cloudformation-stack-rootid}
|
|
208
204
|
*/
|
|
209
205
|
RootId: string;
|
|
@@ -25,7 +25,7 @@ export type CloudFormationStackSetProps = {
|
|
|
25
25
|
*/
|
|
26
26
|
AdministrationRoleARN?: string | undefined;
|
|
27
27
|
/**
|
|
28
|
-
* Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU). For more information, see [
|
|
28
|
+
* Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU). For more information, see [Enable or disable automatic deployments for StackSets in AWS Organizations](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-manage-auto-deployment.html) in the *AWS CloudFormation User Guide* .
|
|
29
29
|
*
|
|
30
30
|
* Required if the permissions model is `SERVICE_MANAGED` . (Not used with self-managed permissions.)
|
|
31
31
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stackset.html#cfn-cloudformation-stackset-autodeployment}
|
|
@@ -153,7 +153,7 @@ export type CloudFormationStackSetProps = {
|
|
|
153
153
|
*/
|
|
154
154
|
AdministrationRoleARN?: string | undefined;
|
|
155
155
|
/**
|
|
156
|
-
* Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU). For more information, see [
|
|
156
|
+
* Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU). For more information, see [Enable or disable automatic deployments for StackSets in AWS Organizations](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-manage-auto-deployment.html) in the *AWS CloudFormation User Guide* .
|
|
157
157
|
*
|
|
158
158
|
* Required if the permissions model is `SERVICE_MANAGED` . (Not used with self-managed permissions.)
|
|
159
159
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stackset.html#cfn-cloudformation-stackset-autodeployment}
|
|
@@ -82,7 +82,7 @@ export type CloudTrailTrailProps = {
|
|
|
82
82
|
*/
|
|
83
83
|
IsOrganizationTrail?: boolean | undefined;
|
|
84
84
|
/**
|
|
85
|
-
* Specifies the AWS KMS key ID to use to encrypt the logs delivered by CloudTrail. The value can be an alias name prefixed by "alias/", a fully specified ARN to an alias, a fully specified ARN to a key, or a globally unique identifier.
|
|
85
|
+
* Specifies the AWS KMS key ID to use to encrypt the logs and digest files delivered by CloudTrail. The value can be an alias name prefixed by "alias/", a fully specified ARN to an alias, a fully specified ARN to a key, or a globally unique identifier.
|
|
86
86
|
*
|
|
87
87
|
* CloudTrail also supports AWS KMS multi-Region keys. For more information about multi-Region keys, see [Using multi-Region keys](https://docs.aws.amazon.com/kms/latest/developerguide/multi-region-keys-overview.html) in the *AWS Key Management Service Developer Guide* .
|
|
88
88
|
*
|
|
@@ -9,6 +9,10 @@ export type CloudWatchInsightRule = ResourceDefinitionWithAttributes<"AWS::Cloud
|
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html}
|
|
10
10
|
*/
|
|
11
11
|
export type CloudWatchInsightRuleProps = {
|
|
12
|
+
/**
|
|
13
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-applyontransformedlogs}
|
|
14
|
+
*/
|
|
15
|
+
ApplyOnTransformedLogs?: boolean | undefined;
|
|
12
16
|
/**
|
|
13
17
|
* The definition of the rule, as a JSON object. For details about the syntax, see [Contributor Insights Rule Syntax](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/ContributorInsights-RuleSyntax.html) in the *Amazon CloudWatch User Guide* .
|
|
14
18
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html#cfn-cloudwatch-insightrule-rulebody}
|
|
@@ -334,6 +334,19 @@ export type CloudWatchLogsConfig = {
|
|
|
334
334
|
*/
|
|
335
335
|
StreamName?: string | undefined;
|
|
336
336
|
};
|
|
337
|
+
/**
|
|
338
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-dockerserver.html}
|
|
339
|
+
*/
|
|
340
|
+
export type DockerServer = {
|
|
341
|
+
/**
|
|
342
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-dockerserver.html#cfn-codebuild-project-dockerserver-computetype}
|
|
343
|
+
*/
|
|
344
|
+
ComputeType: string;
|
|
345
|
+
/**
|
|
346
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-dockerserver.html#cfn-codebuild-project-dockerserver-securitygroupids}
|
|
347
|
+
*/
|
|
348
|
+
SecurityGroupIds?: string[] | undefined;
|
|
349
|
+
};
|
|
337
350
|
/**
|
|
338
351
|
* `Environment` is a property of the [AWS::CodeBuild::Project](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html) resource that specifies the environment for an AWS CodeBuild project.
|
|
339
352
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html}
|
|
@@ -377,6 +390,10 @@ export type Environment = {
|
|
|
377
390
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype}
|
|
378
391
|
*/
|
|
379
392
|
ComputeType: string;
|
|
393
|
+
/**
|
|
394
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-dockerserver}
|
|
395
|
+
*/
|
|
396
|
+
DockerServer?: DockerServer | undefined;
|
|
380
397
|
/**
|
|
381
398
|
* A set of environment variables to make available to builds for this build project.
|
|
382
399
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-environmentvariables}
|
|
@@ -29,6 +29,7 @@ export type DataZoneEnvironmentBlueprintConfigurationProps = {
|
|
|
29
29
|
*/
|
|
30
30
|
EnvironmentBlueprintIdentifier: string;
|
|
31
31
|
/**
|
|
32
|
+
* The environment role permission boundary.
|
|
32
33
|
* @pattern ^arn:aws[^:]*:iam::(aws|\d{12}):policy/[\w+=,.@-]*$
|
|
33
34
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-environmentrolepermissionboundary}
|
|
34
35
|
*/
|
|
@@ -40,6 +41,7 @@ export type DataZoneEnvironmentBlueprintConfigurationProps = {
|
|
|
40
41
|
*/
|
|
41
42
|
ManageAccessRoleArn?: string | undefined;
|
|
42
43
|
/**
|
|
44
|
+
* The provisioning configuration of a blueprint.
|
|
43
45
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-provisioningconfigurations}
|
|
44
46
|
*/
|
|
45
47
|
ProvisioningConfigurations?: ProvisioningConfiguration[] | undefined;
|
|
@@ -22,7 +22,7 @@ export type DataZoneProjectProps = {
|
|
|
22
22
|
*/
|
|
23
23
|
DomainIdentifier: string;
|
|
24
24
|
/**
|
|
25
|
-
* The ID of the domain unit.
|
|
25
|
+
* The ID of the domain unit. This parameter is not required and if it is not specified, then the project is created at the root domain unit level.
|
|
26
26
|
* @pattern ^[a-z0-9_\-]+$
|
|
27
27
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-domainunitid}
|
|
28
28
|
*/
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::DataZone::ProjectProfile Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html}
|
|
5
|
+
*/
|
|
6
|
+
export type DataZoneProjectProfile = ResourceDefinitionWithAttributes<"AWS::DataZone::ProjectProfile", DataZoneProjectProfileProps, DataZoneProjectProfileAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Definition of AWS::DataZone::ProjectProfile Resource Type
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html}
|
|
10
|
+
*/
|
|
11
|
+
export type DataZoneProjectProfileProps = {
|
|
12
|
+
/**
|
|
13
|
+
* @maxLength 2048
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-description}
|
|
15
|
+
*/
|
|
16
|
+
Description?: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* @pattern ^dzd[_][a-zA-Z0-9_-]{1,36}$
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-domainidentifier}
|
|
20
|
+
*/
|
|
21
|
+
DomainIdentifier?: string | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* @minLength 1
|
|
24
|
+
* @maxLength 256
|
|
25
|
+
* @pattern ^[a-z0-9_\-]+$
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-domainunitidentifier}
|
|
27
|
+
*/
|
|
28
|
+
DomainUnitIdentifier?: string | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* @minLength 1
|
|
31
|
+
* @maxLength 64
|
|
32
|
+
* @pattern ^[\w -]+$
|
|
33
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-name}
|
|
34
|
+
*/
|
|
35
|
+
Name: string;
|
|
36
|
+
/**
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-status}
|
|
38
|
+
*/
|
|
39
|
+
Status?: Status | undefined;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#aws-resource-datazone-projectprofile-return-values}
|
|
43
|
+
*/
|
|
44
|
+
export type DataZoneProjectProfileAttribs = {
|
|
45
|
+
/**
|
|
46
|
+
* @format date-time
|
|
47
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-createdat}
|
|
48
|
+
*/
|
|
49
|
+
CreatedAt: string;
|
|
50
|
+
/**
|
|
51
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-createdby}
|
|
52
|
+
*/
|
|
53
|
+
CreatedBy: string;
|
|
54
|
+
/**
|
|
55
|
+
* @pattern ^dzd[_][a-zA-Z0-9_-]{1,36}$
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-domainid}
|
|
57
|
+
*/
|
|
58
|
+
DomainId: string;
|
|
59
|
+
/**
|
|
60
|
+
* @minLength 1
|
|
61
|
+
* @maxLength 256
|
|
62
|
+
* @pattern ^[a-z0-9_\-]+$
|
|
63
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-domainunitid}
|
|
64
|
+
*/
|
|
65
|
+
DomainUnitId: string;
|
|
66
|
+
/**
|
|
67
|
+
* @pattern ^[a-zA-Z0-9_-]{1,36}$
|
|
68
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-id}
|
|
69
|
+
*/
|
|
70
|
+
Id: string;
|
|
71
|
+
/**
|
|
72
|
+
* @pattern ^[a-zA-Z0-9_-]{1,36}$
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-identifier}
|
|
74
|
+
*/
|
|
75
|
+
Identifier: string;
|
|
76
|
+
/**
|
|
77
|
+
* @format date-time
|
|
78
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-lastupdatedat}
|
|
79
|
+
*/
|
|
80
|
+
LastUpdatedAt: string;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-status.html}
|
|
84
|
+
*/
|
|
85
|
+
export type Status = "ENABLED" | "DISABLED";
|
|
86
|
+
//# sourceMappingURL=aws-datazone-projectprofile.d.ts.map
|