@awboost/cfn-resource-types 0.1.137 → 0.1.139

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 (31) hide show
  1. package/lib/AWS-Amplify-App.d.ts +8 -0
  2. package/lib/AWS-ECS-TaskDefinition.d.ts +53 -32
  3. package/lib/AWS-MediaConnect-Flow.d.ts +15 -0
  4. package/lib/AWS-MediaLive-ChannelPlacementGroup.d.ts +70 -0
  5. package/lib/AWS-MediaLive-ChannelPlacementGroup.js +12 -0
  6. package/lib/AWS-MediaLive-CloudWatchAlarmTemplate.d.ts +139 -0
  7. package/lib/AWS-MediaLive-CloudWatchAlarmTemplate.js +12 -0
  8. package/lib/AWS-MediaLive-CloudWatchAlarmTemplateGroup.d.ts +61 -0
  9. package/lib/AWS-MediaLive-CloudWatchAlarmTemplateGroup.js +12 -0
  10. package/lib/AWS-MediaLive-Cluster.d.ts +112 -0
  11. package/lib/AWS-MediaLive-Cluster.js +12 -0
  12. package/lib/AWS-MediaLive-EventBridgeRuleTemplate.d.ts +110 -0
  13. package/lib/AWS-MediaLive-EventBridgeRuleTemplate.js +12 -0
  14. package/lib/AWS-MediaLive-EventBridgeRuleTemplateGroup.d.ts +61 -0
  15. package/lib/AWS-MediaLive-EventBridgeRuleTemplateGroup.js +12 -0
  16. package/lib/AWS-MediaLive-Network.d.ts +91 -0
  17. package/lib/AWS-MediaLive-Network.js +12 -0
  18. package/lib/AWS-MediaLive-SdiSource.d.ts +82 -0
  19. package/lib/AWS-MediaLive-SdiSource.js +12 -0
  20. package/lib/AWS-MediaLive-SignalMap.d.ts +307 -0
  21. package/lib/AWS-MediaLive-SignalMap.js +12 -0
  22. package/lib/AWS-PCAConnectorSCEP-Challenge.d.ts +43 -0
  23. package/lib/AWS-PCAConnectorSCEP-Challenge.js +13 -0
  24. package/lib/AWS-PCAConnectorSCEP-Connector.d.ts +94 -0
  25. package/lib/AWS-PCAConnectorSCEP-Connector.js +13 -0
  26. package/lib/AWS-QuickSight-Analysis.d.ts +13 -0
  27. package/lib/AWS-QuickSight-Template.d.ts +13 -0
  28. package/lib/AWS-SNS-Subscription.d.ts +41 -5
  29. package/lib/AWS-SageMaker-Cluster.d.ts +241 -0
  30. package/lib/AWS-SageMaker-Cluster.js +12 -0
  31. package/package.json +1 -1
