@awboost/cfn-resource-types 0.1.112 → 0.1.114

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.
@@ -13,6 +13,7 @@ export type EC2TrafficMirrorFilterRuleProperties = {
13
13
  RuleNumber: number;
14
14
  SourceCidrBlock: string;
15
15
  SourcePortRange?: TrafficMirrorPortRange;
16
+ Tags?: Tag[];
16
17
  TrafficDirection: string;
17
18
  TrafficMirrorFilterId: string;
18
19
  };
@@ -23,6 +24,14 @@ export type EC2TrafficMirrorFilterRuleProperties = {
23
24
  export type EC2TrafficMirrorFilterRuleAttributes = {
24
25
  Id: string;
25
26
  };
27
+ /**
28
+ * Type definition for `AWS::EC2::TrafficMirrorFilterRule.Tag`.
29
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-tag.html}
30
+ */
31
+ export type Tag = {
32
+ Key: string;
33
+ Value: string;
34
+ };
26
35
  /**
27
36
  * Type definition for `AWS::EC2::TrafficMirrorFilterRule.TrafficMirrorPortRange`.
28
37
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html}
@@ -0,0 +1,95 @@
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::SageMaker::MlflowTrackingServer
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html}
6
+ */
7
+ export type SageMakerMlflowTrackingServerProperties = {
8
+ /**
9
+ * The Amazon S3 URI for MLFlow Tracking Server artifacts.
10
+ * @minLength `1`
11
+ * @maxLength `2048`
12
+ * @pattern `^s3:\/\/([^\/]+)\/?(.*)$`
13
+ */
14
+ ArtifactStoreUri: string;
15
+ /**
16
+ * A flag to enable Automatic SageMaker Model Registration.
17
+ */
18
+ AutomaticModelRegistration?: boolean;
19
+ /**
20
+ * The MLFlow Version used on the MLFlow Tracking Server.
21
+ * @minLength `1`
22
+ * @maxLength `32`
23
+ * @pattern `^\d+(\.\d+)+$`
24
+ */
25
+ MlflowVersion?: string;
26
+ /**
27
+ * The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on behalf of the customer.
28
+ * @minLength `20`
29
+ * @maxLength `2048`
30
+ * @pattern `^arn:aws[a-z\-]*:iam::\d{12}:role\/?[a-zA-Z_0-9+=,.@\-_\/]+$`
31
+ */
32
+ RoleArn: string;
33
+ /**
34
+ * An array of key-value pairs to apply to this resource.
35
+ * @minLength `1`
36
+ * @maxLength `50`
37
+ */
38
+ Tags?: Tag[];
39
+ /**
40
+ * The name of the MLFlow Tracking Server.
41
+ * @minLength `1`
42
+ * @maxLength `256`
43
+ * @pattern `^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,255}$`
44
+ */
45
+ TrackingServerName: string;
46
+ /**
47
+ * The size of the MLFlow Tracking Server.
48
+ */
49
+ TrackingServerSize?: "Small" | "Medium" | "Large";
50
+ /**
51
+ * The start of the time window for maintenance of the MLFlow Tracking Server in UTC time.
52
+ * @maxLength `9`
53
+ * @pattern `^(Mon|Tue|Wed|Thu|Fri|Sat|Sun):([01]\d|2[0-3]):([0-5]\d)$`
54
+ */
55
+ WeeklyMaintenanceWindowStart?: string;
56
+ };
57
+ /**
58
+ * Attribute type definition for `AWS::SageMaker::MlflowTrackingServer`.
59
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html#aws-resource-sagemaker-mlflowtrackingserver-return-values}
60
+ */
61
+ export type SageMakerMlflowTrackingServerAttributes = {
62
+ /**
63
+ * The Amazon Resource Name (ARN) of the MLFlow Tracking Server.
64
+ * @maxLength `2048`
65
+ * @pattern `^arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:mlflow-tracking-server/.*$`
66
+ */
67
+ TrackingServerArn: string;
68
+ };
69
+ /**
70
+ * Type definition for `AWS::SageMaker::MlflowTrackingServer.Tag`.
71
+ * A key-value pair to associate with a resource.
72
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-mlflowtrackingserver-tag.html}
73
+ */
74
+ export type Tag = {
75
+ /**
76
+ * The key name of the tag. You can specify a value that is 1 to 127 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 -.
77
+ * @minLength `1`
78
+ * @maxLength `128`
79
+ */
80
+ Key: string;
81
+ /**
82
+ * The value for the tag. You can specify a value that is 1 to 255 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 -.
83
+ * @maxLength `256`
84
+ */
85
+ Value: string;
86
+ };
87
+ /**
88
+ * Resource Type definition for AWS::SageMaker::MlflowTrackingServer
89
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html}
90
+ */
91
+ export declare class SageMakerMlflowTrackingServer extends $Resource<"AWS::SageMaker::MlflowTrackingServer", SageMakerMlflowTrackingServerProperties, SageMakerMlflowTrackingServerAttributes> {
92
+ static readonly Type = "AWS::SageMaker::MlflowTrackingServer";
93
+ constructor(logicalId: string, properties: SageMakerMlflowTrackingServerProperties, options?: $ResourceOptions);
94
+ }
95
+ //# sourceMappingURL=AWS-SageMaker-MlflowTrackingServer.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::SageMaker::MlflowTrackingServer
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-mlflowtrackingserver.html}
5
+ */
6
+ export class SageMakerMlflowTrackingServer extends $Resource {
7
+ static Type = "AWS::SageMaker::MlflowTrackingServer";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, SageMakerMlflowTrackingServer.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-SageMaker-MlflowTrackingServer.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.112",
3
+ "version": "0.1.114",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },