@awboost/cfn-resource-types 0.1.138 → 0.1.140

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.
Files changed (35) hide show
  1. package/lib/AWS-Amplify-App.d.ts +8 -0
  2. package/lib/AWS-ECS-Service.d.ts +36 -26
  3. package/lib/AWS-ECS-Service.js +2 -2
  4. package/lib/AWS-ECS-TaskDefinition.d.ts +53 -32
  5. package/lib/AWS-ElasticLoadBalancingV2-Listener.d.ts +9 -0
  6. package/lib/AWS-IoTFleetWise-DecoderManifest.d.ts +2 -2
  7. package/lib/AWS-MediaConnect-Flow.d.ts +15 -0
  8. package/lib/AWS-MediaLive-ChannelPlacementGroup.d.ts +70 -0
  9. package/lib/AWS-MediaLive-ChannelPlacementGroup.js +12 -0
  10. package/lib/AWS-MediaLive-CloudWatchAlarmTemplate.d.ts +139 -0
  11. package/lib/AWS-MediaLive-CloudWatchAlarmTemplate.js +12 -0
  12. package/lib/AWS-MediaLive-CloudWatchAlarmTemplateGroup.d.ts +61 -0
  13. package/lib/AWS-MediaLive-CloudWatchAlarmTemplateGroup.js +12 -0
  14. package/lib/AWS-MediaLive-Cluster.d.ts +112 -0
  15. package/lib/AWS-MediaLive-Cluster.js +12 -0
  16. package/lib/AWS-MediaLive-EventBridgeRuleTemplate.d.ts +110 -0
  17. package/lib/AWS-MediaLive-EventBridgeRuleTemplate.js +12 -0
  18. package/lib/AWS-MediaLive-EventBridgeRuleTemplateGroup.d.ts +61 -0
  19. package/lib/AWS-MediaLive-EventBridgeRuleTemplateGroup.js +12 -0
  20. package/lib/AWS-MediaLive-Network.d.ts +91 -0
  21. package/lib/AWS-MediaLive-Network.js +12 -0
  22. package/lib/AWS-MediaLive-SdiSource.d.ts +82 -0
  23. package/lib/AWS-MediaLive-SdiSource.js +12 -0
  24. package/lib/AWS-MediaLive-SignalMap.d.ts +307 -0
  25. package/lib/AWS-MediaLive-SignalMap.js +12 -0
  26. package/lib/AWS-Pipes-Pipe.d.ts +5 -0
  27. package/lib/AWS-QuickSight-Analysis.d.ts +13 -0
  28. package/lib/AWS-QuickSight-Template.d.ts +13 -0
  29. package/lib/AWS-SNS-Subscription.d.ts +41 -5
  30. package/lib/AWS-SageMaker-Cluster.d.ts +241 -0
  31. package/lib/AWS-SageMaker-Cluster.js +12 -0
  32. package/lib/AWS-SageMaker-Domain.d.ts +43 -0
  33. package/lib/AWS-SageMaker-Space.d.ts +21 -0
  34. package/lib/AWS-SageMaker-UserProfile.d.ts +43 -0
  35. package/package.json +1 -1
@@ -29,6 +29,10 @@ export type MediaConnectFlowProperties = {
29
29
  * The source failover config of the flow.
30
30
  */
31
31
  SourceFailoverConfig?: FailoverConfig;
32
+ /**
33
+ * The source monitoring config of the flow.
34
+ */
35
+ SourceMonitoringConfig?: SourceMonitoringConfig;
32
36
  /**
33
37
  * The VPC interfaces that you added to this flow.
34
38
  */
@@ -398,6 +402,17 @@ export type Source = {
398
402
  */
399
403
  WhitelistCidr?: string;
400
404
  };
405
+ /**
406
+ * Type definition for `AWS::MediaConnect::Flow.SourceMonitoringConfig`.
407
+ * The settings for source monitoring.
408
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-sourcemonitoringconfig.html}
409
+ */
410
+ export type SourceMonitoringConfig = {
411
+ /**
412
+ * The state of thumbnail monitoring.
413
+ */
414
+ ThumbnailState: "ENABLED" | "DISABLED";
415
+ };
401
416
  /**
402
417
  * Type definition for `AWS::MediaConnect::Flow.VpcInterface`.
403
418
  * The details of a VPC interface.
@@ -0,0 +1,70 @@
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 AWS::MediaLive::ChannelPlacementGroup Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channelplacementgroup.html}
6
+ */
7
+ export type MediaLiveChannelPlacementGroupProperties = {
8
+ /**
9
+ * The ID of the cluster the node is on.
10
+ */
11
+ ClusterId?: string;
12
+ /**
13
+ * The name of the channel placement group.
14
+ */
15
+ Name?: string;
16
+ /**
17
+ * List of nodes added to the channel placement group
18
+ */
19
+ Nodes?: string[];
20
+ /**
21
+ * A collection of key-value pairs.
22
+ */
23
+ Tags?: Tags[];
24
+ };
25
+ /**
26
+ * Attribute type definition for `AWS::MediaLive::ChannelPlacementGroup`.
27
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channelplacementgroup.html#aws-resource-medialive-channelplacementgroup-return-values}
28
+ */
29
+ export type MediaLiveChannelPlacementGroupAttributes = {
30
+ /**
31
+ * The ARN of the channel placement group.
32
+ */
33
+ Arn: string;
34
+ /**
35
+ * List of channel IDs added to the channel placement group.
36
+ */
37
+ Channels: string[];
38
+ /**
39
+ * Unique internal identifier.
40
+ */
41
+ Id: string;
42
+ /**
43
+ * The current state of the ChannelPlacementGroupState
44
+ */
45
+ State: ChannelPlacementGroupState;
46
+ };
47
+ /**
48
+ * Type definition for `AWS::MediaLive::ChannelPlacementGroup.ChannelPlacementGroupState`.
49
+ * The current state of the ChannelPlacementGroupState
50
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channelplacementgroup-channelplacementgroupstate.html}
51
+ */
52
+ export type ChannelPlacementGroupState = "UNASSIGNED" | "ASSIGNING" | "ASSIGNED" | "DELETING" | "DELETED" | "UNASSIGNING";
53
+ /**
54
+ * Type definition for `AWS::MediaLive::ChannelPlacementGroup.Tags`.
55
+ * A key-value pair to associate with a resource.
56
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channelplacementgroup-tags.html}
57
+ */
58
+ export type Tags = {
59
+ Key?: string;
60
+ Value?: string;
61
+ };
62
+ /**
63
+ * Definition of AWS::MediaLive::ChannelPlacementGroup Resource Type
64
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channelplacementgroup.html}
65
+ */
66
+ export declare class MediaLiveChannelPlacementGroup extends $Resource<"AWS::MediaLive::ChannelPlacementGroup", MediaLiveChannelPlacementGroupProperties, MediaLiveChannelPlacementGroupAttributes> {
67
+ static readonly Type = "AWS::MediaLive::ChannelPlacementGroup";
68
+ constructor(logicalId: string, properties: MediaLiveChannelPlacementGroupProperties, options?: $ResourceOptions);
69
+ }
70
+ //# sourceMappingURL=AWS-MediaLive-ChannelPlacementGroup.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::MediaLive::ChannelPlacementGroup Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channelplacementgroup.html}
5
+ */
6
+ export class MediaLiveChannelPlacementGroup extends $Resource {
7
+ static Type = "AWS::MediaLive::ChannelPlacementGroup";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, MediaLiveChannelPlacementGroup.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-MediaLive-ChannelPlacementGroup.js.map
@@ -0,0 +1,139 @@
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 AWS::MediaLive::CloudWatchAlarmTemplate Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-cloudwatchalarmtemplate.html}
6
+ */
7
+ export type MediaLiveCloudWatchAlarmTemplateProperties = {
8
+ /**
9
+ * The comparison operator used to compare the specified statistic and the threshold.
10
+ */
11
+ ComparisonOperator: CloudWatchAlarmTemplateComparisonOperator;
12
+ /**
13
+ * The number of datapoints within the evaluation period that must be breaching to trigger the alarm.
14
+ * @min `1`
15
+ */
16
+ DatapointsToAlarm?: number;
17
+ /**
18
+ * A resource's optional description.
19
+ * @minLength `0`
20
+ * @maxLength `1024`
21
+ */
22
+ Description?: string;
23
+ /**
24
+ * The number of periods over which data is compared to the specified threshold.
25
+ * @min `1`
26
+ */
27
+ EvaluationPeriods: number;
28
+ /**
29
+ * A cloudwatch alarm template group's identifier. Can be either be its id or current name.
30
+ * @pattern `^[^\s]+$`
31
+ */
32
+ GroupIdentifier: string;
33
+ /**
34
+ * The name of the metric associated with the alarm. Must be compatible with targetResourceType.
35
+ * @minLength `0`
36
+ * @maxLength `64`
37
+ */
38
+ MetricName: string;
39
+ /**
40
+ * A resource's name. Names must be unique within the scope of a resource type in a specific region.
41
+ * @minLength `1`
42
+ * @maxLength `255`
43
+ * @pattern `^[^\s]+$`
44
+ */
45
+ Name: string;
46
+ /**
47
+ * The period, in seconds, over which the specified statistic is applied.
48
+ * @min `10`
49
+ * @max `86400`
50
+ */
51
+ Period: number;
52
+ /**
53
+ * The statistic to apply to the alarm's metric data.
54
+ */
55
+ Statistic: CloudWatchAlarmTemplateStatistic;
56
+ /**
57
+ * Represents the tags associated with a resource.
58
+ */
59
+ Tags?: TagMap;
60
+ /**
61
+ * The resource type this template should dynamically generate cloudwatch metric alarms for.
62
+ */
63
+ TargetResourceType: CloudWatchAlarmTemplateTargetResourceType;
64
+ /**
65
+ * The threshold value to compare with the specified statistic.
66
+ */
67
+ Threshold: number;
68
+ /**
69
+ * Specifies how missing data points are treated when evaluating the alarm's condition.
70
+ */
71
+ TreatMissingData: CloudWatchAlarmTemplateTreatMissingData;
72
+ };
73
+ /**
74
+ * Attribute type definition for `AWS::MediaLive::CloudWatchAlarmTemplate`.
75
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-cloudwatchalarmtemplate.html#aws-resource-medialive-cloudwatchalarmtemplate-return-values}
76
+ */
77
+ export type MediaLiveCloudWatchAlarmTemplateAttributes = {
78
+ /**
79
+ * A cloudwatch alarm template's ARN (Amazon Resource Name)
80
+ * @pattern `^arn:.+:medialive:.+:cloudwatch-alarm-template:.+$`
81
+ */
82
+ Arn: string;
83
+ CreatedAt: string;
84
+ /**
85
+ * A cloudwatch alarm template group's id. AWS provided template groups have ids that start with `aws-`
86
+ * @minLength `7`
87
+ * @maxLength `11`
88
+ * @pattern `^(aws-)?[0-9]{7}$`
89
+ */
90
+ GroupId: string;
91
+ /**
92
+ * A cloudwatch alarm template's id. AWS provided templates have ids that start with `aws-`
93
+ * @minLength `7`
94
+ * @maxLength `11`
95
+ * @pattern `^(aws-)?[0-9]{7}$`
96
+ */
97
+ Id: string;
98
+ Identifier: string;
99
+ ModifiedAt: string;
100
+ };
101
+ /**
102
+ * Type definition for `AWS::MediaLive::CloudWatchAlarmTemplate.CloudWatchAlarmTemplateComparisonOperator`.
103
+ * The comparison operator used to compare the specified statistic and the threshold.
104
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cloudwatchalarmtemplate-cloudwatchalarmtemplatecomparisonoperator.html}
105
+ */
106
+ export type CloudWatchAlarmTemplateComparisonOperator = "GreaterThanOrEqualToThreshold" | "GreaterThanThreshold" | "LessThanThreshold" | "LessThanOrEqualToThreshold";
107
+ /**
108
+ * Type definition for `AWS::MediaLive::CloudWatchAlarmTemplate.CloudWatchAlarmTemplateStatistic`.
109
+ * The statistic to apply to the alarm's metric data.
110
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cloudwatchalarmtemplate-cloudwatchalarmtemplatestatistic.html}
111
+ */
112
+ export type CloudWatchAlarmTemplateStatistic = "SampleCount" | "Average" | "Sum" | "Minimum" | "Maximum";
113
+ /**
114
+ * Type definition for `AWS::MediaLive::CloudWatchAlarmTemplate.CloudWatchAlarmTemplateTargetResourceType`.
115
+ * The resource type this template should dynamically generate cloudwatch metric alarms for.
116
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cloudwatchalarmtemplate-cloudwatchalarmtemplatetargetresourcetype.html}
117
+ */
118
+ export type CloudWatchAlarmTemplateTargetResourceType = "CLOUDFRONT_DISTRIBUTION" | "MEDIALIVE_MULTIPLEX" | "MEDIALIVE_CHANNEL" | "MEDIALIVE_INPUT_DEVICE" | "MEDIAPACKAGE_CHANNEL" | "MEDIAPACKAGE_ORIGIN_ENDPOINT" | "MEDIACONNECT_FLOW" | "S3_BUCKET";
119
+ /**
120
+ * Type definition for `AWS::MediaLive::CloudWatchAlarmTemplate.CloudWatchAlarmTemplateTreatMissingData`.
121
+ * Specifies how missing data points are treated when evaluating the alarm's condition.
122
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cloudwatchalarmtemplate-cloudwatchalarmtemplatetreatmissingdata.html}
123
+ */
124
+ export type CloudWatchAlarmTemplateTreatMissingData = "notBreaching" | "breaching" | "ignore" | "missing";
125
+ /**
126
+ * Type definition for `AWS::MediaLive::CloudWatchAlarmTemplate.TagMap`.
127
+ * Represents the tags associated with a resource.
128
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cloudwatchalarmtemplate-tagmap.html}
129
+ */
130
+ export type TagMap = Record<string, string>;
131
+ /**
132
+ * Definition of AWS::MediaLive::CloudWatchAlarmTemplate Resource Type
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-cloudwatchalarmtemplate.html}
134
+ */
135
+ export declare class MediaLiveCloudWatchAlarmTemplate extends $Resource<"AWS::MediaLive::CloudWatchAlarmTemplate", MediaLiveCloudWatchAlarmTemplateProperties, MediaLiveCloudWatchAlarmTemplateAttributes> {
136
+ static readonly Type = "AWS::MediaLive::CloudWatchAlarmTemplate";
137
+ constructor(logicalId: string, properties: MediaLiveCloudWatchAlarmTemplateProperties, options?: $ResourceOptions);
138
+ }
139
+ //# sourceMappingURL=AWS-MediaLive-CloudWatchAlarmTemplate.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::MediaLive::CloudWatchAlarmTemplate Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-cloudwatchalarmtemplate.html}
5
+ */
6
+ export class MediaLiveCloudWatchAlarmTemplate extends $Resource {
7
+ static Type = "AWS::MediaLive::CloudWatchAlarmTemplate";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, MediaLiveCloudWatchAlarmTemplate.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-MediaLive-CloudWatchAlarmTemplate.js.map
@@ -0,0 +1,61 @@
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 AWS::MediaLive::CloudWatchAlarmTemplateGroup Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-cloudwatchalarmtemplategroup.html}
6
+ */
7
+ export type MediaLiveCloudWatchAlarmTemplateGroupProperties = {
8
+ /**
9
+ * A resource's optional description.
10
+ * @minLength `0`
11
+ * @maxLength `1024`
12
+ */
13
+ Description?: string;
14
+ /**
15
+ * A resource's name. Names must be unique within the scope of a resource type in a specific region.
16
+ * @minLength `1`
17
+ * @maxLength `255`
18
+ * @pattern `^[^\s]+$`
19
+ */
20
+ Name: string;
21
+ /**
22
+ * Represents the tags associated with a resource.
23
+ */
24
+ Tags?: TagMap;
25
+ };
26
+ /**
27
+ * Attribute type definition for `AWS::MediaLive::CloudWatchAlarmTemplateGroup`.
28
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-cloudwatchalarmtemplategroup.html#aws-resource-medialive-cloudwatchalarmtemplategroup-return-values}
29
+ */
30
+ export type MediaLiveCloudWatchAlarmTemplateGroupAttributes = {
31
+ /**
32
+ * A cloudwatch alarm template group's ARN (Amazon Resource Name)
33
+ * @pattern `^arn:.+:medialive:.+:cloudwatch-alarm-template-group:.+$`
34
+ */
35
+ Arn: string;
36
+ CreatedAt: string;
37
+ /**
38
+ * A cloudwatch alarm template group's id. AWS provided template groups have ids that start with `aws-`
39
+ * @minLength `7`
40
+ * @maxLength `11`
41
+ * @pattern `^(aws-)?[0-9]{7}$`
42
+ */
43
+ Id: string;
44
+ Identifier: string;
45
+ ModifiedAt: string;
46
+ };
47
+ /**
48
+ * Type definition for `AWS::MediaLive::CloudWatchAlarmTemplateGroup.TagMap`.
49
+ * Represents the tags associated with a resource.
50
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cloudwatchalarmtemplategroup-tagmap.html}
51
+ */
52
+ export type TagMap = Record<string, string>;
53
+ /**
54
+ * Definition of AWS::MediaLive::CloudWatchAlarmTemplateGroup Resource Type
55
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-cloudwatchalarmtemplategroup.html}
56
+ */
57
+ export declare class MediaLiveCloudWatchAlarmTemplateGroup extends $Resource<"AWS::MediaLive::CloudWatchAlarmTemplateGroup", MediaLiveCloudWatchAlarmTemplateGroupProperties, MediaLiveCloudWatchAlarmTemplateGroupAttributes> {
58
+ static readonly Type = "AWS::MediaLive::CloudWatchAlarmTemplateGroup";
59
+ constructor(logicalId: string, properties: MediaLiveCloudWatchAlarmTemplateGroupProperties, options?: $ResourceOptions);
60
+ }
61
+ //# sourceMappingURL=AWS-MediaLive-CloudWatchAlarmTemplateGroup.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::MediaLive::CloudWatchAlarmTemplateGroup Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-cloudwatchalarmtemplategroup.html}
5
+ */
6
+ export class MediaLiveCloudWatchAlarmTemplateGroup extends $Resource {
7
+ static Type = "AWS::MediaLive::CloudWatchAlarmTemplateGroup";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, MediaLiveCloudWatchAlarmTemplateGroup.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-MediaLive-CloudWatchAlarmTemplateGroup.js.map
@@ -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
+ * Definition of AWS::MediaLive::Cluster Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-cluster.html}
6
+ */
7
+ export type MediaLiveClusterProperties = {
8
+ /**
9
+ * The hardware type for the cluster.
10
+ */
11
+ ClusterType?: ClusterType;
12
+ /**
13
+ * The IAM role your nodes will use.
14
+ * @pattern `^arn:.+:iam:.+:role/.+$`
15
+ */
16
+ InstanceRoleArn?: string;
17
+ /**
18
+ * The user-specified name of the Cluster to be created.
19
+ */
20
+ Name?: string;
21
+ /**
22
+ * On premises settings which will have the interface network mappings and default Output logical interface
23
+ */
24
+ NetworkSettings?: ClusterNetworkSettings;
25
+ /**
26
+ * A collection of key-value pairs.
27
+ */
28
+ Tags?: Tags[];
29
+ };
30
+ /**
31
+ * Attribute type definition for `AWS::MediaLive::Cluster`.
32
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-cluster.html#aws-resource-medialive-cluster-return-values}
33
+ */
34
+ export type MediaLiveClusterAttributes = {
35
+ /**
36
+ * The ARN of the Cluster.
37
+ * @pattern `^arn:.+:medialive:.+:cluster:.+$`
38
+ */
39
+ Arn: string;
40
+ /**
41
+ * The MediaLive Channels that are currently running on Nodes in this Cluster.
42
+ */
43
+ ChannelIds: string[];
44
+ /**
45
+ * The unique ID of the Cluster.
46
+ */
47
+ Id: string;
48
+ /**
49
+ * The current state of the Cluster.
50
+ */
51
+ State: ClusterState;
52
+ };
53
+ /**
54
+ * Type definition for `AWS::MediaLive::Cluster.ClusterNetworkSettings`.
55
+ * On premises settings which will have the interface network mappings and default Output logical interface
56
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cluster-clusternetworksettings.html}
57
+ */
58
+ export type ClusterNetworkSettings = {
59
+ /**
60
+ * Default value if the customer does not define it in channel Output API
61
+ */
62
+ DefaultRoute?: string;
63
+ /**
64
+ * Network mappings for the cluster
65
+ */
66
+ InterfaceMappings?: InterfaceMapping[];
67
+ };
68
+ /**
69
+ * Type definition for `AWS::MediaLive::Cluster.ClusterState`.
70
+ * The current state of the Cluster.
71
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cluster-clusterstate.html}
72
+ */
73
+ export type ClusterState = "CREATING" | "CREATE_FAILED" | "ACTIVE" | "DELETING" | "DELETED";
74
+ /**
75
+ * Type definition for `AWS::MediaLive::Cluster.ClusterType`.
76
+ * The hardware type for the cluster.
77
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cluster-clustertype.html}
78
+ */
79
+ export type ClusterType = "ON_PREMISES" | "OUTPOSTS_RACK" | "OUTPOSTS_SERVER" | "EC2";
80
+ /**
81
+ * Type definition for `AWS::MediaLive::Cluster.InterfaceMapping`.
82
+ * Network mappings for the cluster
83
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cluster-interfacemapping.html}
84
+ */
85
+ export type InterfaceMapping = {
86
+ /**
87
+ * logical interface name, unique in the list
88
+ */
89
+ LogicalInterfaceName?: string;
90
+ /**
91
+ * Network Id to be associated with the logical interface name, can be duplicated in list
92
+ */
93
+ NetworkId?: string;
94
+ };
95
+ /**
96
+ * Type definition for `AWS::MediaLive::Cluster.Tags`.
97
+ * A key-value pair to associate with a resource.
98
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cluster-tags.html}
99
+ */
100
+ export type Tags = {
101
+ Key?: string;
102
+ Value?: string;
103
+ };
104
+ /**
105
+ * Definition of AWS::MediaLive::Cluster Resource Type
106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-cluster.html}
107
+ */
108
+ export declare class MediaLiveCluster extends $Resource<"AWS::MediaLive::Cluster", MediaLiveClusterProperties, MediaLiveClusterAttributes> {
109
+ static readonly Type = "AWS::MediaLive::Cluster";
110
+ constructor(logicalId: string, properties: MediaLiveClusterProperties, options?: $ResourceOptions);
111
+ }
112
+ //# sourceMappingURL=AWS-MediaLive-Cluster.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::MediaLive::Cluster Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-cluster.html}
5
+ */
6
+ export class MediaLiveCluster extends $Resource {
7
+ static Type = "AWS::MediaLive::Cluster";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, MediaLiveCluster.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-MediaLive-Cluster.js.map
@@ -0,0 +1,110 @@
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 AWS::MediaLive::EventBridgeRuleTemplate Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-eventbridgeruletemplate.html}
6
+ */
7
+ export type MediaLiveEventBridgeRuleTemplateProperties = {
8
+ /**
9
+ * A resource's optional description.
10
+ * @minLength `0`
11
+ * @maxLength `1024`
12
+ */
13
+ Description?: string;
14
+ /**
15
+ * Placeholder documentation for __listOfEventBridgeRuleTemplateTarget
16
+ */
17
+ EventTargets?: EventBridgeRuleTemplateTarget[];
18
+ /**
19
+ * The type of event to match with the rule.
20
+ */
21
+ EventType: EventBridgeRuleTemplateEventType;
22
+ /**
23
+ * An eventbridge rule template group's identifier. Can be either be its id or current name.
24
+ * @pattern `^[^\s]+$`
25
+ */
26
+ GroupIdentifier: string;
27
+ /**
28
+ * A resource's name. Names must be unique within the scope of a resource type in a specific region.
29
+ * @minLength `1`
30
+ * @maxLength `255`
31
+ * @pattern `^[^\s]+$`
32
+ */
33
+ Name: string;
34
+ /**
35
+ * Represents the tags associated with a resource.
36
+ */
37
+ Tags?: TagMap;
38
+ };
39
+ /**
40
+ * Attribute type definition for `AWS::MediaLive::EventBridgeRuleTemplate`.
41
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-eventbridgeruletemplate.html#aws-resource-medialive-eventbridgeruletemplate-return-values}
42
+ */
43
+ export type MediaLiveEventBridgeRuleTemplateAttributes = {
44
+ /**
45
+ * An eventbridge rule template's ARN (Amazon Resource Name)
46
+ * @pattern `^arn:.+:medialive:.+:eventbridge-rule-template:.+$`
47
+ */
48
+ Arn: string;
49
+ /**
50
+ * Placeholder documentation for __timestampIso8601
51
+ */
52
+ CreatedAt: string;
53
+ /**
54
+ * An eventbridge rule template group's id. AWS provided template groups have ids that start with `aws-`
55
+ * @minLength `7`
56
+ * @maxLength `11`
57
+ * @pattern `^(aws-)?[0-9]{7}$`
58
+ */
59
+ GroupId: string;
60
+ /**
61
+ * An eventbridge rule template's id. AWS provided templates have ids that start with `aws-`
62
+ * @minLength `7`
63
+ * @maxLength `11`
64
+ * @pattern `^(aws-)?[0-9]{7}$`
65
+ */
66
+ Id: string;
67
+ /**
68
+ * Placeholder documentation for __string
69
+ */
70
+ Identifier: string;
71
+ /**
72
+ * Placeholder documentation for __timestampIso8601
73
+ */
74
+ ModifiedAt: string;
75
+ };
76
+ /**
77
+ * Type definition for `AWS::MediaLive::EventBridgeRuleTemplate.EventBridgeRuleTemplateEventType`.
78
+ * The type of event to match with the rule.
79
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-eventbridgeruletemplate-eventbridgeruletemplateeventtype.html}
80
+ */
81
+ export type EventBridgeRuleTemplateEventType = "MEDIALIVE_MULTIPLEX_ALERT" | "MEDIALIVE_MULTIPLEX_STATE_CHANGE" | "MEDIALIVE_CHANNEL_ALERT" | "MEDIALIVE_CHANNEL_INPUT_CHANGE" | "MEDIALIVE_CHANNEL_STATE_CHANGE" | "MEDIAPACKAGE_INPUT_NOTIFICATION" | "MEDIAPACKAGE_KEY_PROVIDER_NOTIFICATION" | "MEDIAPACKAGE_HARVEST_JOB_NOTIFICATION" | "SIGNAL_MAP_ACTIVE_ALARM" | "MEDIACONNECT_ALERT" | "MEDIACONNECT_SOURCE_HEALTH" | "MEDIACONNECT_OUTPUT_HEALTH" | "MEDIACONNECT_FLOW_STATUS_CHANGE";
82
+ /**
83
+ * Type definition for `AWS::MediaLive::EventBridgeRuleTemplate.EventBridgeRuleTemplateTarget`.
84
+ * The target to which to send matching events.
85
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-eventbridgeruletemplate-eventbridgeruletemplatetarget.html}
86
+ */
87
+ export type EventBridgeRuleTemplateTarget = {
88
+ /**
89
+ * Target ARNs must be either an SNS topic or CloudWatch log group.
90
+ * @minLength `1`
91
+ * @maxLength `2048`
92
+ * @pattern `^arn.+$`
93
+ */
94
+ Arn: string;
95
+ };
96
+ /**
97
+ * Type definition for `AWS::MediaLive::EventBridgeRuleTemplate.TagMap`.
98
+ * Represents the tags associated with a resource.
99
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-eventbridgeruletemplate-tagmap.html}
100
+ */
101
+ export type TagMap = Record<string, string>;
102
+ /**
103
+ * Definition of AWS::MediaLive::EventBridgeRuleTemplate Resource Type
104
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-eventbridgeruletemplate.html}
105
+ */
106
+ export declare class MediaLiveEventBridgeRuleTemplate extends $Resource<"AWS::MediaLive::EventBridgeRuleTemplate", MediaLiveEventBridgeRuleTemplateProperties, MediaLiveEventBridgeRuleTemplateAttributes> {
107
+ static readonly Type = "AWS::MediaLive::EventBridgeRuleTemplate";
108
+ constructor(logicalId: string, properties: MediaLiveEventBridgeRuleTemplateProperties, options?: $ResourceOptions);
109
+ }
110
+ //# sourceMappingURL=AWS-MediaLive-EventBridgeRuleTemplate.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::MediaLive::EventBridgeRuleTemplate Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-eventbridgeruletemplate.html}
5
+ */
6
+ export class MediaLiveEventBridgeRuleTemplate extends $Resource {
7
+ static Type = "AWS::MediaLive::EventBridgeRuleTemplate";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, MediaLiveEventBridgeRuleTemplate.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-MediaLive-EventBridgeRuleTemplate.js.map
@@ -0,0 +1,61 @@
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 AWS::MediaLive::EventBridgeRuleTemplateGroup Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-eventbridgeruletemplategroup.html}
6
+ */
7
+ export type MediaLiveEventBridgeRuleTemplateGroupProperties = {
8
+ /**
9
+ * A resource's optional description.
10
+ * @minLength `0`
11
+ * @maxLength `1024`
12
+ */
13
+ Description?: string;
14
+ /**
15
+ * A resource's name. Names must be unique within the scope of a resource type in a specific region.
16
+ * @minLength `1`
17
+ * @maxLength `255`
18
+ * @pattern `^[^\s]+$`
19
+ */
20
+ Name: string;
21
+ /**
22
+ * Represents the tags associated with a resource.
23
+ */
24
+ Tags?: TagMap;
25
+ };
26
+ /**
27
+ * Attribute type definition for `AWS::MediaLive::EventBridgeRuleTemplateGroup`.
28
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-eventbridgeruletemplategroup.html#aws-resource-medialive-eventbridgeruletemplategroup-return-values}
29
+ */
30
+ export type MediaLiveEventBridgeRuleTemplateGroupAttributes = {
31
+ /**
32
+ * An eventbridge rule template group's ARN (Amazon Resource Name)
33
+ * @pattern `^arn:.+:medialive:.+:eventbridge-rule-template-group:.+$`
34
+ */
35
+ Arn: string;
36
+ CreatedAt: string;
37
+ /**
38
+ * An eventbridge rule template group's id. AWS provided template groups have ids that start with `aws-`
39
+ * @minLength `7`
40
+ * @maxLength `11`
41
+ * @pattern `^(aws-)?[0-9]{7}$`
42
+ */
43
+ Id: string;
44
+ Identifier: string;
45
+ ModifiedAt: string;
46
+ };
47
+ /**
48
+ * Type definition for `AWS::MediaLive::EventBridgeRuleTemplateGroup.TagMap`.
49
+ * Represents the tags associated with a resource.
50
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-eventbridgeruletemplategroup-tagmap.html}
51
+ */
52
+ export type TagMap = Record<string, string>;
53
+ /**
54
+ * Definition of AWS::MediaLive::EventBridgeRuleTemplateGroup Resource Type
55
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-eventbridgeruletemplategroup.html}
56
+ */
57
+ export declare class MediaLiveEventBridgeRuleTemplateGroup extends $Resource<"AWS::MediaLive::EventBridgeRuleTemplateGroup", MediaLiveEventBridgeRuleTemplateGroupProperties, MediaLiveEventBridgeRuleTemplateGroupAttributes> {
58
+ static readonly Type = "AWS::MediaLive::EventBridgeRuleTemplateGroup";
59
+ constructor(logicalId: string, properties: MediaLiveEventBridgeRuleTemplateGroupProperties, options?: $ResourceOptions);
60
+ }
61
+ //# sourceMappingURL=AWS-MediaLive-EventBridgeRuleTemplateGroup.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::MediaLive::EventBridgeRuleTemplateGroup Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-eventbridgeruletemplategroup.html}
5
+ */
6
+ export class MediaLiveEventBridgeRuleTemplateGroup extends $Resource {
7
+ static Type = "AWS::MediaLive::EventBridgeRuleTemplateGroup";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, MediaLiveEventBridgeRuleTemplateGroup.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-MediaLive-EventBridgeRuleTemplateGroup.js.map