@propulsionworks/cloudformation 0.1.25 → 0.1.26
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-aps-scraper.d.ts +69 -1
- package/out/exports/resources.generated/aws-bedrock-datasource.d.ts +2 -2
- package/out/exports/resources.generated/aws-bedrock-guardrail.d.ts +23 -0
- package/out/exports/resources.generated/aws-bedrock-knowledgebase.d.ts +1 -1
- package/out/exports/resources.generated/aws-certificatemanager-certificate.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudformation-guardhook.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudformation-hookversion.d.ts +2 -2
- package/out/exports/resources.generated/aws-cloudformation-typeactivation.d.ts +3 -3
- package/out/exports/resources.generated/aws-cloudfront-publickey.d.ts +6 -0
- package/out/exports/resources.generated/aws-connect-hoursofoperation.d.ts +1 -1
- package/out/exports/resources.generated/aws-connect-predefinedattribute.d.ts +2 -2
- package/out/exports/resources.generated/aws-ec2-transitgatewayroutetableassociation.d.ts +2 -2
- package/out/exports/resources.generated/aws-ecs-service.d.ts +6 -3
- package/out/exports/resources.generated/aws-elasticloadbalancingv2-loadbalancer.d.ts +5 -0
- package/out/exports/resources.generated/aws-iotcoredeviceadvisor-suitedefinition.d.ts +1 -27
- package/out/exports/resources.generated/aws-iotsitewise-assetmodel.d.ts +7 -8
- package/out/exports/resources.generated/aws-iotsitewise-computationmodel.d.ts +16 -23
- package/out/exports/resources.generated/aws-iotsitewise-dataset.d.ts +6 -11
- package/out/exports/resources.generated/aws-omics-workflow.d.ts +12 -8
- package/out/exports/resources.generated/aws-omics-workflowversion.d.ts +76 -0
- package/out/exports/resources.generated/aws-opensearchserverless-index.d.ts +1 -1
- package/out/exports/resources.generated/aws-opensearchserverless-securityconfig.d.ts +21 -1
- package/out/exports/resources.generated/aws-quicksight-dashboard.d.ts +25 -0
- package/out/exports/resources.generated/aws-sagemaker-cluster.d.ts +53 -0
- package/out/exports/resources.generated/aws-smsvoice-configurationset.d.ts +211 -0
- package/out/exports/resources.generated/aws-smsvoice-optoutlist.d.ts +36 -0
- package/out/exports/resources.generated/aws-smsvoice-phonenumber.d.ts +136 -0
- package/out/exports/resources.generated/aws-smsvoice-pool.d.ts +126 -0
- package/out/exports/resources.generated/aws-smsvoice-protectconfiguration.d.ts +102 -0
- package/out/exports/resources.generated/aws-smsvoice-resourcepolicy.d.ts +24 -0
- package/out/exports/resources.generated/aws-smsvoice-senderid.d.ts +45 -0
- package/out/exports/resources.generated/aws-workspacesinstances-workspaceinstance.d.ts +101 -0
- package/package.json +1 -1
|
@@ -44,6 +44,10 @@ export type APSScraperProps = {
|
|
|
44
44
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-scraper.html#cfn-aps-scraper-scrapeconfiguration}
|
|
45
45
|
*/
|
|
46
46
|
ScrapeConfiguration: ScrapeConfiguration;
|
|
47
|
+
/**
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-scraper.html#cfn-aps-scraper-scraperloggingconfiguration}
|
|
49
|
+
*/
|
|
50
|
+
ScraperLoggingConfiguration?: ScraperLoggingConfiguration | undefined;
|
|
47
51
|
/**
|
|
48
52
|
* The Amazon EKS cluster from which the scraper collects metrics.
|
|
49
53
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-scraper.html#cfn-aps-scraper-source}
|
|
@@ -61,7 +65,7 @@ export type APSScraperProps = {
|
|
|
61
65
|
export type APSScraperAttribs = {
|
|
62
66
|
/**
|
|
63
67
|
* The Amazon Resource Name (ARN) of the scraper. For example, `arn:aws:aps:<region>:123456798012:scraper/s-example1-1234-abcd-5678-ef9012abcd34` .
|
|
64
|
-
* @pattern ^arn:(aws|aws-us-gov|aws-cn):aps:
|
|
68
|
+
* @pattern ^arn:(aws|aws-us-gov|aws-cn):aps:[a-z0-9-]+:[0-9]+:scraper/s-[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}$
|
|
65
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-scraper.html#cfn-aps-scraper-arn}
|
|
66
70
|
*/
|
|
67
71
|
Arn: string;
|
|
@@ -84,6 +88,28 @@ export type APSScraperAttribs = {
|
|
|
84
88
|
*/
|
|
85
89
|
ScraperId: string;
|
|
86
90
|
};
|
|
91
|
+
/**
|
|
92
|
+
* Represents a cloudwatch logs destination for scraper logging
|
|
93
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-cloudwatchlogdestination.html}
|
|
94
|
+
*/
|
|
95
|
+
export type CloudWatchLogDestination = {
|
|
96
|
+
/**
|
|
97
|
+
* ARN of the CloudWatch log group
|
|
98
|
+
* @minLength 0
|
|
99
|
+
* @maxLength 512
|
|
100
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-cloudwatchlogdestination.html#cfn-aps-scraper-cloudwatchlogdestination-loggrouparn}
|
|
101
|
+
*/
|
|
102
|
+
LogGroupArn?: string | undefined;
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-componentconfig.html}
|
|
106
|
+
*/
|
|
107
|
+
export type ComponentConfig = {
|
|
108
|
+
/**
|
|
109
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-componentconfig.html#cfn-aps-scraper-componentconfig-options}
|
|
110
|
+
*/
|
|
111
|
+
Options?: Record<string, string> | undefined;
|
|
112
|
+
};
|
|
87
113
|
/**
|
|
88
114
|
* Where to send the metrics from a scraper.
|
|
89
115
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-destination.html}
|
|
@@ -128,6 +154,48 @@ export type ScrapeConfiguration = {
|
|
|
128
154
|
*/
|
|
129
155
|
ConfigurationBlob: string;
|
|
130
156
|
};
|
|
157
|
+
/**
|
|
158
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-scrapercomponent.html}
|
|
159
|
+
*/
|
|
160
|
+
export type ScraperComponent = {
|
|
161
|
+
/**
|
|
162
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-scrapercomponent.html#cfn-aps-scraper-scrapercomponent-config}
|
|
163
|
+
*/
|
|
164
|
+
Config?: ComponentConfig | undefined;
|
|
165
|
+
/**
|
|
166
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-scrapercomponent.html#cfn-aps-scraper-scrapercomponent-type}
|
|
167
|
+
*/
|
|
168
|
+
Type: ScraperComponentType;
|
|
169
|
+
};
|
|
170
|
+
/**
|
|
171
|
+
* Type of scraper component
|
|
172
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-scrapercomponenttype.html}
|
|
173
|
+
*/
|
|
174
|
+
export type ScraperComponentType = "SERVICE_DISCOVERY" | "COLLECTOR" | "EXPORTER";
|
|
175
|
+
/**
|
|
176
|
+
* Configuration for scraper logging
|
|
177
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-scraperloggingconfiguration.html}
|
|
178
|
+
*/
|
|
179
|
+
export type ScraperLoggingConfiguration = {
|
|
180
|
+
/**
|
|
181
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-scraperloggingconfiguration.html#cfn-aps-scraper-scraperloggingconfiguration-loggingdestination}
|
|
182
|
+
*/
|
|
183
|
+
LoggingDestination: ScraperLoggingDestination;
|
|
184
|
+
/**
|
|
185
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-scraperloggingconfiguration.html#cfn-aps-scraper-scraperloggingconfiguration-scrapercomponents}
|
|
186
|
+
*/
|
|
187
|
+
ScraperComponents: ScraperComponent[];
|
|
188
|
+
};
|
|
189
|
+
/**
|
|
190
|
+
* Destination for scraper logging
|
|
191
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-scraperloggingdestination.html}
|
|
192
|
+
*/
|
|
193
|
+
export type ScraperLoggingDestination = {
|
|
194
|
+
/**
|
|
195
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-scraperloggingdestination.html#cfn-aps-scraper-scraperloggingdestination-cloudwatchlogs}
|
|
196
|
+
*/
|
|
197
|
+
CloudWatchLogs?: CloudWatchLogDestination | undefined;
|
|
198
|
+
};
|
|
131
199
|
/**
|
|
132
200
|
* The source of collected metrics for a scraper.
|
|
133
201
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-source.html}
|
|
@@ -538,7 +538,7 @@ export type S3DataSourceConfiguration = {
|
|
|
538
538
|
* The Amazon Resource Name (ARN) of the S3 bucket that contains your data.
|
|
539
539
|
* @minLength 1
|
|
540
540
|
* @maxLength 2048
|
|
541
|
-
* @pattern ^arn:aws(
|
|
541
|
+
* @pattern ^arn:aws(-cn|-us-gov|-eusc|-iso(-[b-f])?)?:s3:::[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$
|
|
542
542
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-s3datasourceconfiguration.html#cfn-bedrock-datasource-s3datasourceconfiguration-bucketarn}
|
|
543
543
|
*/
|
|
544
544
|
BucketArn: string;
|
|
@@ -673,7 +673,7 @@ export type ServerSideEncryptionConfiguration = {
|
|
|
673
673
|
* The Amazon Resource Name (ARN) of the AWS KMS key used to encrypt the resource.
|
|
674
674
|
* @minLength 1
|
|
675
675
|
* @maxLength 2048
|
|
676
|
-
* @pattern ^arn:aws(
|
|
676
|
+
* @pattern ^arn:aws(-cn|-us-gov|-eusc|-iso(-[b-f])?)?:kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}$
|
|
677
677
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-serversideencryptionconfiguration.html#cfn-bedrock-datasource-serversideencryptionconfiguration-kmskeyarn}
|
|
678
678
|
*/
|
|
679
679
|
KmsKeyArn?: string | undefined;
|
|
@@ -29,6 +29,11 @@ export type BedrockGuardrail = ResourceDefinitionWithAttributes<"AWS::Bedrock::G
|
|
|
29
29
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-guardrail.html}
|
|
30
30
|
*/
|
|
31
31
|
export type BedrockGuardrailProps = {
|
|
32
|
+
/**
|
|
33
|
+
* Optional configuration for integrating Automated Reasoning policies with the guardrail.
|
|
34
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-guardrail.html#cfn-bedrock-guardrail-automatedreasoningpolicyconfig}
|
|
35
|
+
*/
|
|
36
|
+
AutomatedReasoningPolicyConfig?: AutomatedReasoningPolicyConfig | undefined;
|
|
32
37
|
/**
|
|
33
38
|
* The message to return when the guardrail blocks a prompt.
|
|
34
39
|
* @minLength 1
|
|
@@ -156,6 +161,24 @@ export type BedrockGuardrailAttribs = {
|
|
|
156
161
|
*/
|
|
157
162
|
Version: string;
|
|
158
163
|
};
|
|
164
|
+
/**
|
|
165
|
+
* Optional configuration for integrating Automated Reasoning policies with the guardrail.
|
|
166
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-automatedreasoningpolicyconfig.html}
|
|
167
|
+
*/
|
|
168
|
+
export type AutomatedReasoningPolicyConfig = {
|
|
169
|
+
/**
|
|
170
|
+
* The confidence threshold for triggering guardrail actions based on Automated Reasoning policy violations.
|
|
171
|
+
* @min 0
|
|
172
|
+
* @max 1
|
|
173
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-automatedreasoningpolicyconfig.html#cfn-bedrock-guardrail-automatedreasoningpolicyconfig-confidencethreshold}
|
|
174
|
+
*/
|
|
175
|
+
ConfidenceThreshold?: number | undefined;
|
|
176
|
+
/**
|
|
177
|
+
* The list of Automated Reasoning policy ARNs to include in the guardrail configuration
|
|
178
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-automatedreasoningpolicyconfig.html#cfn-bedrock-guardrail-automatedreasoningpolicyconfig-policies}
|
|
179
|
+
*/
|
|
180
|
+
Policies: string[];
|
|
181
|
+
};
|
|
159
182
|
/**
|
|
160
183
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contentfilteraction.html}
|
|
161
184
|
*/
|
|
@@ -352,7 +352,7 @@ export type OpenSearchManagedClusterConfiguration = {
|
|
|
352
352
|
/**
|
|
353
353
|
* The Amazon Resource Name (ARN) of the OpenSearch domain.
|
|
354
354
|
* @maxLength 2048
|
|
355
|
-
* @pattern ^arn:aws(
|
|
355
|
+
* @pattern ^arn:aws(-cn|-us-gov|-eusc|-iso(-[b-f])?)?:es:([a-z]{2,}-){2,}\d:\d{12}:domain/[a-z][a-z0-9-]{3,28}$
|
|
356
356
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-opensearchmanagedclusterconfiguration.html#cfn-bedrock-knowledgebase-opensearchmanagedclusterconfiguration-domainarn}
|
|
357
357
|
*/
|
|
358
358
|
DomainArn: string;
|
|
@@ -32,7 +32,7 @@ export type CertificateManagerCertificateProps = {
|
|
|
32
32
|
*/
|
|
33
33
|
CertificateExport?: string | undefined;
|
|
34
34
|
/**
|
|
35
|
-
* You can opt out of certificate transparency logging by specifying the `DISABLED` option. Opt in by specifying `ENABLED` .
|
|
35
|
+
* You can opt out of certificate transparency logging by specifying the `DISABLED` option. Opt in by specifying `ENABLED` . This setting doces not apply to private certificates.
|
|
36
36
|
*
|
|
37
37
|
* If you do not specify a certificate transparency logging preference on a new CloudFormation template, or if you remove the logging preference from an existing template, this is the same as explicitly enabling the preference.
|
|
38
38
|
*
|
|
@@ -108,7 +108,7 @@ export type CloudFormationGuardHookProps = {
|
|
|
108
108
|
*
|
|
109
109
|
* Example target filter in JSON:
|
|
110
110
|
*
|
|
111
|
-
* `"TargetFilters": {"Actions": [ "
|
|
111
|
+
* `"TargetFilters": {"Actions": [ "CREATE", "UPDATE", "DELETE" ]}`
|
|
112
112
|
*
|
|
113
113
|
* Example target filter in YAML:
|
|
114
114
|
*
|
|
@@ -40,9 +40,9 @@ export type CloudFormationHookVersionProps = {
|
|
|
40
40
|
*/
|
|
41
41
|
SchemaHandlerPackage: string;
|
|
42
42
|
/**
|
|
43
|
-
* The unique name for your
|
|
43
|
+
* The unique name for your Hook. Specifies a three-part namespace for your Hook, with a recommended pattern of `Organization::Service::Hook` .
|
|
44
44
|
*
|
|
45
|
-
* > The following organization namespaces are reserved and can't be used in your
|
|
45
|
+
* > The following organization namespaces are reserved and can't be used in your Hook type names:
|
|
46
46
|
* >
|
|
47
47
|
* > - `Alexa`
|
|
48
48
|
* > - `AMZN`
|
|
@@ -74,7 +74,7 @@ export type CloudFormationTypeActivationProps = {
|
|
|
74
74
|
*/
|
|
75
75
|
TypeName: string;
|
|
76
76
|
/**
|
|
77
|
-
* An alias to assign to the public extension
|
|
77
|
+
* An alias to assign to the public extension in this account and Region. If you specify an alias for the extension, CloudFormation treats the alias as the extension type name within this account and Region. You must use the alias to refer to the extension in your templates, API calls, and CloudFormation console.
|
|
78
78
|
*
|
|
79
79
|
* An extension alias must be unique within a given account and Region. You can activate the same public resource multiple times in the same account and Region, using different type name aliases.
|
|
80
80
|
* @minLength 10
|
|
@@ -153,7 +153,7 @@ export type CloudFormationTypeActivationProps = {
|
|
|
153
153
|
*/
|
|
154
154
|
TypeName?: string | undefined;
|
|
155
155
|
/**
|
|
156
|
-
* An alias to assign to the public extension
|
|
156
|
+
* An alias to assign to the public extension in this account and Region. If you specify an alias for the extension, CloudFormation treats the alias as the extension type name within this account and Region. You must use the alias to refer to the extension in your templates, API calls, and CloudFormation console.
|
|
157
157
|
*
|
|
158
158
|
* An extension alias must be unique within a given account and Region. You can activate the same public resource multiple times in the same account and Region, using different type name aliases.
|
|
159
159
|
* @minLength 10
|
|
@@ -176,7 +176,7 @@ export type CloudFormationTypeActivationProps = {
|
|
|
176
176
|
*/
|
|
177
177
|
export type CloudFormationTypeActivationAttribs = {
|
|
178
178
|
/**
|
|
179
|
-
* The Amazon Resource Name (ARN) of the activated extension
|
|
179
|
+
* The Amazon Resource Name (ARN) of the activated extension in this account and Region.
|
|
180
180
|
* @pattern arn:aws[A-Za-z0-9-]{0,64}:cloudformation:[A-Za-z0-9-]{1,64}:([0-9]{12})?:type/.+
|
|
181
181
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-typeactivation.html#cfn-cloudformation-typeactivation-arn}
|
|
182
182
|
*/
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
3
|
* A public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html) , or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html) .
|
|
4
|
+
*
|
|
5
|
+
* CloudFront supports signed URLs and signed cookies with RSA 2048 or ECDSA 256 key signatures. Field-level encryption is only compatible with RSA 2048 key signatures.
|
|
4
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-publickey.html}
|
|
5
7
|
*/
|
|
6
8
|
export type CloudFrontPublicKey = ResourceDefinitionWithAttributes<"AWS::CloudFront::PublicKey", CloudFrontPublicKeyProps, CloudFrontPublicKeyAttribs>;
|
|
7
9
|
/**
|
|
8
10
|
* A public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html) , or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html) .
|
|
11
|
+
*
|
|
12
|
+
* CloudFront supports signed URLs and signed cookies with RSA 2048 or ECDSA 256 key signatures. Field-level encryption is only compatible with RSA 2048 key signatures.
|
|
9
13
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-publickey.html}
|
|
10
14
|
*/
|
|
11
15
|
export type CloudFrontPublicKeyProps = {
|
|
@@ -32,6 +36,8 @@ export type CloudFrontPublicKeyAttribs = {
|
|
|
32
36
|
};
|
|
33
37
|
/**
|
|
34
38
|
* Configuration information about a public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html) , or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html) .
|
|
39
|
+
*
|
|
40
|
+
* CloudFront supports signed URLs and signed cookies with RSA 2048 or ECDSA 256 key signatures. Field-level encryption is only compatible with RSA 2048 key signatures.
|
|
35
41
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-publickey-publickeyconfig.html}
|
|
36
42
|
*/
|
|
37
43
|
export type PublicKeyConfig = {
|
|
@@ -93,7 +93,7 @@ export type HoursOfOperationOverride = {
|
|
|
93
93
|
*/
|
|
94
94
|
EffectiveFrom: string;
|
|
95
95
|
/**
|
|
96
|
-
* The date
|
|
96
|
+
* The date until the hours of operation override is effective.
|
|
97
97
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverride.html#cfn-connect-hoursofoperation-hoursofoperationoverride-effectivetill}
|
|
98
98
|
*/
|
|
99
99
|
EffectiveTill: string;
|
|
@@ -10,7 +10,7 @@ export type ConnectPredefinedAttribute = ResourceDefinitionWithAttributes<"AWS::
|
|
|
10
10
|
*/
|
|
11
11
|
export type ConnectPredefinedAttributeProps = {
|
|
12
12
|
/**
|
|
13
|
-
* Custom metadata associated to
|
|
13
|
+
* Custom metadata that is associated to predefined attributes to control behavior in upstream services, such as controlling how a predefined attribute should be displayed in the Amazon Connect admin website.
|
|
14
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html#cfn-connect-predefinedattribute-attributeconfiguration}
|
|
15
15
|
*/
|
|
16
16
|
AttributeConfiguration?: {
|
|
@@ -37,7 +37,7 @@ export type ConnectPredefinedAttributeProps = {
|
|
|
37
37
|
*/
|
|
38
38
|
Name: string;
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
* Values that enable you to categorize your predefined attributes. You can use them in custom UI elements across the Amazon Connect admin website.
|
|
41
41
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-predefinedattribute.html#cfn-connect-predefinedattribute-purposes}
|
|
42
42
|
*/
|
|
43
43
|
Purposes?: string[] | undefined;
|
|
@@ -2,14 +2,14 @@ import type { ResourceDefinition } from "../main.ts";
|
|
|
2
2
|
/**
|
|
3
3
|
* Associates the specified attachment with the specified transit gateway route table. You can associate one route table with an attachment.
|
|
4
4
|
*
|
|
5
|
-
* Before you can update the route table associated with an attachment, you must disassociate the transit gateway route table that is currently associated with the attachment. First update the stack to remove the associated transit gateway route table, and then update the stack with the ID of the new transit gateway route table to associate.
|
|
5
|
+
* Before you can update the route table associated with an attachment, you must disassociate the transit gateway route table that is currently associated with the attachment. First update the stack to remove the associated transit gateway route table, and then update the stack with the ID of the new transit gateway route table to associate. In addition, the attachment must be in an `available` state; otherwise, the request will return an error.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html}
|
|
7
7
|
*/
|
|
8
8
|
export type EC2TransitGatewayRouteTableAssociation = ResourceDefinition<"AWS::EC2::TransitGatewayRouteTableAssociation", EC2TransitGatewayRouteTableAssociationProps>;
|
|
9
9
|
/**
|
|
10
10
|
* Associates the specified attachment with the specified transit gateway route table. You can associate one route table with an attachment.
|
|
11
11
|
*
|
|
12
|
-
* Before you can update the route table associated with an attachment, you must disassociate the transit gateway route table that is currently associated with the attachment. First update the stack to remove the associated transit gateway route table, and then update the stack with the ID of the new transit gateway route table to associate.
|
|
12
|
+
* Before you can update the route table associated with an attachment, you must disassociate the transit gateway route table that is currently associated with the attachment. First update the stack to remove the associated transit gateway route table, and then update the stack with the ID of the new transit gateway route table to associate. In addition, the attachment must be in an `available` state; otherwise, the request will return an error.
|
|
13
13
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroutetableassociation.html}
|
|
14
14
|
*/
|
|
15
15
|
export type EC2TransitGatewayRouteTableAssociationProps = {
|
|
@@ -75,6 +75,11 @@ export type ECSServiceProps = {
|
|
|
75
75
|
* Indicates whether to use Availability Zone rebalancing for the service.
|
|
76
76
|
*
|
|
77
77
|
* For more information, see [Balancing an Amazon ECS service across Availability Zones](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html) in the **Amazon Elastic Container Service Developer Guide** .
|
|
78
|
+
*
|
|
79
|
+
* The default behavior of `AvailabilityZoneRebalancing` differs between create and update requests:
|
|
80
|
+
*
|
|
81
|
+
* - For create service requests, when no value is specified for `AvailabilityZoneRebalancing` , Amazon ECS defaults the value to `ENABLED` .
|
|
82
|
+
* - For update service requests, when no value is specified for `AvailabilityZoneRebalancing` , Amazon ECS defaults to the existing service’s `AvailabilityZoneRebalancing` value. If the service never had an `AvailabilityZoneRebalancing` value set, Amazon ECS treats this as `DISABLED` .
|
|
78
83
|
* @default "ENABLED"
|
|
79
84
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-availabilityzonerebalancing}
|
|
80
85
|
*/
|
|
@@ -132,9 +137,7 @@ export type ECSServiceProps = {
|
|
|
132
137
|
*/
|
|
133
138
|
ForceNewDeployment?: ForceNewDeployment | undefined;
|
|
134
139
|
/**
|
|
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
|
|
136
|
-
*
|
|
137
|
-
* If your service's tasks take a while to start and respond to health checks, you can specify a health check grace period of up to 2,147,483,647 seconds (about 69 years). During that time, the Amazon ECS service scheduler ignores health check status. This grace period can prevent the service scheduler from marking tasks as unhealthy and stopping them before they have time to come up.
|
|
140
|
+
* The period of time, in seconds, that the Amazon Amazon ECS service scheduler ignores unhealthy Elastic Load Balancing, VPC Lattice, and container health checks after a task has first started. If you do not specify a health check grace period value, the default value of 0 is used. If you do not use any of the health checks, then `healthCheckGracePeriodSeconds` is unused.
|
|
138
141
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds}
|
|
139
142
|
*/
|
|
140
143
|
HealthCheckGracePeriodSeconds?: number | undefined;
|
|
@@ -9,6 +9,11 @@ export type ElasticLoadBalancingV2LoadBalancer = ResourceDefinitionWithAttribute
|
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html}
|
|
10
10
|
*/
|
|
11
11
|
export type ElasticLoadBalancingV2LoadBalancerProps = {
|
|
12
|
+
/**
|
|
13
|
+
* @default false
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-enablecapacityreservationprovisionstabilize}
|
|
15
|
+
*/
|
|
16
|
+
EnableCapacityReservationProvisionStabilize?: boolean | undefined;
|
|
12
17
|
/**
|
|
13
18
|
* [Network Load Balancers with UDP listeners] Indicates whether to use an IPv6 prefix from each subnet for source NAT. The IP address type must be `dualstack` . The default value is `off` .
|
|
14
19
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-enableprefixforipv6sourcenat}
|
|
@@ -14,33 +14,7 @@ export type IoTCoreDeviceAdvisorSuiteDefinition = ResourceDefinitionWithAttribut
|
|
|
14
14
|
*/
|
|
15
15
|
export type IoTCoreDeviceAdvisorSuiteDefinitionProps = {
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
* - ***devicePermissionRoleArn*** - The device permission arn.
|
|
20
|
-
*
|
|
21
|
-
* This is a required element.
|
|
22
|
-
*
|
|
23
|
-
* *Type:* String
|
|
24
|
-
* - ***devices*** - The list of configured devices under test. For more information on devices under test, see [DeviceUnderTest](https://docs.aws.amazon.com/iot/latest/apireference/API_iotdeviceadvisor_DeviceUnderTest.html)
|
|
25
|
-
*
|
|
26
|
-
* Not a required element.
|
|
27
|
-
*
|
|
28
|
-
* *Type:* List of devices under test
|
|
29
|
-
* - ***intendedForQualification*** - The tests intended for qualification in a suite.
|
|
30
|
-
*
|
|
31
|
-
* Not a required element.
|
|
32
|
-
*
|
|
33
|
-
* *Type:* Boolean
|
|
34
|
-
* - ***rootGroup*** - The test suite root group. For more information on creating and using root groups see the [Device Advisor workflow](https://docs.aws.amazon.com/iot/latest/developerguide/device-advisor-workflow.html) .
|
|
35
|
-
*
|
|
36
|
-
* This is a required element.
|
|
37
|
-
*
|
|
38
|
-
* *Type:* String
|
|
39
|
-
* - ***suiteDefinitionName*** - The Suite Definition Configuration name.
|
|
40
|
-
*
|
|
41
|
-
* This is a required element.
|
|
42
|
-
*
|
|
43
|
-
* *Type:* String
|
|
17
|
+
* Gets the suite definition configuration.
|
|
44
18
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotcoredeviceadvisor-suitedefinition.html#cfn-iotcoredeviceadvisor-suitedefinition-suitedefinitionconfiguration}
|
|
45
19
|
*/
|
|
46
20
|
SuiteDefinitionConfiguration: {
|
|
@@ -65,7 +65,6 @@ 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.
|
|
69
68
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-assetmodel.html#cfn-iotsitewise-assetmodel-assetmodeltype}
|
|
70
69
|
*/
|
|
71
70
|
AssetModelType?: string | undefined;
|
|
@@ -265,38 +264,38 @@ export type DataType = "STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT";
|
|
|
265
264
|
*/
|
|
266
265
|
export type DataTypeSpec = "AWS/ALARM_STATE";
|
|
267
266
|
/**
|
|
268
|
-
* Contains information about
|
|
267
|
+
* Contains information about enforced interface property and asset model property
|
|
269
268
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html}
|
|
270
269
|
*/
|
|
271
270
|
export type EnforcedAssetModelInterfacePropertyMapping = {
|
|
272
271
|
/**
|
|
273
|
-
* The external ID of the
|
|
272
|
+
* The external ID of the enforced asset model property
|
|
274
273
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping-assetmodelpropertyexternalid}
|
|
275
274
|
*/
|
|
276
275
|
AssetModelPropertyExternalId?: string | undefined;
|
|
277
276
|
/**
|
|
278
|
-
* The logical ID of the
|
|
277
|
+
* The logical ID of the enforced asset model property
|
|
279
278
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping-assetmodelpropertylogicalid}
|
|
280
279
|
*/
|
|
281
280
|
AssetModelPropertyLogicalId?: string | undefined;
|
|
282
281
|
/**
|
|
283
|
-
* The external ID of the
|
|
282
|
+
* The external ID of the enforced interface property
|
|
284
283
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping-interfaceassetmodelpropertyexternalid}
|
|
285
284
|
*/
|
|
286
285
|
InterfaceAssetModelPropertyExternalId: string;
|
|
287
286
|
};
|
|
288
287
|
/**
|
|
289
|
-
* Contains information about
|
|
288
|
+
* Contains information about enforced interface hierarchy and asset model hierarchy
|
|
290
289
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship.html}
|
|
291
290
|
*/
|
|
292
291
|
export type EnforcedAssetModelInterfaceRelationship = {
|
|
293
292
|
/**
|
|
294
|
-
* The ID of the
|
|
293
|
+
* The ID of the interface that is enforced to the asset model
|
|
295
294
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship-interfaceassetmodelid}
|
|
296
295
|
*/
|
|
297
296
|
InterfaceAssetModelId?: string | undefined;
|
|
298
297
|
/**
|
|
299
|
-
*
|
|
298
|
+
* Contains information about enforced interface property and asset model property
|
|
300
299
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship-propertymappings}
|
|
301
300
|
*/
|
|
302
301
|
PropertyMappings?: EnforcedAssetModelInterfacePropertyMapping[] | undefined;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Resource schema for AWS::IoTSiteWise::ComputationModel.
|
|
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
|
+
* Resource schema for AWS::IoTSiteWise::ComputationModel.
|
|
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.
|
|
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
|
+
* A description about 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
|
+
* An array of key-value pairs to apply to this resource.
|
|
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,9 +46,7 @@ export type IoTSiteWiseComputationModelProps = {
|
|
|
46
46
|
*/
|
|
47
47
|
export type IoTSiteWiseComputationModelAttribs = {
|
|
48
48
|
/**
|
|
49
|
-
* The ARN of the computation model
|
|
50
|
-
*
|
|
51
|
-
* `arn:${Partition}:iotsitewise:${Region}:${Account}:computation-model/${ComputationModelId}`
|
|
49
|
+
* The ARN of the computation model.
|
|
52
50
|
* @minLength 1
|
|
53
51
|
* @maxLength 1600
|
|
54
52
|
* @pattern ^arn:aws(-cn|-us-gov)?:[a-zA-Z0-9-:/_\.]+$
|
|
@@ -65,12 +63,11 @@ export type IoTSiteWiseComputationModelAttribs = {
|
|
|
65
63
|
ComputationModelId: string;
|
|
66
64
|
};
|
|
67
65
|
/**
|
|
68
|
-
* Contains the configuration for anomaly detection computation models.
|
|
69
66
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-anomalydetectioncomputationmodelconfiguration.html}
|
|
70
67
|
*/
|
|
71
68
|
export type AnomalyDetectionComputationModelConfiguration = {
|
|
72
69
|
/**
|
|
73
|
-
*
|
|
70
|
+
* Input properties for anomaly detection.
|
|
74
71
|
* @minLength 4
|
|
75
72
|
* @maxLength 67
|
|
76
73
|
* @pattern ^\$\{[a-z][a-z0-9_]*\}$
|
|
@@ -78,7 +75,7 @@ export type AnomalyDetectionComputationModelConfiguration = {
|
|
|
78
75
|
*/
|
|
79
76
|
InputProperties: string;
|
|
80
77
|
/**
|
|
81
|
-
*
|
|
78
|
+
* Result property for anomaly detection.
|
|
82
79
|
* @minLength 4
|
|
83
80
|
* @maxLength 67
|
|
84
81
|
* @pattern ^\$\{[a-z][a-z0-9_]*\}$
|
|
@@ -87,12 +84,11 @@ export type AnomalyDetectionComputationModelConfiguration = {
|
|
|
87
84
|
ResultProperty: string;
|
|
88
85
|
};
|
|
89
86
|
/**
|
|
90
|
-
* Contains information about an `assetModelProperty` binding value.
|
|
91
87
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-assetmodelpropertybindingvalue.html}
|
|
92
88
|
*/
|
|
93
89
|
export type AssetModelPropertyBindingValue = {
|
|
94
90
|
/**
|
|
95
|
-
* The ID of the asset model
|
|
91
|
+
* The ID of the asset model.
|
|
96
92
|
* @minLength 36
|
|
97
93
|
* @maxLength 36
|
|
98
94
|
* @pattern ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
|
|
@@ -100,7 +96,7 @@ export type AssetModelPropertyBindingValue = {
|
|
|
100
96
|
*/
|
|
101
97
|
AssetModelId: string;
|
|
102
98
|
/**
|
|
103
|
-
* The ID of the asset model property
|
|
99
|
+
* The ID of the asset model property.
|
|
104
100
|
* @minLength 36
|
|
105
101
|
* @maxLength 36
|
|
106
102
|
* @pattern ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
|
|
@@ -109,12 +105,11 @@ export type AssetModelPropertyBindingValue = {
|
|
|
109
105
|
PropertyId: string;
|
|
110
106
|
};
|
|
111
107
|
/**
|
|
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.
|
|
113
108
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-assetpropertybindingvalue.html}
|
|
114
109
|
*/
|
|
115
110
|
export type AssetPropertyBindingValue = {
|
|
116
111
|
/**
|
|
117
|
-
* The ID of the asset
|
|
112
|
+
* The ID of the asset.
|
|
118
113
|
* @minLength 36
|
|
119
114
|
* @maxLength 36
|
|
120
115
|
* @pattern ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
|
|
@@ -122,7 +117,7 @@ export type AssetPropertyBindingValue = {
|
|
|
122
117
|
*/
|
|
123
118
|
AssetId: string;
|
|
124
119
|
/**
|
|
125
|
-
* The ID of the
|
|
120
|
+
* The ID of the asset property.
|
|
126
121
|
* @minLength 36
|
|
127
122
|
* @maxLength 36
|
|
128
123
|
* @pattern ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
|
|
@@ -131,33 +126,31 @@ export type AssetPropertyBindingValue = {
|
|
|
131
126
|
PropertyId: string;
|
|
132
127
|
};
|
|
133
128
|
/**
|
|
134
|
-
* The configuration for the computation model.
|
|
135
129
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodelconfiguration.html}
|
|
136
130
|
*/
|
|
137
131
|
export type ComputationModelConfiguration = {
|
|
138
132
|
/**
|
|
139
|
-
*
|
|
133
|
+
* Contains configuration for anomaly detection computation model.
|
|
140
134
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodelconfiguration.html#cfn-iotsitewise-computationmodel-computationmodelconfiguration-anomalydetection}
|
|
141
135
|
*/
|
|
142
136
|
AnomalyDetection?: AnomalyDetectionComputationModelConfiguration | undefined;
|
|
143
137
|
};
|
|
144
138
|
/**
|
|
145
|
-
* Contains computation model data binding value information, which can be one of `assetModelProperty` , `list` .
|
|
146
139
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodeldatabindingvalue.html}
|
|
147
140
|
*/
|
|
148
141
|
export type ComputationModelDataBindingValue = {
|
|
149
142
|
/**
|
|
150
|
-
*
|
|
143
|
+
* Defines an asset model property binding.
|
|
151
144
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodeldatabindingvalue.html#cfn-iotsitewise-computationmodel-computationmodeldatabindingvalue-assetmodelproperty}
|
|
152
145
|
*/
|
|
153
146
|
AssetModelProperty?: AssetModelPropertyBindingValue | undefined;
|
|
154
147
|
/**
|
|
155
|
-
*
|
|
148
|
+
* Defines an asset property binding.
|
|
156
149
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodeldatabindingvalue.html#cfn-iotsitewise-computationmodel-computationmodeldatabindingvalue-assetproperty}
|
|
157
150
|
*/
|
|
158
151
|
AssetProperty?: AssetPropertyBindingValue | undefined;
|
|
159
152
|
/**
|
|
160
|
-
*
|
|
153
|
+
* Defines a list of computation model binding values.
|
|
161
154
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodeldatabindingvalue.html#cfn-iotsitewise-computationmodel-computationmodeldatabindingvalue-list}
|
|
162
155
|
*/
|
|
163
156
|
List?: ComputationModelDataBindingValue[] | undefined;
|