@awboost/cfn-resource-types 0.1.219 → 0.1.221

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,134 @@
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::PartnerApp
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html}
6
+ */
7
+ export type SageMakerPartnerAppProperties = {
8
+ /**
9
+ * A collection of settings that specify the maintenance schedule for the PartnerApp.
10
+ */
11
+ ApplicationConfig?: PartnerAppConfig;
12
+ /**
13
+ * The Auth type of PartnerApp.
14
+ */
15
+ AuthType: "IAM";
16
+ /**
17
+ * The client token for the PartnerApp.
18
+ * @minLength `1`
19
+ * @maxLength `36`
20
+ * @pattern `^[a-zA-Z0-9-]+$`
21
+ */
22
+ ClientToken?: string;
23
+ /**
24
+ * Enables IAM Session based Identity for PartnerApp.
25
+ */
26
+ EnableIamSessionBasedIdentity?: boolean;
27
+ /**
28
+ * The execution role for the user.
29
+ * @minLength `20`
30
+ * @maxLength `2048`
31
+ * @pattern `^arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+$`
32
+ */
33
+ ExecutionRoleArn: string;
34
+ /**
35
+ * A collection of settings that specify the maintenance schedule for the PartnerApp.
36
+ */
37
+ MaintenanceConfig?: PartnerAppMaintenanceConfig;
38
+ /**
39
+ * A name for the PartnerApp.
40
+ * @minLength `1`
41
+ * @maxLength `256`
42
+ * @pattern `^[a-zA-Z0-9]+`
43
+ */
44
+ Name: string;
45
+ /**
46
+ * A list of tags to apply to the PartnerApp.
47
+ * @minLength `0`
48
+ * @maxLength `50`
49
+ */
50
+ Tags?: Tag[];
51
+ /**
52
+ * The tier of the PartnerApp.
53
+ * @minLength `1`
54
+ * @maxLength `64`
55
+ */
56
+ Tier: string;
57
+ /**
58
+ * The type of PartnerApp.
59
+ */
60
+ Type: "lakera-guard" | "comet" | "deepchecks-llm-evaluation" | "fiddler";
61
+ };
62
+ /**
63
+ * Attribute type definition for `AWS::SageMaker::PartnerApp`.
64
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html#aws-resource-sagemaker-partnerapp-return-values}
65
+ */
66
+ export type SageMakerPartnerAppAttributes = {
67
+ /**
68
+ * The Amazon Resource Name (ARN) of the created PartnerApp.
69
+ * @minLength `1`
70
+ * @maxLength `128`
71
+ * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:partner-app/app-[A-Z0-9]{12}$`
72
+ */
73
+ Arn: string;
74
+ /**
75
+ * The AppServerUrl based on app and account-info.
76
+ * @maxLength `2048`
77
+ */
78
+ BaseUrl: string;
79
+ };
80
+ /**
81
+ * Type definition for `AWS::SageMaker::PartnerApp.PartnerAppConfig`.
82
+ * A collection of configuration settings for the PartnerApp.
83
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-partnerapp-partnerappconfig.html}
84
+ */
85
+ export type PartnerAppConfig = {
86
+ /**
87
+ * A list of users with administrator privileges for the PartnerApp.
88
+ * @minLength `0`
89
+ * @maxLength `5`
90
+ */
91
+ AdminUsers?: string[];
92
+ /**
93
+ * A list of arguments to pass to the PartnerApp.
94
+ */
95
+ Arguments?: Record<string, string>;
96
+ };
97
+ /**
98
+ * Type definition for `AWS::SageMaker::PartnerApp.PartnerAppMaintenanceConfig`.
99
+ * A collection of settings that specify the maintenance schedule for the PartnerApp.
100
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-partnerapp-partnerappmaintenanceconfig.html}
101
+ */
102
+ export type PartnerAppMaintenanceConfig = {
103
+ /**
104
+ * The maintenance window start day and time for the PartnerApp.
105
+ * @maxLength `9`
106
+ * @pattern `(Mon|Tue|Wed|Thu|Fri|Sat|Sun):([01]\d|2[0-3]):([0-5]\d)`
107
+ */
108
+ MaintenanceWindowStart: string;
109
+ };
110
+ /**
111
+ * Type definition for `AWS::SageMaker::PartnerApp.Tag`.
112
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-partnerapp-tag.html}
113
+ */
114
+ export type Tag = {
115
+ /**
116
+ * @minLength `1`
117
+ * @maxLength `128`
118
+ */
119
+ Key: string;
120
+ /**
121
+ * @minLength `1`
122
+ * @maxLength `128`
123
+ */
124
+ Value: string;
125
+ };
126
+ /**
127
+ * Resource Type definition for AWS::SageMaker::PartnerApp
128
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html}
129
+ */
130
+ export declare class SageMakerPartnerApp extends $Resource<"AWS::SageMaker::PartnerApp", SageMakerPartnerAppProperties, SageMakerPartnerAppAttributes> {
131
+ static readonly Type = "AWS::SageMaker::PartnerApp";
132
+ constructor(logicalId: string, properties: SageMakerPartnerAppProperties, options?: $ResourceOptions);
133
+ }
134
+ //# sourceMappingURL=AWS-SageMaker-PartnerApp.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::PartnerApp
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html}
5
+ */
6
+ export class SageMakerPartnerApp extends $Resource {
7
+ static Type = "AWS::SageMaker::PartnerApp";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, SageMakerPartnerApp.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-SageMaker-PartnerApp.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.219",
3
+ "version": "0.1.221",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },