@propulsionworks/cloudformation 0.1.23 → 0.1.24
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-apprunner-service.d.ts +1 -3
- package/out/exports/resources.generated/aws-apprunner-vpcconnector.d.ts +1 -1
- package/out/exports/resources.generated/aws-b2bi-capability.d.ts +3 -0
- package/out/exports/resources.generated/aws-b2bi-partnership.d.ts +60 -1
- package/out/exports/resources.generated/aws-b2bi-profile.d.ts +1 -0
- package/out/exports/resources.generated/aws-b2bi-transformer.d.ts +38 -0
- package/out/exports/resources.generated/aws-batch-computeenvironment.d.ts +7 -0
- package/out/exports/resources.generated/aws-batch-jobdefinition.d.ts +1 -1
- package/out/exports/resources.generated/aws-batch-schedulingpolicy.d.ts +1 -1
- package/out/exports/resources.generated/aws-bedrock-automatedreasoningpolicy.d.ts +181 -0
- package/out/exports/resources.generated/aws-bedrock-automatedreasoningpolicyversion.d.ts +56 -0
- package/out/exports/resources.generated/aws-budgets-budget.d.ts +4 -0
- package/out/exports/resources.generated/aws-cloudformation-lambdahook.d.ts +1 -1
- package/out/exports/resources.generated/aws-cognito-userpoolclient.d.ts +2 -2
- package/out/exports/resources.generated/aws-cognito-userpoolriskconfigurationattachment.d.ts +1 -1
- package/out/exports/resources.generated/aws-connect-predefinedattribute.d.ts +19 -0
- package/out/exports/resources.generated/aws-datazone-policygrant.d.ts +46 -2
- package/out/exports/resources.generated/aws-ec2-clientvpnendpoint.d.ts +1 -1
- package/out/exports/resources.generated/aws-ec2-vpcblockpublicaccessoptions.d.ts +5 -0
- package/out/exports/resources.generated/aws-ec2-vpnconnection.d.ts +1 -0
- package/out/exports/resources.generated/aws-ecs-cluster.d.ts +26 -2
- package/out/exports/resources.generated/aws-ecs-clustercapacityproviderassociations.d.ts +26 -2
- package/out/exports/resources.generated/aws-ecs-service.d.ts +47 -3
- package/out/exports/resources.generated/aws-ecs-taskdefinition.d.ts +1 -1
- package/out/exports/resources.generated/aws-ecs-taskset.d.ts +26 -2
- package/out/exports/resources.generated/aws-eks-addon.d.ts +1 -1
- package/out/exports/resources.generated/aws-elasticloadbalancingv2-truststore.d.ts +3 -3
- package/out/exports/resources.generated/aws-glue-crawler.d.ts +14 -0
- package/out/exports/resources.generated/aws-iot-encryptionconfiguration.d.ts +7 -2
- package/out/exports/resources.generated/aws-iotsitewise-assetmodel.d.ts +8 -7
- package/out/exports/resources.generated/aws-iotsitewise-computationmodel.d.ts +23 -16
- package/out/exports/resources.generated/aws-iotsitewise-dataset.d.ts +11 -6
- package/out/exports/resources.generated/aws-ivs-stage.d.ts +4 -2
- package/out/exports/resources.generated/aws-kinesisanalyticsv2-application.d.ts +6 -6
- package/out/exports/resources.generated/aws-lambda-codesigningconfig.d.ts +1 -1
- package/out/exports/resources.generated/aws-lambda-eventsourcemapping.d.ts +5 -5
- package/out/exports/resources.generated/aws-lambda-version.d.ts +3 -3
- package/out/exports/resources.generated/aws-omics-workflow.d.ts +82 -0
- package/out/exports/resources.generated/aws-qbusiness-datasource.d.ts +1 -1
- package/out/exports/resources.generated/aws-sagemaker-endpointconfig.d.ts +17 -0
- package/out/exports/resources.generated/aws-synthetics-canary.d.ts +27 -0
- package/out/exports/resources.generated/aws-transfer-certificate.d.ts +24 -2
- package/out/exports/resources.generated/aws-transfer-server.d.ts +2 -0
- package/package.json +1 -1
|
@@ -83,7 +83,14 @@ export type ECSClusterAttribs = {
|
|
|
83
83
|
*/
|
|
84
84
|
export type CapacityProviderStrategyItem = {
|
|
85
85
|
/**
|
|
86
|
-
* The *base* value designates how many tasks, at a minimum, to run on the specified capacity provider. Only one capacity provider in a capacity provider strategy can have a *base* defined. If no value is specified, the default value of `0` is used.
|
|
86
|
+
* The *base* value designates how many tasks, at a minimum, to run on the specified capacity provider for each service. Only one capacity provider in a capacity provider strategy can have a *base* defined. If no value is specified, the default value of `0` is used.
|
|
87
|
+
*
|
|
88
|
+
* Base value characteristics:
|
|
89
|
+
*
|
|
90
|
+
* - Only one capacity provider in a strategy can have a base defined
|
|
91
|
+
* - Default value is `0` if not specified
|
|
92
|
+
* - Valid range: 0 to 100,000
|
|
93
|
+
* - Base requirements are satisfied first before weight distribution
|
|
87
94
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-capacityproviderstrategyitem.html#cfn-ecs-cluster-capacityproviderstrategyitem-base}
|
|
88
95
|
*/
|
|
89
96
|
Base?: number | undefined;
|
|
@@ -97,7 +104,24 @@ export type CapacityProviderStrategyItem = {
|
|
|
97
104
|
*
|
|
98
105
|
* If no `weight` value is specified, the default value of `0` is used. When multiple capacity providers are specified within a capacity provider strategy, at least one of the capacity providers must have a weight value greater than zero and any capacity providers with a weight of `0` can't be used to place tasks. If you specify multiple capacity providers in a strategy that all have a weight of `0` , any `RunTask` or `CreateService` actions using the capacity provider strategy will fail.
|
|
99
106
|
*
|
|
100
|
-
*
|
|
107
|
+
* Weight value characteristics:
|
|
108
|
+
*
|
|
109
|
+
* - Weight is considered after the base value is satisfied
|
|
110
|
+
* - Default value is `0` if not specified
|
|
111
|
+
* - Valid range: 0 to 1,000
|
|
112
|
+
* - At least one capacity provider must have a weight greater than zero
|
|
113
|
+
* - Capacity providers with weight of `0` cannot place tasks
|
|
114
|
+
*
|
|
115
|
+
* Task distribution logic:
|
|
116
|
+
*
|
|
117
|
+
* - Base satisfaction: The minimum number of tasks specified by the base value are placed on that capacity provider
|
|
118
|
+
* - Weight distribution: After base requirements are met, additional tasks are distributed according to weight ratios
|
|
119
|
+
*
|
|
120
|
+
* Examples:
|
|
121
|
+
*
|
|
122
|
+
* Equal Distribution: Two capacity providers both with weight `1` will split tasks evenly after base requirements are met.
|
|
123
|
+
*
|
|
124
|
+
* Weighted Distribution: If capacityProviderA has weight `1` and capacityProviderB has weight `4` , then for every 1 task on A, 4 tasks will run on B.
|
|
101
125
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-capacityproviderstrategyitem.html#cfn-ecs-cluster-capacityproviderstrategyitem-weight}
|
|
102
126
|
*/
|
|
103
127
|
Weight?: number | undefined;
|
|
@@ -36,7 +36,14 @@ export type CapacityProvider = ("FARGATE" | "FARGATE_SPOT") | string;
|
|
|
36
36
|
*/
|
|
37
37
|
export type CapacityProviderStrategy = {
|
|
38
38
|
/**
|
|
39
|
-
* The *base* value designates how many tasks, at a minimum, to run on the specified capacity provider. Only one capacity provider in a capacity provider strategy can have a *base* defined. If no value is specified, the default value of `0` is used.
|
|
39
|
+
* The *base* value designates how many tasks, at a minimum, to run on the specified capacity provider for each service. Only one capacity provider in a capacity provider strategy can have a *base* defined. If no value is specified, the default value of `0` is used.
|
|
40
|
+
*
|
|
41
|
+
* Base value characteristics:
|
|
42
|
+
*
|
|
43
|
+
* - Only one capacity provider in a strategy can have a base defined
|
|
44
|
+
* - Default value is `0` if not specified
|
|
45
|
+
* - Valid range: 0 to 100,000
|
|
46
|
+
* - Base requirements are satisfied first before weight distribution
|
|
40
47
|
* @min 0
|
|
41
48
|
* @max 100000
|
|
42
49
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-clustercapacityproviderassociations-capacityproviderstrategy.html#cfn-ecs-clustercapacityproviderassociations-capacityproviderstrategy-base}
|
|
@@ -52,7 +59,24 @@ export type CapacityProviderStrategy = {
|
|
|
52
59
|
*
|
|
53
60
|
* If no `weight` value is specified, the default value of `0` is used. When multiple capacity providers are specified within a capacity provider strategy, at least one of the capacity providers must have a weight value greater than zero and any capacity providers with a weight of `0` can't be used to place tasks. If you specify multiple capacity providers in a strategy that all have a weight of `0` , any `RunTask` or `CreateService` actions using the capacity provider strategy will fail.
|
|
54
61
|
*
|
|
55
|
-
*
|
|
62
|
+
* Weight value characteristics:
|
|
63
|
+
*
|
|
64
|
+
* - Weight is considered after the base value is satisfied
|
|
65
|
+
* - Default value is `0` if not specified
|
|
66
|
+
* - Valid range: 0 to 1,000
|
|
67
|
+
* - At least one capacity provider must have a weight greater than zero
|
|
68
|
+
* - Capacity providers with weight of `0` cannot place tasks
|
|
69
|
+
*
|
|
70
|
+
* Task distribution logic:
|
|
71
|
+
*
|
|
72
|
+
* - Base satisfaction: The minimum number of tasks specified by the base value are placed on that capacity provider
|
|
73
|
+
* - Weight distribution: After base requirements are met, additional tasks are distributed according to weight ratios
|
|
74
|
+
*
|
|
75
|
+
* Examples:
|
|
76
|
+
*
|
|
77
|
+
* Equal Distribution: Two capacity providers both with weight `1` will split tasks evenly after base requirements are met.
|
|
78
|
+
*
|
|
79
|
+
* Weighted Distribution: If capacityProviderA has weight `1` and capacityProviderB has weight `4` , then for every 1 task on A, 4 tasks will run on B.
|
|
56
80
|
* @min 0
|
|
57
81
|
* @max 1000
|
|
58
82
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-clustercapacityproviderassociations-capacityproviderstrategy.html#cfn-ecs-clustercapacityproviderassociations-capacityproviderstrategy-weight}
|
|
@@ -126,6 +126,11 @@ export type ECSServiceProps = {
|
|
|
126
126
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-enableexecutecommand}
|
|
127
127
|
*/
|
|
128
128
|
EnableExecuteCommand?: boolean | undefined;
|
|
129
|
+
/**
|
|
130
|
+
* Determines whether to force a new deployment of the service. By default, deployments aren't forced. You can use this option to start a new deployment with no service definition changes. For example, you can update a service's tasks to use a newer Docker image with the same image/tag combination ( `my_image:latest` ) or to roll Fargate tasks onto a newer platform version.
|
|
131
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-forcenewdeployment}
|
|
132
|
+
*/
|
|
133
|
+
ForceNewDeployment?: ForceNewDeployment | undefined;
|
|
129
134
|
/**
|
|
130
135
|
* The period of time, in seconds, that the Amazon ECS service scheduler ignores unhealthy Elastic Load Balancing, VPC Lattice, and container health checks after a task has first started. If you don't specify a health check grace period value, the default value of `0` is used. If you don't use any of the health checks, then `healthCheckGracePeriodSeconds` is unused.
|
|
131
136
|
*
|
|
@@ -341,7 +346,14 @@ export type AwsVpcConfiguration = {
|
|
|
341
346
|
*/
|
|
342
347
|
export type CapacityProviderStrategyItem = {
|
|
343
348
|
/**
|
|
344
|
-
* The *base* value designates how many tasks, at a minimum, to run on the specified capacity provider. Only one capacity provider in a capacity provider strategy can have a *base* defined. If no value is specified, the default value of `0` is used.
|
|
349
|
+
* The *base* value designates how many tasks, at a minimum, to run on the specified capacity provider for each service. Only one capacity provider in a capacity provider strategy can have a *base* defined. If no value is specified, the default value of `0` is used.
|
|
350
|
+
*
|
|
351
|
+
* Base value characteristics:
|
|
352
|
+
*
|
|
353
|
+
* - Only one capacity provider in a strategy can have a base defined
|
|
354
|
+
* - Default value is `0` if not specified
|
|
355
|
+
* - Valid range: 0 to 100,000
|
|
356
|
+
* - Base requirements are satisfied first before weight distribution
|
|
345
357
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-capacityproviderstrategyitem.html#cfn-ecs-service-capacityproviderstrategyitem-base}
|
|
346
358
|
*/
|
|
347
359
|
Base?: number | undefined;
|
|
@@ -355,7 +367,24 @@ export type CapacityProviderStrategyItem = {
|
|
|
355
367
|
*
|
|
356
368
|
* If no `weight` value is specified, the default value of `0` is used. When multiple capacity providers are specified within a capacity provider strategy, at least one of the capacity providers must have a weight value greater than zero and any capacity providers with a weight of `0` can't be used to place tasks. If you specify multiple capacity providers in a strategy that all have a weight of `0` , any `RunTask` or `CreateService` actions using the capacity provider strategy will fail.
|
|
357
369
|
*
|
|
358
|
-
*
|
|
370
|
+
* Weight value characteristics:
|
|
371
|
+
*
|
|
372
|
+
* - Weight is considered after the base value is satisfied
|
|
373
|
+
* - Default value is `0` if not specified
|
|
374
|
+
* - Valid range: 0 to 1,000
|
|
375
|
+
* - At least one capacity provider must have a weight greater than zero
|
|
376
|
+
* - Capacity providers with weight of `0` cannot place tasks
|
|
377
|
+
*
|
|
378
|
+
* Task distribution logic:
|
|
379
|
+
*
|
|
380
|
+
* - Base satisfaction: The minimum number of tasks specified by the base value are placed on that capacity provider
|
|
381
|
+
* - Weight distribution: After base requirements are met, additional tasks are distributed according to weight ratios
|
|
382
|
+
*
|
|
383
|
+
* Examples:
|
|
384
|
+
*
|
|
385
|
+
* Equal Distribution: Two capacity providers both with weight `1` will split tasks evenly after base requirements are met.
|
|
386
|
+
*
|
|
387
|
+
* Weighted Distribution: If capacityProviderA has weight `1` and capacityProviderB has weight `4` , then for every 1 task on A, 4 tasks will run on B.
|
|
359
388
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-capacityproviderstrategyitem.html#cfn-ecs-service-capacityproviderstrategyitem-weight}
|
|
360
389
|
*/
|
|
361
390
|
Weight?: number | undefined;
|
|
@@ -632,6 +661,21 @@ export type EBSTagSpecification = {
|
|
|
632
661
|
*/
|
|
633
662
|
Tags?: Tag[] | undefined;
|
|
634
663
|
};
|
|
664
|
+
/**
|
|
665
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-forcenewdeployment.html}
|
|
666
|
+
*/
|
|
667
|
+
export type ForceNewDeployment = {
|
|
668
|
+
/**
|
|
669
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-forcenewdeployment.html#cfn-ecs-service-forcenewdeployment-enableforcenewdeployment}
|
|
670
|
+
*/
|
|
671
|
+
EnableForceNewDeployment: boolean;
|
|
672
|
+
/**
|
|
673
|
+
* @minLength 1
|
|
674
|
+
* @maxLength 255
|
|
675
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-forcenewdeployment.html#cfn-ecs-service-forcenewdeployment-forcenewdeploymentnonce}
|
|
676
|
+
*/
|
|
677
|
+
ForceNewDeploymentNonce?: string | undefined;
|
|
678
|
+
};
|
|
635
679
|
/**
|
|
636
680
|
* The `LoadBalancer` property specifies details on a load balancer that is used with a service.
|
|
637
681
|
*
|
|
@@ -780,7 +824,7 @@ export type LogConfiguration = {
|
|
|
780
824
|
* > - Set the `defaultLogDriverMode` account setting to `blocking` .
|
|
781
825
|
* - **max-buffer-size** - Required: No
|
|
782
826
|
*
|
|
783
|
-
* Default value: `
|
|
827
|
+
* Default value: `10m`
|
|
784
828
|
*
|
|
785
829
|
* When `non-blocking` mode is used, the `max-buffer-size` log option controls the size of the buffer that's used for intermediate message storage. Make sure to specify an adequate buffer size based on your application. When the buffer fills up, further logs cannot be stored. Logs that cannot be stored are lost.
|
|
786
830
|
*
|
|
@@ -1088,7 +1088,7 @@ export type LogConfiguration = {
|
|
|
1088
1088
|
* > - Set the `defaultLogDriverMode` account setting to `blocking` .
|
|
1089
1089
|
* - **max-buffer-size** - Required: No
|
|
1090
1090
|
*
|
|
1091
|
-
* Default value: `
|
|
1091
|
+
* Default value: `10m`
|
|
1092
1092
|
*
|
|
1093
1093
|
* When `non-blocking` mode is used, the `max-buffer-size` log option controls the size of the buffer that's used for intermediate message storage. Make sure to specify an adequate buffer size based on your application. When the buffer fills up, further logs cannot be stored. Logs that cannot be stored are lost.
|
|
1094
1094
|
*
|
|
@@ -146,7 +146,14 @@ export type AwsVpcConfiguration = {
|
|
|
146
146
|
*/
|
|
147
147
|
export type CapacityProviderStrategyItem = {
|
|
148
148
|
/**
|
|
149
|
-
* The *base* value designates how many tasks, at a minimum, to run on the specified capacity provider. Only one capacity provider in a capacity provider strategy can have a *base* defined. If no value is specified, the default value of `0` is used.
|
|
149
|
+
* The *base* value designates how many tasks, at a minimum, to run on the specified capacity provider for each service. Only one capacity provider in a capacity provider strategy can have a *base* defined. If no value is specified, the default value of `0` is used.
|
|
150
|
+
*
|
|
151
|
+
* Base value characteristics:
|
|
152
|
+
*
|
|
153
|
+
* - Only one capacity provider in a strategy can have a base defined
|
|
154
|
+
* - Default value is `0` if not specified
|
|
155
|
+
* - Valid range: 0 to 100,000
|
|
156
|
+
* - Base requirements are satisfied first before weight distribution
|
|
150
157
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-capacityproviderstrategyitem.html#cfn-ecs-taskset-capacityproviderstrategyitem-base}
|
|
151
158
|
*/
|
|
152
159
|
Base?: number | undefined;
|
|
@@ -160,7 +167,24 @@ export type CapacityProviderStrategyItem = {
|
|
|
160
167
|
*
|
|
161
168
|
* If no `weight` value is specified, the default value of `0` is used. When multiple capacity providers are specified within a capacity provider strategy, at least one of the capacity providers must have a weight value greater than zero and any capacity providers with a weight of `0` can't be used to place tasks. If you specify multiple capacity providers in a strategy that all have a weight of `0` , any `RunTask` or `CreateService` actions using the capacity provider strategy will fail.
|
|
162
169
|
*
|
|
163
|
-
*
|
|
170
|
+
* Weight value characteristics:
|
|
171
|
+
*
|
|
172
|
+
* - Weight is considered after the base value is satisfied
|
|
173
|
+
* - Default value is `0` if not specified
|
|
174
|
+
* - Valid range: 0 to 1,000
|
|
175
|
+
* - At least one capacity provider must have a weight greater than zero
|
|
176
|
+
* - Capacity providers with weight of `0` cannot place tasks
|
|
177
|
+
*
|
|
178
|
+
* Task distribution logic:
|
|
179
|
+
*
|
|
180
|
+
* - Base satisfaction: The minimum number of tasks specified by the base value are placed on that capacity provider
|
|
181
|
+
* - Weight distribution: After base requirements are met, additional tasks are distributed according to weight ratios
|
|
182
|
+
*
|
|
183
|
+
* Examples:
|
|
184
|
+
*
|
|
185
|
+
* Equal Distribution: Two capacity providers both with weight `1` will split tasks evenly after base requirements are met.
|
|
186
|
+
*
|
|
187
|
+
* Weighted Distribution: If capacityProviderA has weight `1` and capacityProviderB has weight `4` , then for every 1 task on A, 4 tasks will run on B.
|
|
164
188
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-capacityproviderstrategyitem.html#cfn-ecs-taskset-capacityproviderstrategyitem-weight}
|
|
165
189
|
*/
|
|
166
190
|
Weight?: number | undefined;
|
|
@@ -38,7 +38,7 @@ export type EKSAddonProps = {
|
|
|
38
38
|
*/
|
|
39
39
|
ConfigurationValues?: string | undefined;
|
|
40
40
|
/**
|
|
41
|
-
* The
|
|
41
|
+
* The namespace configuration for the addon. This specifies the Kubernetes namespace where the addon is installed.
|
|
42
42
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-addon.html#cfn-eks-addon-namespaceconfig}
|
|
43
43
|
*/
|
|
44
44
|
NamespaceConfig?: {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
* Creates a trust store. You must specify `CaCertificatesBundleS3Bucket` and `CaCertificatesBundleS3Key` .
|
|
3
|
+
* Creates a trust store. You must specify `CaCertificatesBundleS3Bucket` and `CaCertificatesBundleS3Key` . When you create a trust store, you must specify `Name` .
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-truststore.html}
|
|
5
5
|
*/
|
|
6
6
|
export type ElasticLoadBalancingV2TrustStore = ResourceDefinitionWithAttributes<"AWS::ElasticLoadBalancingV2::TrustStore", ElasticLoadBalancingV2TrustStoreProps, ElasticLoadBalancingV2TrustStoreAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
* Creates a trust store. You must specify `CaCertificatesBundleS3Bucket` and `CaCertificatesBundleS3Key` .
|
|
8
|
+
* Creates a trust store. You must specify `CaCertificatesBundleS3Bucket` and `CaCertificatesBundleS3Key` . When you create a trust store, you must specify `Name` .
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-truststore.html}
|
|
10
10
|
*/
|
|
11
11
|
export type ElasticLoadBalancingV2TrustStoreProps = {
|
|
@@ -45,7 +45,7 @@ export type ElasticLoadBalancingV2TrustStoreAttribs = {
|
|
|
45
45
|
*/
|
|
46
46
|
NumberOfCaCertificates: number;
|
|
47
47
|
/**
|
|
48
|
-
* The
|
|
48
|
+
* The status of the trust store. The possible values are `CREATING` and `ACTIVE` .
|
|
49
49
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-truststore.html#cfn-elasticloadbalancingv2-truststore-status}
|
|
50
50
|
*/
|
|
51
51
|
Status: string;
|
|
@@ -149,6 +149,20 @@ export type DynamoDBTarget = {
|
|
|
149
149
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-dynamodbtarget.html#cfn-glue-crawler-dynamodbtarget-path}
|
|
150
150
|
*/
|
|
151
151
|
Path?: string | undefined;
|
|
152
|
+
/**
|
|
153
|
+
* Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table.
|
|
154
|
+
*
|
|
155
|
+
* A value of `true` means to scan all records, while a value of `false` means to sample the records. If no value is specified, the value defaults to `true` .
|
|
156
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-dynamodbtarget.html#cfn-glue-crawler-dynamodbtarget-scanall}
|
|
157
|
+
*/
|
|
158
|
+
ScanAll?: boolean | undefined;
|
|
159
|
+
/**
|
|
160
|
+
* The percentage of the configured read capacity units to use by the AWS Glue crawler. Read capacity units is a term defined by DynamoDB, and is a numeric value that acts as rate limiter for the number of reads that can be performed on that table per second.
|
|
161
|
+
*
|
|
162
|
+
* The valid values are null or a value between 0.1 to 1.5. A null value is used when user does not provide a value, and defaults to 0.5 of the configured Read Capacity Unit (for provisioned tables), or 0.25 of the max configured Read Capacity Unit (for tables using on-demand mode).
|
|
163
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-dynamodbtarget.html#cfn-glue-crawler-dynamodbtarget-scanrate}
|
|
164
|
+
*/
|
|
165
|
+
ScanRate?: number | undefined;
|
|
152
166
|
};
|
|
153
167
|
/**
|
|
154
168
|
* Specifies an Apache Hudi data source.
|
|
@@ -1,25 +1,28 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Retrieves the encryption configuration for resources and data of your AWS account in AWS IoT Core . For more information, see [Data encryption at rest](https://docs.aws.amazon.com/iot/latest/developerguide/encryption-at-rest.html) in the *AWS IoT Core Developer Guide* .
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html}
|
|
5
5
|
*/
|
|
6
6
|
export type IoTEncryptionConfiguration = ResourceDefinitionWithAttributes<"AWS::IoT::EncryptionConfiguration", IoTEncryptionConfigurationProps, IoTEncryptionConfigurationAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Retrieves the encryption configuration for resources and data of your AWS account in AWS IoT Core . For more information, see [Data encryption at rest](https://docs.aws.amazon.com/iot/latest/developerguide/encryption-at-rest.html) in the *AWS IoT Core Developer Guide* .
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html}
|
|
10
10
|
*/
|
|
11
11
|
export type IoTEncryptionConfigurationProps = {
|
|
12
12
|
/**
|
|
13
|
+
* The type of the KMS key.
|
|
13
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html#cfn-iot-encryptionconfiguration-encryptiontype}
|
|
14
15
|
*/
|
|
15
16
|
EncryptionType: "CUSTOMER_MANAGED_KMS_KEY" | "AWS_OWNED_KMS_KEY";
|
|
16
17
|
/**
|
|
18
|
+
* The Amazon Resource Name (ARN) of the IAM role assumed by AWS IoT Core to call AWS KMS on behalf of the customer.
|
|
17
19
|
* @minLength 20
|
|
18
20
|
* @maxLength 2048
|
|
19
21
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html#cfn-iot-encryptionconfiguration-kmsaccessrolearn}
|
|
20
22
|
*/
|
|
21
23
|
KmsAccessRoleArn?: string | undefined;
|
|
22
24
|
/**
|
|
25
|
+
* The ARN of the customer managed KMS key.
|
|
23
26
|
* @minLength 20
|
|
24
27
|
* @maxLength 2048
|
|
25
28
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html#cfn-iot-encryptionconfiguration-kmskeyarn}
|
|
@@ -31,10 +34,12 @@ export type IoTEncryptionConfigurationProps = {
|
|
|
31
34
|
*/
|
|
32
35
|
export type IoTEncryptionConfigurationAttribs = {
|
|
33
36
|
/**
|
|
37
|
+
* The unique identifier (ID) of an AWS account.
|
|
34
38
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html#cfn-iot-encryptionconfiguration-accountid}
|
|
35
39
|
*/
|
|
36
40
|
AccountId: string;
|
|
37
41
|
/**
|
|
42
|
+
* The date when encryption configuration is last updated.
|
|
38
43
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-encryptionconfiguration.html#cfn-iot-encryptionconfiguration-lastmodifieddate}
|
|
39
44
|
*/
|
|
40
45
|
LastModifiedDate: string;
|
|
@@ -65,6 +65,7 @@ export type IoTSiteWiseAssetModelProps = {
|
|
|
65
65
|
*
|
|
66
66
|
* - *ASSET_MODEL* – (default) An asset model that you can use to create assets. Can't be included as a component in another asset model.
|
|
67
67
|
* - *COMPONENT_MODEL* – A reusable component that you can include in the composite models of other asset models. You can't create assets directly from this type of asset model.
|
|
68
|
+
* - *INTERFACE* – An interface is a type of model that defines a standard structure that can be applied to different asset models.
|
|
68
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-assetmodel.html#cfn-iotsitewise-assetmodel-assetmodeltype}
|
|
69
70
|
*/
|
|
70
71
|
AssetModelType?: string | undefined;
|
|
@@ -264,38 +265,38 @@ export type DataType = "STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT";
|
|
|
264
265
|
*/
|
|
265
266
|
export type DataTypeSpec = "AWS/ALARM_STATE";
|
|
266
267
|
/**
|
|
267
|
-
* Contains information about
|
|
268
|
+
* Contains information about applied interface property and asset model property
|
|
268
269
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html}
|
|
269
270
|
*/
|
|
270
271
|
export type EnforcedAssetModelInterfacePropertyMapping = {
|
|
271
272
|
/**
|
|
272
|
-
* The external ID of the
|
|
273
|
+
* The external ID of the linked asset model property
|
|
273
274
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping-assetmodelpropertyexternalid}
|
|
274
275
|
*/
|
|
275
276
|
AssetModelPropertyExternalId?: string | undefined;
|
|
276
277
|
/**
|
|
277
|
-
* The logical ID of the
|
|
278
|
+
* The logical ID of the linked asset model property
|
|
278
279
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping-assetmodelpropertylogicalid}
|
|
279
280
|
*/
|
|
280
281
|
AssetModelPropertyLogicalId?: string | undefined;
|
|
281
282
|
/**
|
|
282
|
-
* The external ID of the
|
|
283
|
+
* The external ID of the applied interface property
|
|
283
284
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping-interfaceassetmodelpropertyexternalid}
|
|
284
285
|
*/
|
|
285
286
|
InterfaceAssetModelPropertyExternalId: string;
|
|
286
287
|
};
|
|
287
288
|
/**
|
|
288
|
-
* Contains information about
|
|
289
|
+
* Contains information about applied interface hierarchy and asset model hierarchy
|
|
289
290
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship.html}
|
|
290
291
|
*/
|
|
291
292
|
export type EnforcedAssetModelInterfaceRelationship = {
|
|
292
293
|
/**
|
|
293
|
-
* The ID of the
|
|
294
|
+
* The ID of the asset model that has the interface applied to it.
|
|
294
295
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship-interfaceassetmodelid}
|
|
295
296
|
*/
|
|
296
297
|
InterfaceAssetModelId?: string | undefined;
|
|
297
298
|
/**
|
|
298
|
-
*
|
|
299
|
+
* A list of property mappings between the interface asset model and the asset model where the interface is applied.
|
|
299
300
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship-propertymappings}
|
|
300
301
|
*/
|
|
301
302
|
PropertyMappings?: EnforcedAssetModelInterfacePropertyMapping[] | undefined;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Create a computation model with a configuration and data binding.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-computationmodel.html}
|
|
5
5
|
*/
|
|
6
6
|
export type IoTSiteWiseComputationModel = ResourceDefinitionWithAttributes<"AWS::IoTSiteWise::ComputationModel", IoTSiteWiseComputationModelProps, IoTSiteWiseComputationModelAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Create a computation model with a configuration and data binding.
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-computationmodel.html}
|
|
10
10
|
*/
|
|
11
11
|
export type IoTSiteWiseComputationModelProps = {
|
|
@@ -15,12 +15,12 @@ export type IoTSiteWiseComputationModelProps = {
|
|
|
15
15
|
*/
|
|
16
16
|
ComputationModelConfiguration: ComputationModelConfiguration;
|
|
17
17
|
/**
|
|
18
|
-
* The data binding for the computation model.
|
|
18
|
+
* The data binding for the computation model. Key is a variable name defined in configuration. Value is a `ComputationModelDataBindingValue` referenced by the variable.
|
|
19
19
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-computationmodel.html#cfn-iotsitewise-computationmodel-computationmodeldatabinding}
|
|
20
20
|
*/
|
|
21
21
|
ComputationModelDataBinding: Record<string, ComputationModelDataBindingValue>;
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* The description of the computation model.
|
|
24
24
|
* @minLength 1
|
|
25
25
|
* @maxLength 2048
|
|
26
26
|
* @pattern ^[a-zA-Z0-9 _\-#$*!@]+$
|
|
@@ -36,7 +36,7 @@ export type IoTSiteWiseComputationModelProps = {
|
|
|
36
36
|
*/
|
|
37
37
|
ComputationModelName: string;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* A list of key-value pairs that contain metadata for the asset. For more information, see [Tagging your AWS IoT SiteWise resources](https://docs.aws.amazon.com/iot-sitewise/latest/userguide/tag-resources.html) in the *AWS IoT SiteWise User Guide* .
|
|
40
40
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-computationmodel.html#cfn-iotsitewise-computationmodel-tags}
|
|
41
41
|
*/
|
|
42
42
|
Tags?: Tag[] | undefined;
|
|
@@ -46,7 +46,9 @@ export type IoTSiteWiseComputationModelProps = {
|
|
|
46
46
|
*/
|
|
47
47
|
export type IoTSiteWiseComputationModelAttribs = {
|
|
48
48
|
/**
|
|
49
|
-
* The ARN of the computation model.
|
|
49
|
+
* The ARN of the computation model, which has the following format.
|
|
50
|
+
*
|
|
51
|
+
* `arn:${Partition}:iotsitewise:${Region}:${Account}:computation-model/${ComputationModelId}`
|
|
50
52
|
* @minLength 1
|
|
51
53
|
* @maxLength 1600
|
|
52
54
|
* @pattern ^arn:aws(-cn|-us-gov)?:[a-zA-Z0-9-:/_\.]+$
|
|
@@ -63,11 +65,12 @@ export type IoTSiteWiseComputationModelAttribs = {
|
|
|
63
65
|
ComputationModelId: string;
|
|
64
66
|
};
|
|
65
67
|
/**
|
|
68
|
+
* Contains the configuration for anomaly detection computation models.
|
|
66
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-anomalydetectioncomputationmodelconfiguration.html}
|
|
67
70
|
*/
|
|
68
71
|
export type AnomalyDetectionComputationModelConfiguration = {
|
|
69
72
|
/**
|
|
70
|
-
*
|
|
73
|
+
* The list of input properties for the anomaly detection model.
|
|
71
74
|
* @minLength 4
|
|
72
75
|
* @maxLength 67
|
|
73
76
|
* @pattern ^\$\{[a-z][a-z0-9_]*\}$
|
|
@@ -75,7 +78,7 @@ export type AnomalyDetectionComputationModelConfiguration = {
|
|
|
75
78
|
*/
|
|
76
79
|
InputProperties: string;
|
|
77
80
|
/**
|
|
78
|
-
*
|
|
81
|
+
* The property where the anomaly detection results will be stored.
|
|
79
82
|
* @minLength 4
|
|
80
83
|
* @maxLength 67
|
|
81
84
|
* @pattern ^\$\{[a-z][a-z0-9_]*\}$
|
|
@@ -84,11 +87,12 @@ export type AnomalyDetectionComputationModelConfiguration = {
|
|
|
84
87
|
ResultProperty: string;
|
|
85
88
|
};
|
|
86
89
|
/**
|
|
90
|
+
* Contains information about an `assetModelProperty` binding value.
|
|
87
91
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-assetmodelpropertybindingvalue.html}
|
|
88
92
|
*/
|
|
89
93
|
export type AssetModelPropertyBindingValue = {
|
|
90
94
|
/**
|
|
91
|
-
* The ID of the asset model.
|
|
95
|
+
* The ID of the asset model, in UUID format.
|
|
92
96
|
* @minLength 36
|
|
93
97
|
* @maxLength 36
|
|
94
98
|
* @pattern ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
|
|
@@ -96,7 +100,7 @@ export type AssetModelPropertyBindingValue = {
|
|
|
96
100
|
*/
|
|
97
101
|
AssetModelId: string;
|
|
98
102
|
/**
|
|
99
|
-
* The ID of the asset model property.
|
|
103
|
+
* The ID of the asset model property used in data binding value.
|
|
100
104
|
* @minLength 36
|
|
101
105
|
* @maxLength 36
|
|
102
106
|
* @pattern ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
|
|
@@ -105,11 +109,12 @@ export type AssetModelPropertyBindingValue = {
|
|
|
105
109
|
PropertyId: string;
|
|
106
110
|
};
|
|
107
111
|
/**
|
|
112
|
+
* Represents a data binding value referencing a specific asset property. It's used to bind computation model variables to actual asset property values for processing.
|
|
108
113
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-assetpropertybindingvalue.html}
|
|
109
114
|
*/
|
|
110
115
|
export type AssetPropertyBindingValue = {
|
|
111
116
|
/**
|
|
112
|
-
* The ID of the asset.
|
|
117
|
+
* The ID of the asset containing the property. This identifies the specific asset instance's property value used in the computation model.
|
|
113
118
|
* @minLength 36
|
|
114
119
|
* @maxLength 36
|
|
115
120
|
* @pattern ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
|
|
@@ -117,7 +122,7 @@ export type AssetPropertyBindingValue = {
|
|
|
117
122
|
*/
|
|
118
123
|
AssetId: string;
|
|
119
124
|
/**
|
|
120
|
-
* The ID of the asset property.
|
|
125
|
+
* The ID of the property within the asset. This identifies the specific property's value used in the computation model.
|
|
121
126
|
* @minLength 36
|
|
122
127
|
* @maxLength 36
|
|
123
128
|
* @pattern ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
|
|
@@ -126,31 +131,33 @@ export type AssetPropertyBindingValue = {
|
|
|
126
131
|
PropertyId: string;
|
|
127
132
|
};
|
|
128
133
|
/**
|
|
134
|
+
* The configuration for the computation model.
|
|
129
135
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodelconfiguration.html}
|
|
130
136
|
*/
|
|
131
137
|
export type ComputationModelConfiguration = {
|
|
132
138
|
/**
|
|
133
|
-
*
|
|
139
|
+
* The configuration for the anomaly detection type of computation model.
|
|
134
140
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodelconfiguration.html#cfn-iotsitewise-computationmodel-computationmodelconfiguration-anomalydetection}
|
|
135
141
|
*/
|
|
136
142
|
AnomalyDetection?: AnomalyDetectionComputationModelConfiguration | undefined;
|
|
137
143
|
};
|
|
138
144
|
/**
|
|
145
|
+
* Contains computation model data binding value information, which can be one of `assetModelProperty` , `list` .
|
|
139
146
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodeldatabindingvalue.html}
|
|
140
147
|
*/
|
|
141
148
|
export type ComputationModelDataBindingValue = {
|
|
142
149
|
/**
|
|
143
|
-
*
|
|
150
|
+
* Specifies an asset model property data binding value.
|
|
144
151
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodeldatabindingvalue.html#cfn-iotsitewise-computationmodel-computationmodeldatabindingvalue-assetmodelproperty}
|
|
145
152
|
*/
|
|
146
153
|
AssetModelProperty?: AssetModelPropertyBindingValue | undefined;
|
|
147
154
|
/**
|
|
148
|
-
*
|
|
155
|
+
* The asset property value used for computation model data binding.
|
|
149
156
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodeldatabindingvalue.html#cfn-iotsitewise-computationmodel-computationmodeldatabindingvalue-assetproperty}
|
|
150
157
|
*/
|
|
151
158
|
AssetProperty?: AssetPropertyBindingValue | undefined;
|
|
152
159
|
/**
|
|
153
|
-
*
|
|
160
|
+
* Specifies a list of data binding value.
|
|
154
161
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodeldatabindingvalue.html#cfn-iotsitewise-computationmodel-computationmodeldatabindingvalue-list}
|
|
155
162
|
*/
|
|
156
163
|
List?: ComputationModelDataBindingValue[] | undefined;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Creates a dataset to connect an external datasource.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html}
|
|
5
5
|
*/
|
|
6
6
|
export type IoTSiteWiseDataset = ResourceDefinitionWithAttributes<"AWS::IoTSiteWise::Dataset", IoTSiteWiseDatasetProps, IoTSiteWiseDatasetAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Creates a dataset to connect an external datasource.
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html}
|
|
10
10
|
*/
|
|
11
11
|
export type IoTSiteWiseDatasetProps = {
|
|
@@ -25,7 +25,7 @@ export type IoTSiteWiseDatasetProps = {
|
|
|
25
25
|
*/
|
|
26
26
|
DatasetSource: DatasetSource;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* A list of key-value pairs that contain metadata for the access policy. For more information, see [Tagging your AWS IoT SiteWise resources](https://docs.aws.amazon.com/iot-sitewise/latest/userguide/tag-resources.html) in the *AWS IoT SiteWise User Guide* .
|
|
29
29
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html#cfn-iotsitewise-dataset-tags}
|
|
30
30
|
*/
|
|
31
31
|
Tags?: Tag[] | undefined;
|
|
@@ -35,7 +35,9 @@ export type IoTSiteWiseDatasetProps = {
|
|
|
35
35
|
*/
|
|
36
36
|
export type IoTSiteWiseDatasetAttribs = {
|
|
37
37
|
/**
|
|
38
|
-
* The ARN of the dataset.
|
|
38
|
+
* The ARN of the dataset, which has the following format.
|
|
39
|
+
*
|
|
40
|
+
* `arn:${Partition}:iotsitewise:${Region}:${Account}:dataset/${DatasetId}`
|
|
39
41
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html#cfn-iotsitewise-dataset-datasetarn}
|
|
40
42
|
*/
|
|
41
43
|
DatasetArn: string;
|
|
@@ -49,6 +51,7 @@ export type IoTSiteWiseDatasetAttribs = {
|
|
|
49
51
|
DatasetId: string;
|
|
50
52
|
};
|
|
51
53
|
/**
|
|
54
|
+
* The data source for the dataset.
|
|
52
55
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-datasetsource.html}
|
|
53
56
|
*/
|
|
54
57
|
export type DatasetSource = {
|
|
@@ -69,21 +72,23 @@ export type DatasetSource = {
|
|
|
69
72
|
SourceType: "KENDRA";
|
|
70
73
|
};
|
|
71
74
|
/**
|
|
75
|
+
* The source details for the Kendra dataset source.
|
|
72
76
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-kendrasourcedetail.html}
|
|
73
77
|
*/
|
|
74
78
|
export type KendraSourceDetail = {
|
|
75
79
|
/**
|
|
76
|
-
* The knowledgeBaseArn details for the Kendra dataset source.
|
|
80
|
+
* The `knowledgeBaseArn` details for the Kendra dataset source.
|
|
77
81
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-kendrasourcedetail.html#cfn-iotsitewise-dataset-kendrasourcedetail-knowledgebasearn}
|
|
78
82
|
*/
|
|
79
83
|
KnowledgeBaseArn: string;
|
|
80
84
|
/**
|
|
81
|
-
* The roleARN details for the Kendra dataset source.
|
|
85
|
+
* The `roleARN` details for the Kendra dataset source.
|
|
82
86
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-kendrasourcedetail.html#cfn-iotsitewise-dataset-kendrasourcedetail-rolearn}
|
|
83
87
|
*/
|
|
84
88
|
RoleArn: string;
|
|
85
89
|
};
|
|
86
90
|
/**
|
|
91
|
+
* The details of the dataset source associated with the dataset.
|
|
87
92
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-sourcedetail.html}
|
|
88
93
|
*/
|
|
89
94
|
export type SourceDetail = {
|
|
@@ -10,7 +10,7 @@ export type IVSStage = ResourceDefinitionWithAttributes<"AWS::IVS::Stage", IVSSt
|
|
|
10
10
|
*/
|
|
11
11
|
export type IVSStageProps = {
|
|
12
12
|
/**
|
|
13
|
-
* Configuration object for individual participant recording
|
|
13
|
+
* Configuration object for individual participant recording.
|
|
14
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-stage.html#cfn-ivs-stage-autoparticipantrecordingconfiguration}
|
|
15
15
|
*/
|
|
16
16
|
AutoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration | undefined;
|
|
@@ -80,7 +80,9 @@ export type AutoParticipantRecordingConfiguration = {
|
|
|
80
80
|
*/
|
|
81
81
|
MediaTypes?: ("AUDIO_VIDEO" | "AUDIO_ONLY")[] | undefined;
|
|
82
82
|
/**
|
|
83
|
-
* If a stage publisher disconnects and then reconnects within the specified interval, the multiple recordings will be considered a single recording and merged together.
|
|
83
|
+
* If a stage publisher disconnects and then reconnects within the specified interval, the multiple recordings will be considered a single recording and merged together.
|
|
84
|
+
*
|
|
85
|
+
* The default value is 0, which disables merging.
|
|
84
86
|
* @min 0
|
|
85
87
|
* @max 300
|
|
86
88
|
* @default 0
|