@@ -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
@@ -0,0 +1,91 @@
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 schema for AWS::MediaLive::Network.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-network.html}
6
+ */
7
+ export type MediaLiveNetworkProperties = {
8
+ /**
9
+ * The list of IP address cidr pools for the network
10
+ */
11
+ IpPools: IpPool[];
12
+ /**
13
+ * The user-specified name of the Network to be created.
14
+ */
15
+ Name: string;
16
+ /**
17
+ * The routes for the network
18
+ */
19
+ Routes?: Route[];
20
+ /**
21
+ * A collection of key-value pairs.
22
+ */
23
+ Tags?: Tags[];
24
+ };
25
+ /**
26
+ * Attribute type definition for `AWS::MediaLive::Network`.
27
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-network.html#aws-resource-medialive-network-return-values}
28
+ */
29
+ export type MediaLiveNetworkAttributes = {
30
+ /**
31
+ * The ARN of the Network.
32
+ */
33
+ Arn: string;
34
+ AssociatedClusterIds: string[];
35
+ /**
36
+ * The unique ID of the Network.
37
+ */
38
+ Id: string;
39
+ /**
40
+ * The current state of the Network.
41
+ */
42
+ State: NetworkState;
43
+ };
44
+ /**
45
+ * Type definition for `AWS::MediaLive::Network.IpPool`.
46
+ * IP address cidr pool
47
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-network-ippool.html}
48
+ */
49
+ export type IpPool = {
50
+ /**
51
+ * IP address cidr pool
52
+ */
53
+ Cidr?: string;
54
+ };
55
+ /**
56
+ * Type definition for `AWS::MediaLive::Network.NetworkState`.
57
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-network-networkstate.html}
58
+ */
59
+ export type NetworkState = "CREATING" | "CREATE_FAILED" | "ACTIVE" | "DELETING" | "IDLE" | "IN_USE" | "UPDATING" | "DELETED" | "DELETE_FAILED";
60
+ /**
61
+ * Type definition for `AWS::MediaLive::Network.Route`.
62
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-network-route.html}
63
+ */
64
+ export type Route = {
65
+ /**
66
+ * Ip address cidr
67
+ */
68
+ Cidr?: string;
69
+ /**
70
+ * IP address for the route packet paths
71
+ */
72
+ Gateway?: string;
73
+ };
74
+ /**
75
+ * Type definition for `AWS::MediaLive::Network.Tags`.
76
+ * A key-value pair to associate with a resource.
77
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-network-tags.html}
78
+ */
79
+ export type Tags = {
80
+ Key?: string;
81
+ Value?: string;
82
+ };
83
+ /**
84
+ * Resource schema for AWS::MediaLive::Network.
85
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-network.html}
86
+ */
87
+ export declare class MediaLiveNetwork extends $Resource<"AWS::MediaLive::Network", MediaLiveNetworkProperties, MediaLiveNetworkAttributes> {
88
+ static readonly Type = "AWS::MediaLive::Network";
89
+ constructor(logicalId: string, properties: MediaLiveNetworkProperties, options?: $ResourceOptions);
90
+ }
91
+ //# sourceMappingURL=AWS-MediaLive-Network.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource schema for AWS::MediaLive::Network.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-network.html}
5
+ */
6
+ export class MediaLiveNetwork extends $Resource {
7
+ static Type = "AWS::MediaLive::Network";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, MediaLiveNetwork.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-MediaLive-Network.js.map
@@ -0,0 +1,82 @@
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::SdiSource Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-sdisource.html}
6
+ */
7
+ export type MediaLiveSdiSourceProperties = {
8
+ /**
9
+ * The current state of the SdiSource.
10
+ */
11
+ Mode?: SdiSourceMode;
12
+ /**
13
+ * The name of the SdiSource.
14
+ */
15
+ Name: string;
16
+ /**
17
+ * A collection of key-value pairs.
18
+ */
19
+ Tags?: Tags[];
20
+ /**
21
+ * The interface mode of the SdiSource.
22
+ */
23
+ Type: SdiSourceType;
24
+ };
25
+ /**
26
+ * Attribute type definition for `AWS::MediaLive::SdiSource`.
27
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-sdisource.html#aws-resource-medialive-sdisource-return-values}
28
+ */
29
+ export type MediaLiveSdiSourceAttributes = {
30
+ /**
31
+ * The unique arn of the SdiSource.
32
+ */
33
+ Arn: string;
34
+ /**
35
+ * The unique identifier of the SdiSource.
36
+ */
37
+ Id: string;
38
+ /**
39
+ * The list of inputs currently using this SDI source.
40
+ */
41
+ Inputs: string[];
42
+ /**
43
+ * The current state of the SdiSource.
44
+ */
45
+ State: SdiSourceState;
46
+ };
47
+ /**
48
+ * Type definition for `AWS::MediaLive::SdiSource.SdiSourceMode`.
49
+ * The current state of the SdiSource.
50
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-sdisource-sdisourcemode.html}
51
+ */
52
+ export type SdiSourceMode = "QUADRANT" | "INTERLEAVE";
53
+ /**
54
+ * Type definition for `AWS::MediaLive::SdiSource.SdiSourceState`.
55
+ * The current state of the SdiSource.
56
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-sdisource-sdisourcestate.html}
57
+ */
58
+ export type SdiSourceState = "IDLE" | "IN_USE" | "DELETED";
59
+ /**
60
+ * Type definition for `AWS::MediaLive::SdiSource.SdiSourceType`.
61
+ * The interface mode of the SdiSource.
62
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-sdisource-sdisourcetype.html}
63
+ */
64
+ export type SdiSourceType = "SINGLE" | "QUAD";
65
+ /**
66
+ * Type definition for `AWS::MediaLive::SdiSource.Tags`.
67
+ * A key-value pair to associate with a resource.
68
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-sdisource-tags.html}
69
+ */
70
+ export type Tags = {
71
+ Key?: string;
72
+ Value?: string;
73
+ };
74
+ /**
75
+ * Definition of AWS::MediaLive::SdiSource Resource Type
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-sdisource.html}
77
+ */
78
+ export declare class MediaLiveSdiSource extends $Resource<"AWS::MediaLive::SdiSource", MediaLiveSdiSourceProperties, MediaLiveSdiSourceAttributes> {
79
+ static readonly Type = "AWS::MediaLive::SdiSource";
80
+ constructor(logicalId: string, properties: MediaLiveSdiSourceProperties, options?: $ResourceOptions);
81
+ }
82
+ //# sourceMappingURL=AWS-MediaLive-SdiSource.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::SdiSource Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-sdisource.html}
5
+ */
6
+ export class MediaLiveSdiSource extends $Resource {
7
+ static Type = "AWS::MediaLive::SdiSource";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, MediaLiveSdiSource.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-MediaLive-SdiSource.js.map