@propulsionworks/cloudformation 0.1.31 → 0.1.32
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-applicationsignals-groupingconfiguration.d.ts +1 -1
- package/out/exports/resources.generated/aws-aps-anomalydetector.d.ts +3 -1
- package/out/exports/resources.generated/aws-billingconductor-billinggroup.d.ts +1 -1
- package/out/exports/resources.generated/aws-billingconductor-pricingplan.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +4 -0
- package/out/exports/resources.generated/aws-cloudfront-vpcorigin.d.ts +4 -0
- package/out/exports/resources.generated/aws-connect-emailaddress.d.ts +17 -0
- package/out/exports/resources.generated/aws-connect-evaluationform.d.ts +155 -0
- package/out/exports/resources.generated/aws-docdb-dbcluster.d.ts +7 -0
- package/out/exports/resources.generated/aws-ec2-capacitymanagerdataexport.d.ts +46 -0
- package/out/exports/resources.generated/aws-ec2-capacityreservation.d.ts +3 -3
- package/out/exports/resources.generated/aws-ec2-natgateway.d.ts +1 -0
- package/out/exports/resources.generated/aws-elasticloadbalancingv2-listenerrule.d.ts +76 -4
- package/out/exports/resources.generated/aws-emrserverless-application.d.ts +1 -1
- package/out/exports/resources.generated/aws-events-eventbuspolicy.d.ts +14 -11
- package/out/exports/resources.generated/aws-fsx-filesystem.d.ts +4 -0
- package/out/exports/resources.generated/aws-imagebuilder-image.d.ts +92 -0
- package/out/exports/resources.generated/aws-imagebuilder-imagepipeline.d.ts +5 -0
- package/out/exports/resources.generated/aws-lambda-permission.d.ts +1 -1
- package/out/exports/resources.generated/aws-mediapackagev2-originendpoint.d.ts +50 -2
- package/out/exports/resources.generated/aws-neptune-dbinstance.d.ts +5 -1
- package/out/exports/resources.generated/aws-observabilityadmin-organizationcentralizationrule.d.ts +29 -3
- package/out/exports/resources.generated/aws-observabilityadmin-organizationtelemetryrule.d.ts +20 -20
- package/out/exports/resources.generated/aws-observabilityadmin-telemetryrule.d.ts +20 -20
- package/out/exports/resources.generated/aws-organizations-account.d.ts +5 -0
- package/out/exports/resources.generated/aws-osis-pipeline.d.ts +22 -1
- package/out/exports/resources.generated/aws-route53-recordset.d.ts +1 -3
- package/out/exports/resources.generated/aws-route53-recordsetgroup.d.ts +1 -3
- package/out/exports/resources.generated/aws-route53resolver-resolverrule.d.ts +2 -0
- package/out/exports/resources.generated/aws-route53resolver-resolverruleassociation.d.ts +2 -0
- package/out/exports/resources.generated/aws-rtbfabric-link.d.ts +137 -0
- package/out/exports/resources.generated/aws-rtbfabric-requestergateway.d.ts +72 -0
- package/out/exports/resources.generated/aws-rtbfabric-respondergateway.d.ts +151 -0
- package/out/exports/resources.generated/aws-sagemaker-cluster.d.ts +1 -0
- package/out/exports/resources.generated/aws-synthetics-canary.d.ts +21 -0
- package/package.json +1 -1
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html}
|
|
4
|
+
*/
|
|
5
|
+
export type RTBFabricResponderGateway = ResourceDefinitionWithAttributes<"AWS::RTBFabric::ResponderGateway", RTBFabricResponderGatewayProps, RTBFabricResponderGatewayAttribs>;
|
|
6
|
+
/**
|
|
7
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html}
|
|
8
|
+
*/
|
|
9
|
+
export type RTBFabricResponderGatewayProps = {
|
|
10
|
+
/**
|
|
11
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-description}
|
|
12
|
+
*/
|
|
13
|
+
Description?: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-domainname}
|
|
16
|
+
*/
|
|
17
|
+
DomainName?: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-managedendpointconfiguration}
|
|
20
|
+
*/
|
|
21
|
+
ManagedEndpointConfiguration?: ManagedEndpointConfiguration | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-port}
|
|
24
|
+
*/
|
|
25
|
+
Port: number;
|
|
26
|
+
/**
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-protocol}
|
|
28
|
+
*/
|
|
29
|
+
Protocol: Protocol;
|
|
30
|
+
/**
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-securitygroupids}
|
|
32
|
+
*/
|
|
33
|
+
SecurityGroupIds: string[];
|
|
34
|
+
/**
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-subnetids}
|
|
36
|
+
*/
|
|
37
|
+
SubnetIds: string[];
|
|
38
|
+
/**
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-tags}
|
|
40
|
+
*/
|
|
41
|
+
Tags?: Tag[] | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-truststoreconfiguration}
|
|
44
|
+
*/
|
|
45
|
+
TrustStoreConfiguration?: TrustStoreConfiguration | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-vpcid}
|
|
48
|
+
*/
|
|
49
|
+
VpcId: string;
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#aws-resource-rtbfabric-respondergateway-return-values}
|
|
53
|
+
*/
|
|
54
|
+
export type RTBFabricResponderGatewayAttribs = {
|
|
55
|
+
/**
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-arn}
|
|
57
|
+
*/
|
|
58
|
+
Arn: string;
|
|
59
|
+
/**
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-createdtimestamp}
|
|
61
|
+
*/
|
|
62
|
+
CreatedTimestamp: string;
|
|
63
|
+
/**
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-gatewayid}
|
|
65
|
+
*/
|
|
66
|
+
GatewayId: string;
|
|
67
|
+
/**
|
|
68
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-respondergatewaystatus}
|
|
69
|
+
*/
|
|
70
|
+
ResponderGatewayStatus: ResponderGatewayStatus;
|
|
71
|
+
/**
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-respondergateway.html#cfn-rtbfabric-respondergateway-updatedtimestamp}
|
|
73
|
+
*/
|
|
74
|
+
UpdatedTimestamp: string;
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-autoscalinggroupsconfiguration.html}
|
|
78
|
+
*/
|
|
79
|
+
export type AutoScalingGroupsConfiguration = {
|
|
80
|
+
/**
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-autoscalinggroupsconfiguration.html#cfn-rtbfabric-respondergateway-autoscalinggroupsconfiguration-autoscalinggroupnamelist}
|
|
82
|
+
*/
|
|
83
|
+
AutoScalingGroupNameList: string[];
|
|
84
|
+
/**
|
|
85
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-autoscalinggroupsconfiguration.html#cfn-rtbfabric-respondergateway-autoscalinggroupsconfiguration-rolearn}
|
|
86
|
+
*/
|
|
87
|
+
RoleArn: string;
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-eksendpointsconfiguration.html}
|
|
91
|
+
*/
|
|
92
|
+
export type EksEndpointsConfiguration = {
|
|
93
|
+
/**
|
|
94
|
+
* @minLength 1
|
|
95
|
+
* @maxLength 2097152
|
|
96
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-eksendpointsconfiguration.html#cfn-rtbfabric-respondergateway-eksendpointsconfiguration-clusterapiservercacertificatechain}
|
|
97
|
+
*/
|
|
98
|
+
ClusterApiServerCaCertificateChain: string;
|
|
99
|
+
/**
|
|
100
|
+
* @minLength 0
|
|
101
|
+
* @maxLength 255
|
|
102
|
+
* @pattern ^(https|http)://(?:[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?)(?:\.(?:[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?))+$
|
|
103
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-eksendpointsconfiguration.html#cfn-rtbfabric-respondergateway-eksendpointsconfiguration-clusterapiserverendpointuri}
|
|
104
|
+
*/
|
|
105
|
+
ClusterApiServerEndpointUri: string;
|
|
106
|
+
/**
|
|
107
|
+
* @pattern ^[A-Za-z0-9][A-Za-z0-9-]{0,61}[A-Za-z0-9]$
|
|
108
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-eksendpointsconfiguration.html#cfn-rtbfabric-respondergateway-eksendpointsconfiguration-clustername}
|
|
109
|
+
*/
|
|
110
|
+
ClusterName: string;
|
|
111
|
+
/**
|
|
112
|
+
* @pattern ^[A-Za-z0-9][A-Za-z0-9-]{0,61}[A-Za-z0-9]$
|
|
113
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-eksendpointsconfiguration.html#cfn-rtbfabric-respondergateway-eksendpointsconfiguration-endpointsresourcename}
|
|
114
|
+
*/
|
|
115
|
+
EndpointsResourceName: string;
|
|
116
|
+
/**
|
|
117
|
+
* @pattern ^[A-Za-z0-9][A-Za-z0-9-]{0,61}[A-Za-z0-9]$
|
|
118
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-eksendpointsconfiguration.html#cfn-rtbfabric-respondergateway-eksendpointsconfiguration-endpointsresourcenamespace}
|
|
119
|
+
*/
|
|
120
|
+
EndpointsResourceNamespace: string;
|
|
121
|
+
/**
|
|
122
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-eksendpointsconfiguration.html#cfn-rtbfabric-respondergateway-eksendpointsconfiguration-rolearn}
|
|
123
|
+
*/
|
|
124
|
+
RoleArn: string;
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-managedendpointconfiguration.html}
|
|
128
|
+
*/
|
|
129
|
+
export type ManagedEndpointConfiguration = {
|
|
130
|
+
AutoScalingGroupsConfiguration: AutoScalingGroupsConfiguration;
|
|
131
|
+
} | {
|
|
132
|
+
EksEndpointsConfiguration: EksEndpointsConfiguration;
|
|
133
|
+
};
|
|
134
|
+
/**
|
|
135
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-protocol.html}
|
|
136
|
+
*/
|
|
137
|
+
export type Protocol = "HTTP" | "HTTPS";
|
|
138
|
+
/**
|
|
139
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-respondergatewaystatus.html}
|
|
140
|
+
*/
|
|
141
|
+
export type ResponderGatewayStatus = "PENDING_CREATION" | "ACTIVE" | "PENDING_DELETION" | "DELETED" | "ERROR" | "PENDING_UPDATE" | "ISOLATED" | "PENDING_ISOLATION" | "PENDING_RESTORATION";
|
|
142
|
+
/**
|
|
143
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-truststoreconfiguration.html}
|
|
144
|
+
*/
|
|
145
|
+
export type TrustStoreConfiguration = {
|
|
146
|
+
/**
|
|
147
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-respondergateway-truststoreconfiguration.html#cfn-rtbfabric-respondergateway-truststoreconfiguration-certificateauthoritycertificates}
|
|
148
|
+
*/
|
|
149
|
+
CertificateAuthorityCertificates: string[];
|
|
150
|
+
};
|
|
151
|
+
//# sourceMappingURL=aws-rtbfabric-respondergateway.d.ts.map
|
|
@@ -65,6 +65,7 @@ export type SageMakerClusterProps = {
|
|
|
65
65
|
*/
|
|
66
66
|
Tags?: Tag[] | undefined;
|
|
67
67
|
/**
|
|
68
|
+
* Configuration for tiered storage in the SageMaker HyperPod cluster.
|
|
68
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html#cfn-sagemaker-cluster-tieredstorageconfig}
|
|
69
70
|
*/
|
|
70
71
|
TieredStorageConfig?: TieredStorageConfig | undefined;
|
|
@@ -220,6 +220,9 @@ export type BrowserType = "CHROME" | "FIREFOX";
|
|
|
220
220
|
*/
|
|
221
221
|
export type Code = {
|
|
222
222
|
/**
|
|
223
|
+
* `BlueprintTypes` are a list of templates that enable simplified canary creation. You can create canaries for common monitoring scenarios by providing only a JSON configuration file instead of writing custom scripts. `multi-checks` is the only supported value.
|
|
224
|
+
*
|
|
225
|
+
* When you specify `BlueprintTypes` , the `Handler` field cannot be specified since the blueprint provides a pre-defined entry point.
|
|
223
226
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-blueprinttypes}
|
|
224
227
|
*/
|
|
225
228
|
BlueprintTypes?: string[] | undefined;
|
|
@@ -230,6 +233,8 @@ export type Code = {
|
|
|
230
233
|
Dependencies?: Dependency[] | undefined;
|
|
231
234
|
/**
|
|
232
235
|
* The entry point to use for the source code when running the canary. For canaries that use the `syn-python-selenium-1.0` runtime or a `syn-nodejs.puppeteer` runtime earlier than `syn-nodejs.puppeteer-3.4` , the handler must be specified as `*fileName* .handler` . For `syn-python-selenium-1.1` , `syn-nodejs.puppeteer-3.4` , and later runtimes, the handler can be specified as `*fileName* . *functionName*` , or you can specify a folder where canary scripts reside as `*folder* / *fileName* . *functionName*` .
|
|
236
|
+
*
|
|
237
|
+
* This field is required when you don't specify `BlueprintTypes` and is not allowed when you specify `BlueprintTypes` .
|
|
233
238
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler}
|
|
234
239
|
*/
|
|
235
240
|
Handler: string;
|
|
@@ -255,6 +260,9 @@ export type Code = {
|
|
|
255
260
|
Script?: string | undefined;
|
|
256
261
|
} | {
|
|
257
262
|
/**
|
|
263
|
+
* `BlueprintTypes` are a list of templates that enable simplified canary creation. You can create canaries for common monitoring scenarios by providing only a JSON configuration file instead of writing custom scripts. `multi-checks` is the only supported value.
|
|
264
|
+
*
|
|
265
|
+
* When you specify `BlueprintTypes` , the `Handler` field cannot be specified since the blueprint provides a pre-defined entry point.
|
|
258
266
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-blueprinttypes}
|
|
259
267
|
*/
|
|
260
268
|
BlueprintTypes: string[];
|
|
@@ -265,6 +273,8 @@ export type Code = {
|
|
|
265
273
|
Dependencies?: Dependency[] | undefined;
|
|
266
274
|
/**
|
|
267
275
|
* The entry point to use for the source code when running the canary. For canaries that use the `syn-python-selenium-1.0` runtime or a `syn-nodejs.puppeteer` runtime earlier than `syn-nodejs.puppeteer-3.4` , the handler must be specified as `*fileName* .handler` . For `syn-python-selenium-1.1` , `syn-nodejs.puppeteer-3.4` , and later runtimes, the handler can be specified as `*fileName* . *functionName*` , or you can specify a folder where canary scripts reside as `*folder* / *fileName* . *functionName*` .
|
|
276
|
+
*
|
|
277
|
+
* This field is required when you don't specify `BlueprintTypes` and is not allowed when you specify `BlueprintTypes` .
|
|
268
278
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler}
|
|
269
279
|
*/
|
|
270
280
|
Handler?: string | undefined;
|
|
@@ -290,6 +300,9 @@ export type Code = {
|
|
|
290
300
|
Script?: string | undefined;
|
|
291
301
|
} | {
|
|
292
302
|
/**
|
|
303
|
+
* `BlueprintTypes` are a list of templates that enable simplified canary creation. You can create canaries for common monitoring scenarios by providing only a JSON configuration file instead of writing custom scripts. `multi-checks` is the only supported value.
|
|
304
|
+
*
|
|
305
|
+
* When you specify `BlueprintTypes` , the `Handler` field cannot be specified since the blueprint provides a pre-defined entry point.
|
|
293
306
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-blueprinttypes}
|
|
294
307
|
*/
|
|
295
308
|
BlueprintTypes?: string[] | undefined;
|
|
@@ -300,6 +313,8 @@ export type Code = {
|
|
|
300
313
|
Dependencies?: Dependency[] | undefined;
|
|
301
314
|
/**
|
|
302
315
|
* The entry point to use for the source code when running the canary. For canaries that use the `syn-python-selenium-1.0` runtime or a `syn-nodejs.puppeteer` runtime earlier than `syn-nodejs.puppeteer-3.4` , the handler must be specified as `*fileName* .handler` . For `syn-python-selenium-1.1` , `syn-nodejs.puppeteer-3.4` , and later runtimes, the handler can be specified as `*fileName* . *functionName*` , or you can specify a folder where canary scripts reside as `*folder* / *fileName* . *functionName*` .
|
|
316
|
+
*
|
|
317
|
+
* This field is required when you don't specify `BlueprintTypes` and is not allowed when you specify `BlueprintTypes` .
|
|
303
318
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler}
|
|
304
319
|
*/
|
|
305
320
|
Handler: string;
|
|
@@ -325,6 +340,9 @@ export type Code = {
|
|
|
325
340
|
Script: string;
|
|
326
341
|
} | {
|
|
327
342
|
/**
|
|
343
|
+
* `BlueprintTypes` are a list of templates that enable simplified canary creation. You can create canaries for common monitoring scenarios by providing only a JSON configuration file instead of writing custom scripts. `multi-checks` is the only supported value.
|
|
344
|
+
*
|
|
345
|
+
* When you specify `BlueprintTypes` , the `Handler` field cannot be specified since the blueprint provides a pre-defined entry point.
|
|
328
346
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-blueprinttypes}
|
|
329
347
|
*/
|
|
330
348
|
BlueprintTypes: string[];
|
|
@@ -335,6 +353,8 @@ export type Code = {
|
|
|
335
353
|
Dependencies?: Dependency[] | undefined;
|
|
336
354
|
/**
|
|
337
355
|
* The entry point to use for the source code when running the canary. For canaries that use the `syn-python-selenium-1.0` runtime or a `syn-nodejs.puppeteer` runtime earlier than `syn-nodejs.puppeteer-3.4` , the handler must be specified as `*fileName* .handler` . For `syn-python-selenium-1.1` , `syn-nodejs.puppeteer-3.4` , and later runtimes, the handler can be specified as `*fileName* . *functionName*` , or you can specify a folder where canary scripts reside as `*folder* / *fileName* . *functionName*` .
|
|
356
|
+
*
|
|
357
|
+
* This field is required when you don't specify `BlueprintTypes` and is not allowed when you specify `BlueprintTypes` .
|
|
338
358
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-handler}
|
|
339
359
|
*/
|
|
340
360
|
Handler?: string | undefined;
|
|
@@ -524,6 +544,7 @@ export type VisualReference = {
|
|
|
524
544
|
*/
|
|
525
545
|
BaseScreenshots?: BaseScreenshot[] | undefined;
|
|
526
546
|
/**
|
|
547
|
+
* The browser type associated with this visual reference configuration. Valid values are `CHROME` and `FIREFOX` .
|
|
527
548
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-visualreference.html#cfn-synthetics-canary-visualreference-browsertype}
|
|
528
549
|
*/
|
|
529
550
|
BrowserType?: BrowserType | undefined;
|