@awboost/cfn-resource-types 0.1.384 → 0.1.385
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.
- package/lib/AWS-ApplicationInsights-Application.d.ts +4 -4
- package/lib/AWS-ApplicationInsights-Application.js +1 -1
- package/lib/AWS-DAX-Cluster.d.ts +1 -0
- package/lib/AWS-DataZone-Connection.d.ts +1 -1
- package/lib/AWS-Lightsail-Domain.d.ts +112 -0
- package/lib/AWS-Lightsail-Domain.js +12 -0
- package/lib/AWS-MediaLive-Channel.d.ts +21 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
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
|
|
4
|
+
* Resource Type definition for AWS::ApplicationInsights::Application
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationinsights-application.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ApplicationInsightsApplicationProperties = {
|
|
@@ -155,7 +155,7 @@ export type ComponentMonitoringSetting = {
|
|
|
155
155
|
DefaultOverwriteComponentConfiguration?: ComponentConfiguration;
|
|
156
156
|
/**
|
|
157
157
|
* The tier of the application component.
|
|
158
|
-
* @pattern `^[A-Z][
|
|
158
|
+
* @pattern `^[A-Z][A-Z_]*$`
|
|
159
159
|
*/
|
|
160
160
|
Tier: string;
|
|
161
161
|
};
|
|
@@ -317,7 +317,7 @@ export type Log = {
|
|
|
317
317
|
LogPath?: string;
|
|
318
318
|
/**
|
|
319
319
|
* The log type decides the log patterns against which Application Insights analyzes the log.
|
|
320
|
-
* @pattern `^[A-Z][
|
|
320
|
+
* @pattern `^[A-Z][A-Z_]*$`
|
|
321
321
|
*/
|
|
322
322
|
LogType: string;
|
|
323
323
|
/**
|
|
@@ -514,7 +514,7 @@ export type WindowsEvent = {
|
|
|
514
514
|
PatternSet?: string;
|
|
515
515
|
};
|
|
516
516
|
/**
|
|
517
|
-
* Resource
|
|
517
|
+
* Resource Type definition for AWS::ApplicationInsights::Application
|
|
518
518
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationinsights-application.html}
|
|
519
519
|
*/
|
|
520
520
|
export declare class ApplicationInsightsApplication extends $Resource<"AWS::ApplicationInsights::Application", ApplicationInsightsApplicationProperties, ApplicationInsightsApplicationAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource Type definition for AWS::ApplicationInsights::Application
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationinsights-application.html}
|
|
5
5
|
*/
|
|
6
6
|
export class ApplicationInsightsApplication extends $Resource {
|
package/lib/AWS-DAX-Cluster.d.ts
CHANGED
|
@@ -0,0 +1,112 @@
|
|
|
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::Lightsail::Domain
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-domain.html}
|
|
6
|
+
*/
|
|
7
|
+
export type LightsailDomainProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* An array of key-value pairs containing information about the domain entries.
|
|
10
|
+
*/
|
|
11
|
+
DomainEntries?: DomainEntry[];
|
|
12
|
+
/**
|
|
13
|
+
* The name of the domain to manage in Lightsail.
|
|
14
|
+
*/
|
|
15
|
+
DomainName: string;
|
|
16
|
+
/**
|
|
17
|
+
* An array of key-value pairs to apply to this resource.
|
|
18
|
+
*/
|
|
19
|
+
Tags?: Tag[];
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Attribute type definition for `AWS::Lightsail::Domain`.
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-domain.html#aws-resource-lightsail-domain-return-values}
|
|
24
|
+
*/
|
|
25
|
+
export type LightsailDomainAttributes = {
|
|
26
|
+
/**
|
|
27
|
+
* The Amazon Resource Name (ARN) of the domain (read-only).
|
|
28
|
+
* @pattern `^arn:.+:lightsail:[a-z0-9-]+:[0-9]{12}:Domain/[a-zA-Z0-9][a-zA-Z0-9-_.]{0,253}[a-zA-Z0-9]$`
|
|
29
|
+
*/
|
|
30
|
+
Arn: string;
|
|
31
|
+
/**
|
|
32
|
+
* The timestamp when the domain was created (read-only).
|
|
33
|
+
*/
|
|
34
|
+
CreatedAt: string;
|
|
35
|
+
/**
|
|
36
|
+
* An array of key-value pairs containing information about the domain entries.
|
|
37
|
+
*/
|
|
38
|
+
DomainEntries: {
|
|
39
|
+
/**
|
|
40
|
+
* The ID of the domain recordset entry.
|
|
41
|
+
*/
|
|
42
|
+
Id: string;
|
|
43
|
+
}[];
|
|
44
|
+
/**
|
|
45
|
+
* The AWS Region and Availability Zone where the domain was created (read-only).
|
|
46
|
+
*/
|
|
47
|
+
Location: {
|
|
48
|
+
/**
|
|
49
|
+
* The Availability Zone.
|
|
50
|
+
*/
|
|
51
|
+
AvailabilityZone: string;
|
|
52
|
+
/**
|
|
53
|
+
* The AWS Region name.
|
|
54
|
+
*/
|
|
55
|
+
RegionName: string;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* The Lightsail resource type (read-only).
|
|
59
|
+
*/
|
|
60
|
+
ResourceType: "Domain";
|
|
61
|
+
/**
|
|
62
|
+
* The support code. Include this code in your email to support when you have questions (read-only).
|
|
63
|
+
*/
|
|
64
|
+
SupportCode: string;
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Type definition for `AWS::Lightsail::Domain.DomainEntry`.
|
|
68
|
+
* Describes the domain recordset entry (e.g., A record, CNAME record, TXT record, etc.)
|
|
69
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-domain-domainentry.html}
|
|
70
|
+
*/
|
|
71
|
+
export type DomainEntry = {
|
|
72
|
+
/**
|
|
73
|
+
* When true, specifies whether the domain entry is an alias used by the Lightsail load balancer, Lightsail container service, Lightsail content delivery network (CDN) distribution, or another AWS resource. You can include an alias (A type) record in your request, which points to the DNS name of a load balancer, container service, CDN distribution, or other AWS resource and routes traffic to that resource.
|
|
74
|
+
*/
|
|
75
|
+
IsAlias?: boolean;
|
|
76
|
+
/**
|
|
77
|
+
* The name of the domain entry.
|
|
78
|
+
*/
|
|
79
|
+
Name: string;
|
|
80
|
+
/**
|
|
81
|
+
* The target AWS name server (e.g., ns-111.awsdns-11.com).
|
|
82
|
+
*/
|
|
83
|
+
Target: string;
|
|
84
|
+
/**
|
|
85
|
+
* The type of domain entry (e.g., A, CNAME, MX, NS, SOA, SRV, TXT).
|
|
86
|
+
*/
|
|
87
|
+
Type: "A" | "AAAA" | "CNAME" | "MX" | "NS" | "SOA" | "SRV" | "TXT";
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Type definition for `AWS::Lightsail::Domain.Tag`.
|
|
91
|
+
* A key-value pair to associate with a resource.
|
|
92
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-domain-tag.html}
|
|
93
|
+
*/
|
|
94
|
+
export type Tag = {
|
|
95
|
+
/**
|
|
96
|
+
* The key name of the tag.
|
|
97
|
+
*/
|
|
98
|
+
Key: string;
|
|
99
|
+
/**
|
|
100
|
+
* The value for the tag.
|
|
101
|
+
*/
|
|
102
|
+
Value?: string;
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* Resource Type definition for AWS::Lightsail::Domain
|
|
106
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-domain.html}
|
|
107
|
+
*/
|
|
108
|
+
export declare class LightsailDomain extends $Resource<"AWS::Lightsail::Domain", LightsailDomainProperties, LightsailDomainAttributes> {
|
|
109
|
+
static readonly Type = "AWS::Lightsail::Domain";
|
|
110
|
+
constructor(logicalId: string, properties: LightsailDomainProperties, options?: $ResourceOptions);
|
|
111
|
+
}
|
|
112
|
+
//# sourceMappingURL=AWS-Lightsail-Domain.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::Lightsail::Domain
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-domain.html}
|
|
5
|
+
*/
|
|
6
|
+
export class LightsailDomain extends $Resource {
|
|
7
|
+
static Type = "AWS::Lightsail::Domain";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, LightsailDomain.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Lightsail-Domain.js.map
|
|
@@ -1247,6 +1247,7 @@ export type MaintenanceCreateSettings = {
|
|
|
1247
1247
|
*/
|
|
1248
1248
|
export type MediaPackageGroupSettings = {
|
|
1249
1249
|
Destination?: OutputLocationRef;
|
|
1250
|
+
MediapackageV2GroupSettings?: MediaPackageV2GroupSettings;
|
|
1250
1251
|
};
|
|
1251
1252
|
/**
|
|
1252
1253
|
* Type definition for `AWS::MediaLive::Channel.MediaPackageOutputDestinationSettings`.
|
|
@@ -1261,7 +1262,26 @@ export type MediaPackageOutputDestinationSettings = {
|
|
|
1261
1262
|
* Type definition for `AWS::MediaLive::Channel.MediaPackageOutputSettings`.
|
|
1262
1263
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackageoutputsettings.html}
|
|
1263
1264
|
*/
|
|
1264
|
-
export type MediaPackageOutputSettings =
|
|
1265
|
+
export type MediaPackageOutputSettings = {
|
|
1266
|
+
MediaPackageV2DestinationSettings?: MediaPackageV2DestinationSettings;
|
|
1267
|
+
};
|
|
1268
|
+
/**
|
|
1269
|
+
* Type definition for `AWS::MediaLive::Channel.MediaPackageV2DestinationSettings`.
|
|
1270
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackagev2destinationsettings.html}
|
|
1271
|
+
*/
|
|
1272
|
+
export type MediaPackageV2DestinationSettings = {
|
|
1273
|
+
AudioGroupId?: string;
|
|
1274
|
+
AudioRenditionSets?: string;
|
|
1275
|
+
HlsAutoSelect?: string;
|
|
1276
|
+
HlsDefault?: string;
|
|
1277
|
+
};
|
|
1278
|
+
/**
|
|
1279
|
+
* Type definition for `AWS::MediaLive::Channel.MediaPackageV2GroupSettings`.
|
|
1280
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-mediapackagev2groupsettings.html}
|
|
1281
|
+
*/
|
|
1282
|
+
export type MediaPackageV2GroupSettings = {
|
|
1283
|
+
CaptionLanguageMappings?: CaptionLanguageMapping[];
|
|
1284
|
+
};
|
|
1265
1285
|
/**
|
|
1266
1286
|
* Type definition for `AWS::MediaLive::Channel.MotionGraphicsConfiguration`.
|
|
1267
1287
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-motiongraphicsconfiguration.html}
|