@awboost/cfn-resource-types 0.1.317 → 0.1.318

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,109 @@
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::CloudFront::DistributionTenant
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html}
6
+ */
7
+ export type CloudFrontDistributionTenantProperties = {
8
+ ConnectionGroupId?: string;
9
+ Customizations?: Customizations;
10
+ DistributionId: string;
11
+ Domains: string[];
12
+ Enabled?: boolean;
13
+ ManagedCertificateRequest?: ManagedCertificateRequest;
14
+ Name: string;
15
+ Parameters?: Parameter[];
16
+ Tags?: Tag[];
17
+ };
18
+ /**
19
+ * Attribute type definition for `AWS::CloudFront::DistributionTenant`.
20
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html#aws-resource-cloudfront-distributiontenant-return-values}
21
+ */
22
+ export type CloudFrontDistributionTenantAttributes = {
23
+ Arn: string;
24
+ CreatedTime: string;
25
+ DomainResults: {
26
+ Domain: string;
27
+ Reason: "pending-validation" | "validation-failed" | "pending-activation" | "customer-activated";
28
+ Status: "active" | "inactive";
29
+ }[];
30
+ ETag: string;
31
+ Id: string;
32
+ LastModifiedTime: string;
33
+ Status: string;
34
+ };
35
+ /**
36
+ * Type definition for `AWS::CloudFront::DistributionTenant.Certificate`.
37
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-certificate.html}
38
+ */
39
+ export type Certificate = {
40
+ Arn?: string;
41
+ };
42
+ /**
43
+ * Type definition for `AWS::CloudFront::DistributionTenant.Customizations`.
44
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-customizations.html}
45
+ */
46
+ export type Customizations = {
47
+ Certificate?: Certificate;
48
+ GeoRestrictions?: GeoRestrictionCustomization;
49
+ WebAcl?: WebAclCustomization;
50
+ };
51
+ /**
52
+ * Type definition for `AWS::CloudFront::DistributionTenant.DomainResult`.
53
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-domainresult.html}
54
+ */
55
+ export type DomainResult = {
56
+ Domain?: string;
57
+ Reason?: "pending-validation" | "validation-failed" | "pending-activation" | "customer-activated";
58
+ Status?: "active" | "inactive";
59
+ };
60
+ /**
61
+ * Type definition for `AWS::CloudFront::DistributionTenant.GeoRestrictionCustomization`.
62
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-georestrictioncustomization.html}
63
+ */
64
+ export type GeoRestrictionCustomization = {
65
+ Locations?: string[];
66
+ RestrictionType?: "blacklist" | "whitelist" | "none";
67
+ };
68
+ /**
69
+ * Type definition for `AWS::CloudFront::DistributionTenant.ManagedCertificateRequest`.
70
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-managedcertificaterequest.html}
71
+ */
72
+ export type ManagedCertificateRequest = {
73
+ CertificateTransparencyLoggingPreference?: "enabled" | "disabled";
74
+ PrimaryDomainName?: string;
75
+ ValidationTokenHost?: "cloudfront" | "self-hosted";
76
+ };
77
+ /**
78
+ * Type definition for `AWS::CloudFront::DistributionTenant.Parameter`.
79
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-parameter.html}
80
+ */
81
+ export type Parameter = {
82
+ Name?: string;
83
+ Value?: string;
84
+ };
85
+ /**
86
+ * Type definition for `AWS::CloudFront::DistributionTenant.Tag`.
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-tag.html}
88
+ */
89
+ export type Tag = {
90
+ Key: string;
91
+ Value: string;
92
+ };
93
+ /**
94
+ * Type definition for `AWS::CloudFront::DistributionTenant.WebAclCustomization`.
95
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributiontenant-webaclcustomization.html}
96
+ */
97
+ export type WebAclCustomization = {
98
+ Action?: "override" | "disable";
99
+ Arn?: string;
100
+ };
101
+ /**
102
+ * Resource Type definition for AWS::CloudFront::DistributionTenant
103
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html}
104
+ */
105
+ export declare class CloudFrontDistributionTenant extends $Resource<"AWS::CloudFront::DistributionTenant", CloudFrontDistributionTenantProperties, CloudFrontDistributionTenantAttributes> {
106
+ static readonly Type = "AWS::CloudFront::DistributionTenant";
107
+ constructor(logicalId: string, properties: CloudFrontDistributionTenantProperties, options?: $ResourceOptions);
108
+ }
109
+ //# sourceMappingURL=AWS-CloudFront-DistributionTenant.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::CloudFront::DistributionTenant
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distributiontenant.html}
5
+ */
6
+ export class CloudFrontDistributionTenant extends $Resource {
7
+ static Type = "AWS::CloudFront::DistributionTenant";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, CloudFrontDistributionTenant.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-CloudFront-DistributionTenant.js.map
@@ -113,6 +113,7 @@ export type RedshiftServerlessWorkgroupAttributes = {
113
113
  * Definition for workgroup resource
114
114
  */
115
115
  Workgroup: {
116
+ BaseCapacity: number;
116
117
  ConfigParameters: {
117
118
  /**
118
119
  * @minLength `0`
@@ -141,6 +142,7 @@ export type RedshiftServerlessWorkgroupAttributes = {
141
142
  }[];
142
143
  };
143
144
  EnhancedVpcRouting: boolean;
145
+ MaxCapacity: number;
144
146
  /**
145
147
  * @minLength `3`
146
148
  * @maxLength `64`
@@ -205,8 +207,6 @@ export type Tag = {
205
207
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-workgroup.html}
206
208
  */
207
209
  export type Workgroup = {
208
- BaseCapacity?: number;
209
- MaxCapacity?: number;
210
210
  PricePerformanceTarget?: PerformanceTarget;
211
211
  };
212
212
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.317",
3
+ "version": "0.1.318",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },