@awboost/cfn-resource-types 0.1.219 → 0.1.220

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.
@@ -1,8 +1,8 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource type definition for `AWS::EC2::NetworkAcl`.
5
4
  * Specifies a network ACL for your VPC.
5
+ To add a network ACL entry, see [AWS::EC2::NetworkAclEntry](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html).
6
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkacl.html}
7
7
  */
8
8
  export type EC2NetworkAclProperties = {
@@ -38,8 +38,8 @@ export type Tag = {
38
38
  Value: string;
39
39
  };
40
40
  /**
41
- * Resource type definition for `AWS::EC2::NetworkAcl`.
42
41
  * Specifies a network ACL for your VPC.
42
+ To add a network ACL entry, see [AWS::EC2::NetworkAclEntry](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html).
43
43
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkacl.html}
44
44
  */
45
45
  export declare class EC2NetworkAcl extends $Resource<"AWS::EC2::NetworkAcl", EC2NetworkAclProperties, EC2NetworkAclAttributes> {
@@ -1,7 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource type definition for `AWS::EC2::NetworkAcl`.
4
3
  * Specifies a network ACL for your VPC.
4
+ To add a network ACL entry, see [AWS::EC2::NetworkAclEntry](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html).
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkacl.html}
6
6
  */
7
7
  export class EC2NetworkAcl extends $Resource {
@@ -42,6 +42,7 @@ export type EC2VPCEndpointProperties = {
42
42
  * The IDs of the subnets in which to create endpoint network interfaces. You must specify this property for an interface endpoint or a Gateway Load Balancer endpoint. You can't specify this property for a gateway endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.
43
43
  */
44
44
  SubnetIds?: string[];
45
+ Tags?: Tag[];
45
46
  /**
46
47
  * The type of endpoint.
47
48
  Default: Gateway
@@ -70,6 +71,14 @@ export type DnsOptionsSpecification = {
70
71
  DnsRecordIpType?: "ipv4" | "ipv6" | "dualstack" | "service-defined" | "not-specified";
71
72
  PrivateDnsOnlyForInboundResolverEndpoint?: "OnlyInboundResolver" | "AllResolvers" | "NotSpecified";
72
73
  };
74
+ /**
75
+ * Type definition for `AWS::EC2::VPCEndpoint.Tag`.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcendpoint-tag.html}
77
+ */
78
+ export type Tag = {
79
+ Key: string;
80
+ Value: string;
81
+ };
73
82
  /**
74
83
  * Resource type definition for `AWS::EC2::VPCEndpoint`.
75
84
  * Specifies a VPC endpoint. A VPC endpoint provides a private connection between your VPC and an endpoint service. You can use an endpoint service provided by AWS, an MKT Partner, or another AWS accounts in your organization. For more information, see the [User Guide](https://docs.aws.amazon.com/vpc/latest/privatelink/).
@@ -95,6 +95,7 @@ export type ClusterConfig = {
95
95
  InstanceCount?: number;
96
96
  InstanceType?: string;
97
97
  MultiAZWithStandbyEnabled?: boolean;
98
+ NodeOptions?: NodeOption[];
98
99
  WarmCount?: number;
99
100
  WarmEnabled?: boolean;
100
101
  WarmType?: string;
@@ -210,6 +211,23 @@ export type MasterUserOptions = {
210
211
  MasterUserName?: string;
211
212
  MasterUserPassword?: string;
212
213
  };
214
+ /**
215
+ * Type definition for `AWS::OpenSearchService::Domain.NodeConfig`.
216
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeconfig.html}
217
+ */
218
+ export type NodeConfig = {
219
+ Count?: number;
220
+ Enabled?: boolean;
221
+ Type?: string;
222
+ };
223
+ /**
224
+ * Type definition for `AWS::OpenSearchService::Domain.NodeOption`.
225
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeoption.html}
226
+ */
227
+ export type NodeOption = {
228
+ NodeConfig?: NodeConfig;
229
+ NodeType?: "coordinator";
230
+ };
213
231
  /**
214
232
  * Type definition for `AWS::OpenSearchService::Domain.NodeToNodeEncryptionOptions`.
215
233
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodetonodeencryptionoptions.html}
@@ -0,0 +1,90 @@
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
+ * Definition of the AWS::QuickSight::CustomPermissions Resource Type.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-custompermissions.html}
6
+ */
7
+ export type QuickSightCustomPermissionsProperties = {
8
+ /**
9
+ * @minLength `12`
10
+ * @maxLength `12`
11
+ * @pattern `^[0-9]{12}$`
12
+ */
13
+ AwsAccountId: string;
14
+ Capabilities?: Capabilities;
15
+ /**
16
+ * @minLength `1`
17
+ * @maxLength `64`
18
+ * @pattern `^[a-zA-Z0-9+=,.@_-]+$`
19
+ */
20
+ CustomPermissionsName: string;
21
+ /**
22
+ * @minLength `1`
23
+ * @maxLength `200`
24
+ */
25
+ Tags?: Tag[];
26
+ };
27
+ /**
28
+ * Attribute type definition for `AWS::QuickSight::CustomPermissions`.
29
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-custompermissions.html#aws-resource-quicksight-custompermissions-return-values}
30
+ */
31
+ export type QuickSightCustomPermissionsAttributes = {
32
+ Arn: string;
33
+ };
34
+ /**
35
+ * Type definition for `AWS::QuickSight::CustomPermissions.Capabilities`.
36
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html}
37
+ */
38
+ export type Capabilities = {
39
+ AddOrRunAnomalyDetectionForAnalyses?: CapabilityState;
40
+ CreateAndUpdateDashboardEmailReports?: CapabilityState;
41
+ CreateAndUpdateDataSources?: CapabilityState;
42
+ CreateAndUpdateDatasets?: CapabilityState;
43
+ CreateAndUpdateThemes?: CapabilityState;
44
+ CreateAndUpdateThresholdAlerts?: CapabilityState;
45
+ CreateSPICEDataset?: CapabilityState;
46
+ CreateSharedFolders?: CapabilityState;
47
+ ExportToCsv?: CapabilityState;
48
+ ExportToExcel?: CapabilityState;
49
+ RenameSharedFolders?: CapabilityState;
50
+ ShareAnalyses?: CapabilityState;
51
+ ShareDashboards?: CapabilityState;
52
+ ShareDataSources?: CapabilityState;
53
+ ShareDatasets?: CapabilityState;
54
+ SubscribeDashboardEmailReports?: CapabilityState;
55
+ ViewAccountSPICECapacity?: CapabilityState;
56
+ };
57
+ /**
58
+ * Type definition for `AWS::QuickSight::CustomPermissions.CapabilityState`.
59
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilitystate.html}
60
+ */
61
+ export type CapabilityState = "DENY";
62
+ /**
63
+ * Type definition for `AWS::QuickSight::CustomPermissions.Tag`.
64
+ * <p>The key or keys of the key-value pairs for the resource tag or tags assigned to the
65
+ resource.</p>
66
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-tag.html}
67
+ */
68
+ export type Tag = {
69
+ /**
70
+ * <p>Tag key.</p>
71
+ * @minLength `1`
72
+ * @maxLength `128`
73
+ */
74
+ Key: string;
75
+ /**
76
+ * <p>Tag value.</p>
77
+ * @minLength `1`
78
+ * @maxLength `256`
79
+ */
80
+ Value: string;
81
+ };
82
+ /**
83
+ * Definition of the AWS::QuickSight::CustomPermissions Resource Type.
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-custompermissions.html}
85
+ */
86
+ export declare class QuickSightCustomPermissions extends $Resource<"AWS::QuickSight::CustomPermissions", QuickSightCustomPermissionsProperties, QuickSightCustomPermissionsAttributes> {
87
+ static readonly Type = "AWS::QuickSight::CustomPermissions";
88
+ constructor(logicalId: string, properties: QuickSightCustomPermissionsProperties, options?: $ResourceOptions);
89
+ }
90
+ //# sourceMappingURL=AWS-QuickSight-CustomPermissions.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of the AWS::QuickSight::CustomPermissions Resource Type.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-custompermissions.html}
5
+ */
6
+ export class QuickSightCustomPermissions extends $Resource {
7
+ static Type = "AWS::QuickSight::CustomPermissions";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, QuickSightCustomPermissions.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-QuickSight-CustomPermissions.js.map
@@ -34,7 +34,7 @@ export type RDSDBClusterProperties = {
34
34
  AssociatedRoles?: DBClusterRole[];
35
35
  /**
36
36
  * Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically.
37
- Valid for Cluster Type: Multi-AZ DB clusters only
37
+ Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster
38
38
  */
39
39
  AutoMinorVersionUpgrade?: boolean;
40
40
  /**
@@ -277,7 +277,8 @@ export type RDSDBClusterProperties = {
277
277
  MasterUserPassword?: string;
278
278
  /**
279
279
  * The secret managed by RDS in AWS Secrets Manager for the master user password.
280
- For more information, see [Password management with Secrets Manager](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html) in the *Amazon RDS User Guide* and [Password management with Secrets Manager](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html) in the *Amazon Aurora User Guide.*
280
+ When you restore a DB cluster from a snapshot, Amazon RDS generates a new secret instead of reusing the secret specified in the ``SecretArn`` property. This ensures that the restored DB cluster is securely managed with a dedicated secret. To maintain consistent integration with your application, you might need to update resource configurations to reference the newly created secret.
281
+ For more information, see [Password management with Secrets Manager](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html) in the *Amazon RDS User Guide* and [Password management with Secrets Manager](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html) in the *Amazon Aurora User Guide.*
281
282
  */
282
283
  MasterUserSecret?: MasterUserSecret;
283
284
  /**
@@ -291,7 +292,7 @@ export type RDSDBClusterProperties = {
291
292
  /**
292
293
  * The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify ``0``.
293
294
  If ``MonitoringRoleArn`` is specified, also set ``MonitoringInterval`` to a value other than ``0``.
294
- Valid for Cluster Type: Multi-AZ DB clusters only
295
+ Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
295
296
  Valid Values: ``0 | 1 | 5 | 10 | 15 | 30 | 60``
296
297
  Default: ``0``
297
298
  */
@@ -299,7 +300,7 @@ export type RDSDBClusterProperties = {
299
300
  /**
300
301
  * The Amazon Resource Name (ARN) for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example is ``arn:aws:iam:123456789012:role/emaccess``. For information on creating a monitoring role, see [Setting up and enabling Enhanced Monitoring](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling) in the *Amazon RDS User Guide*.
301
302
  If ``MonitoringInterval`` is set to a value other than ``0``, supply a ``MonitoringRoleArn`` value.
302
- Valid for Cluster Type: Multi-AZ DB clusters only
303
+ Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
303
304
  */
304
305
  MonitoringRoleArn?: string;
305
306
  /**
@@ -316,19 +317,19 @@ export type RDSDBClusterProperties = {
316
317
  /**
317
318
  * Specifies whether to turn on Performance Insights for the DB cluster.
318
319
  For more information, see [Using Amazon Performance Insights](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html) in the *Amazon RDS User Guide*.
319
- Valid for Cluster Type: Multi-AZ DB clusters only
320
+ Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
320
321
  */
321
322
  PerformanceInsightsEnabled?: boolean;
322
323
  /**
323
324
  * The AWS KMS key identifier for encryption of Performance Insights data.
324
325
  The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
325
326
  If you don't specify a value for ``PerformanceInsightsKMSKeyId``, then Amazon RDS uses your default KMS key. There is a default KMS key for your AWS-account. Your AWS-account has a different default KMS key for each AWS-Region.
326
- Valid for Cluster Type: Multi-AZ DB clusters only
327
+ Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
327
328
  */
328
329
  PerformanceInsightsKmsKeyId?: string;
329
330
  /**
330
331
  * The number of days to retain Performance Insights data.
331
- Valid for Cluster Type: Multi-AZ DB clusters only
332
+ Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
332
333
  Valid Values:
333
334
  + ``7``
334
335
  + *month* * 31, where *month* is a number of months from 1-23. Examples: ``93`` (3 months * 31), ``341`` (11 months * 31), ``589`` (19 months * 31)
@@ -527,7 +528,8 @@ export type RDSDBClusterAttributes = {
527
528
  };
528
529
  /**
529
530
  * The secret managed by RDS in AWS Secrets Manager for the master user password.
530
- For more information, see [Password management with Secrets Manager](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html) in the *Amazon RDS User Guide* and [Password management with Secrets Manager](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html) in the *Amazon Aurora User Guide.*
531
+ When you restore a DB cluster from a snapshot, Amazon RDS generates a new secret instead of reusing the secret specified in the ``SecretArn`` property. This ensures that the restored DB cluster is securely managed with a dedicated secret. To maintain consistent integration with your application, you might need to update resource configurations to reference the newly created secret.
532
+ For more information, see [Password management with Secrets Manager](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html) in the *Amazon RDS User Guide* and [Password management with Secrets Manager](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html) in the *Amazon Aurora User Guide.*
531
533
  */
532
534
  MasterUserSecret: {
533
535
  /**
@@ -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.220",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },