@awboost/cfn-resource-types 0.1.453 → 0.1.454
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.
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource type definition for `AWS::APS::AnomalyDetector`.
|
|
5
|
+
* AnomalyDetector schema for cloudformation.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-anomalydetector.html}
|
|
7
|
+
*/
|
|
8
|
+
export type APSAnomalyDetectorProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The AnomalyDetector alias.
|
|
11
|
+
* @minLength `1`
|
|
12
|
+
* @maxLength `128`
|
|
13
|
+
*/
|
|
14
|
+
Alias: string;
|
|
15
|
+
/**
|
|
16
|
+
* Determines the anomaly detector's algorithm and its configuration.
|
|
17
|
+
*/
|
|
18
|
+
Configuration: AnomalyDetectorConfiguration;
|
|
19
|
+
/**
|
|
20
|
+
* The AnomalyDetector period of detection and metric generation.
|
|
21
|
+
*/
|
|
22
|
+
EvaluationIntervalInSeconds?: number;
|
|
23
|
+
/**
|
|
24
|
+
* An array of key-value pairs to provide meta-data.
|
|
25
|
+
*/
|
|
26
|
+
Labels?: Label[];
|
|
27
|
+
/**
|
|
28
|
+
* The action to perform when running the expression returns no data.
|
|
29
|
+
*/
|
|
30
|
+
MissingDataAction?: MissingDataAction;
|
|
31
|
+
/**
|
|
32
|
+
* An array of key-value pairs to apply to this resource.
|
|
33
|
+
*/
|
|
34
|
+
Tags?: Tag[];
|
|
35
|
+
/**
|
|
36
|
+
* Required to identify a specific APS Workspace associated with this Anomaly Detector.
|
|
37
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn):aps:[a-z0-9-]+:[0-9]+:workspace/[a-zA-Z0-9-]+$`
|
|
38
|
+
*/
|
|
39
|
+
Workspace: string;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Attribute type definition for `AWS::APS::AnomalyDetector`.
|
|
43
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-anomalydetector.html#aws-resource-aps-anomalydetector-return-values}
|
|
44
|
+
*/
|
|
45
|
+
export type APSAnomalyDetectorAttributes = {
|
|
46
|
+
/**
|
|
47
|
+
* The AnomalyDetector ARN.
|
|
48
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn):aps:[a-z0-9-]+:[0-9]+:anomalydetector/[a-zA-Z0-9-]+/[0-9A-Za-z][-.0-9A-Z_a-z]*$`
|
|
49
|
+
*/
|
|
50
|
+
Arn: string;
|
|
51
|
+
};
|
|
52
|
+
/**
|
|
53
|
+
* Type definition for `AWS::APS::AnomalyDetector.AnomalyDetectorConfiguration`.
|
|
54
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-anomalydetector-anomalydetectorconfiguration.html}
|
|
55
|
+
*/
|
|
56
|
+
export type AnomalyDetectorConfiguration = {
|
|
57
|
+
RandomCutForest: RandomCutForestConfiguration;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Type definition for `AWS::APS::AnomalyDetector.IgnoreNearExpected`.
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-anomalydetector-ignorenearexpected.html}
|
|
62
|
+
*/
|
|
63
|
+
export type IgnoreNearExpected = {
|
|
64
|
+
Amount?: number;
|
|
65
|
+
Ratio?: number;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Type definition for `AWS::APS::AnomalyDetector.Label`.
|
|
69
|
+
* A key-value pair to provide meta-data and multi-dimensional data analysis for filtering and aggregation.
|
|
70
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-anomalydetector-label.html}
|
|
71
|
+
*/
|
|
72
|
+
export type Label = {
|
|
73
|
+
/**
|
|
74
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
75
|
+
* @minLength `1`
|
|
76
|
+
* @maxLength `128`
|
|
77
|
+
*/
|
|
78
|
+
Key: string;
|
|
79
|
+
/**
|
|
80
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
81
|
+
* @minLength `0`
|
|
82
|
+
* @maxLength `256`
|
|
83
|
+
*/
|
|
84
|
+
Value: string;
|
|
85
|
+
};
|
|
86
|
+
/**
|
|
87
|
+
* Type definition for `AWS::APS::AnomalyDetector.MissingDataAction`.
|
|
88
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-anomalydetector-missingdataaction.html}
|
|
89
|
+
*/
|
|
90
|
+
export type MissingDataAction = {
|
|
91
|
+
MarkAsAnomaly?: boolean;
|
|
92
|
+
Skip?: boolean;
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* Type definition for `AWS::APS::AnomalyDetector.RandomCutForestConfiguration`.
|
|
96
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-anomalydetector-randomcutforestconfiguration.html}
|
|
97
|
+
*/
|
|
98
|
+
export type RandomCutForestConfiguration = {
|
|
99
|
+
IgnoreNearExpectedFromAbove?: IgnoreNearExpected;
|
|
100
|
+
IgnoreNearExpectedFromBelow?: IgnoreNearExpected;
|
|
101
|
+
/**
|
|
102
|
+
* @minLength `1`
|
|
103
|
+
*/
|
|
104
|
+
Query: string;
|
|
105
|
+
/**
|
|
106
|
+
* @min `256`
|
|
107
|
+
* @max `1024`
|
|
108
|
+
*/
|
|
109
|
+
SampleSize?: number;
|
|
110
|
+
/**
|
|
111
|
+
* @min `2`
|
|
112
|
+
* @max `1024`
|
|
113
|
+
*/
|
|
114
|
+
ShingleSize?: number;
|
|
115
|
+
};
|
|
116
|
+
/**
|
|
117
|
+
* Type definition for `AWS::APS::AnomalyDetector.Tag`.
|
|
118
|
+
* A key-value pair to associate a tag level security for the resource.
|
|
119
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-anomalydetector-tag.html}
|
|
120
|
+
*/
|
|
121
|
+
export type Tag = {
|
|
122
|
+
/**
|
|
123
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
124
|
+
* @minLength `1`
|
|
125
|
+
* @maxLength `128`
|
|
126
|
+
*/
|
|
127
|
+
Key: string;
|
|
128
|
+
/**
|
|
129
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
130
|
+
* @minLength `0`
|
|
131
|
+
* @maxLength `256`
|
|
132
|
+
*/
|
|
133
|
+
Value: string;
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* Resource type definition for `AWS::APS::AnomalyDetector`.
|
|
137
|
+
* AnomalyDetector schema for cloudformation.
|
|
138
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-anomalydetector.html}
|
|
139
|
+
*/
|
|
140
|
+
export declare class APSAnomalyDetector extends $Resource<"AWS::APS::AnomalyDetector", APSAnomalyDetectorProperties, APSAnomalyDetectorAttributes> {
|
|
141
|
+
static readonly Type = "AWS::APS::AnomalyDetector";
|
|
142
|
+
constructor(logicalId: string, properties: APSAnomalyDetectorProperties, options?: $ResourceOptions);
|
|
143
|
+
}
|
|
144
|
+
//# sourceMappingURL=AWS-APS-AnomalyDetector.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::APS::AnomalyDetector`.
|
|
4
|
+
* AnomalyDetector schema for cloudformation.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-anomalydetector.html}
|
|
6
|
+
*/
|
|
7
|
+
export class APSAnomalyDetector extends $Resource {
|
|
8
|
+
static Type = "AWS::APS::AnomalyDetector";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, APSAnomalyDetector.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-APS-AnomalyDetector.js.map
|
|
@@ -1297,6 +1297,15 @@ export type MediaPackageV2DestinationSettings = {
|
|
|
1297
1297
|
*/
|
|
1298
1298
|
export type MediaPackageV2GroupSettings = {
|
|
1299
1299
|
CaptionLanguageMappings?: CaptionLanguageMapping[];
|
|
1300
|
+
Id3Behavior?: string;
|
|
1301
|
+
KlvBehavior?: string;
|
|
1302
|
+
NielsenId3Behavior?: string;
|
|
1303
|
+
Scte35Type?: string;
|
|
1304
|
+
SegmentLength?: number;
|
|
1305
|
+
SegmentLengthUnits?: string;
|
|
1306
|
+
TimedMetadataId3Frame?: string;
|
|
1307
|
+
TimedMetadataId3Period?: number;
|
|
1308
|
+
TimedMetadataPassthrough?: string;
|
|
1300
1309
|
};
|
|
1301
1310
|
/**
|
|
1302
1311
|
* Type definition for `AWS::MediaLive::Channel.MotionGraphicsConfiguration`.
|
|
@@ -55,6 +55,10 @@ export type NeptuneDBInstanceProperties = {
|
|
|
55
55
|
* Specifies the weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).
|
|
56
56
|
*/
|
|
57
57
|
PreferredMaintenanceWindow?: string;
|
|
58
|
+
/**
|
|
59
|
+
* Indicates that public accessibility is enabled. This should be enabled in combination with IAM Auth enabled on the DBCluster
|
|
60
|
+
*/
|
|
61
|
+
PubliclyAccessible?: boolean;
|
|
58
62
|
/**
|
|
59
63
|
* An arbitrary set of tags (key-value pairs) for this DB instance.
|
|
60
64
|
*/
|
|
@@ -50,6 +50,10 @@ export type SageMakerClusterProperties = {
|
|
|
50
50
|
* @maxLength `50`
|
|
51
51
|
*/
|
|
52
52
|
Tags?: Tag[];
|
|
53
|
+
/**
|
|
54
|
+
* Configuration for tiered storage in the SageMaker HyperPod cluster.
|
|
55
|
+
*/
|
|
56
|
+
TieredStorageConfig?: TieredStorageConfig;
|
|
53
57
|
/**
|
|
54
58
|
* Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to. You can control access to and from your resources by configuring a VPC.
|
|
55
59
|
*/
|
|
@@ -461,6 +465,21 @@ export type Tag = {
|
|
|
461
465
|
*/
|
|
462
466
|
Value: string;
|
|
463
467
|
};
|
|
468
|
+
/**
|
|
469
|
+
* Type definition for `AWS::SageMaker::Cluster.TieredStorageConfig`.
|
|
470
|
+
* Configuration for tiered storage in the SageMaker HyperPod cluster.
|
|
471
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-tieredstorageconfig.html}
|
|
472
|
+
*/
|
|
473
|
+
export type TieredStorageConfig = {
|
|
474
|
+
/**
|
|
475
|
+
* The percentage of instance memory to allocate for tiered storage.
|
|
476
|
+
*/
|
|
477
|
+
InstanceMemoryAllocationPercentage?: number;
|
|
478
|
+
/**
|
|
479
|
+
* The mode of tiered storage.
|
|
480
|
+
*/
|
|
481
|
+
Mode: "Enable" | "Disable";
|
|
482
|
+
};
|
|
464
483
|
/**
|
|
465
484
|
* Type definition for `AWS::SageMaker::Cluster.VpcConfig`.
|
|
466
485
|
* Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to. You can control access to and from your resources by configuring a VPC.
|