@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.
- package/lib/AWS-Amplify-App.d.ts +8 -0
- package/lib/AWS-ECS-Service.d.ts +36 -26
- package/lib/AWS-ECS-Service.js +2 -2
- package/lib/AWS-ECS-TaskDefinition.d.ts +53 -32
- package/lib/AWS-ElasticLoadBalancingV2-Listener.d.ts +9 -0
- package/lib/AWS-IoTFleetWise-DecoderManifest.d.ts +2 -2
- package/lib/AWS-MediaConnect-Flow.d.ts +15 -0
- package/lib/AWS-MediaLive-ChannelPlacementGroup.d.ts +70 -0
- package/lib/AWS-MediaLive-ChannelPlacementGroup.js +12 -0
- package/lib/AWS-MediaLive-CloudWatchAlarmTemplate.d.ts +139 -0
- package/lib/AWS-MediaLive-CloudWatchAlarmTemplate.js +12 -0
- package/lib/AWS-MediaLive-CloudWatchAlarmTemplateGroup.d.ts +61 -0
- package/lib/AWS-MediaLive-CloudWatchAlarmTemplateGroup.js +12 -0
- package/lib/AWS-MediaLive-Cluster.d.ts +112 -0
- package/lib/AWS-MediaLive-Cluster.js +12 -0
- package/lib/AWS-MediaLive-EventBridgeRuleTemplate.d.ts +110 -0
- package/lib/AWS-MediaLive-EventBridgeRuleTemplate.js +12 -0
- package/lib/AWS-MediaLive-EventBridgeRuleTemplateGroup.d.ts +61 -0
- package/lib/AWS-MediaLive-EventBridgeRuleTemplateGroup.js +12 -0
- package/lib/AWS-MediaLive-Network.d.ts +91 -0
- package/lib/AWS-MediaLive-Network.js +12 -0
- package/lib/AWS-MediaLive-SdiSource.d.ts +82 -0
- package/lib/AWS-MediaLive-SdiSource.js +12 -0
- package/lib/AWS-MediaLive-SignalMap.d.ts +307 -0
- package/lib/AWS-MediaLive-SignalMap.js +12 -0
- package/lib/AWS-Pipes-Pipe.d.ts +5 -0
- package/lib/AWS-QuickSight-Analysis.d.ts +13 -0
- package/lib/AWS-QuickSight-Template.d.ts +13 -0
- package/lib/AWS-SNS-Subscription.d.ts +41 -5
- package/lib/AWS-SageMaker-Cluster.d.ts +241 -0
- package/lib/AWS-SageMaker-Cluster.js +12 -0
- package/lib/AWS-SageMaker-Domain.d.ts +43 -0
- package/lib/AWS-SageMaker-Space.d.ts +21 -0
- package/lib/AWS-SageMaker-UserProfile.d.ts +43 -0
- package/package.json +1 -1
|
@@ -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
|
|
@@ -0,0 +1,307 @@
|
|
|
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::SignalMap Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-signalmap.html}
|
|
6
|
+
*/
|
|
7
|
+
export type MediaLiveSignalMapProperties = {
|
|
8
|
+
CloudWatchAlarmTemplateGroupIdentifiers?: string[];
|
|
9
|
+
/**
|
|
10
|
+
* A resource's optional description.
|
|
11
|
+
* @minLength `0`
|
|
12
|
+
* @maxLength `1024`
|
|
13
|
+
*/
|
|
14
|
+
Description?: string;
|
|
15
|
+
/**
|
|
16
|
+
* A top-level supported AWS resource ARN to discovery a signal map from.
|
|
17
|
+
* @minLength `1`
|
|
18
|
+
* @maxLength `2048`
|
|
19
|
+
*/
|
|
20
|
+
DiscoveryEntryPointArn: string;
|
|
21
|
+
EventBridgeRuleTemplateGroupIdentifiers?: string[];
|
|
22
|
+
/**
|
|
23
|
+
* If true, will force a rediscovery of a signal map if an unchanged discoveryEntryPointArn is provided.
|
|
24
|
+
*/
|
|
25
|
+
ForceRediscovery?: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* A resource's name. Names must be unique within the scope of a resource type in a specific region.
|
|
28
|
+
* @minLength `1`
|
|
29
|
+
* @maxLength `255`
|
|
30
|
+
* @pattern `^[^\s]+$`
|
|
31
|
+
*/
|
|
32
|
+
Name: string;
|
|
33
|
+
/**
|
|
34
|
+
* Represents the tags associated with a resource.
|
|
35
|
+
*/
|
|
36
|
+
Tags?: TagMap;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Attribute type definition for `AWS::MediaLive::SignalMap`.
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-signalmap.html#aws-resource-medialive-signalmap-return-values}
|
|
41
|
+
*/
|
|
42
|
+
export type MediaLiveSignalMapAttributes = {
|
|
43
|
+
/**
|
|
44
|
+
* A signal map's ARN (Amazon Resource Name)
|
|
45
|
+
* @pattern `^arn:.+:medialive:.+:signal-map:.+$`
|
|
46
|
+
*/
|
|
47
|
+
Arn: string;
|
|
48
|
+
CloudWatchAlarmTemplateGroupIds: string[];
|
|
49
|
+
CreatedAt: string;
|
|
50
|
+
/**
|
|
51
|
+
* Error message associated with a failed creation or failed update attempt of a signal map.
|
|
52
|
+
* @minLength `1`
|
|
53
|
+
* @maxLength `2048`
|
|
54
|
+
*/
|
|
55
|
+
ErrorMessage: string;
|
|
56
|
+
EventBridgeRuleTemplateGroupIds: string[];
|
|
57
|
+
/**
|
|
58
|
+
* A map representing an incomplete AWS media workflow as a graph.
|
|
59
|
+
*/
|
|
60
|
+
FailedMediaResourceMap: Record<string, {
|
|
61
|
+
Destinations: {
|
|
62
|
+
/**
|
|
63
|
+
* The ARN of a resource used in AWS media workflows.
|
|
64
|
+
* @minLength `1`
|
|
65
|
+
* @maxLength `2048`
|
|
66
|
+
* @pattern `^arn.+$`
|
|
67
|
+
*/
|
|
68
|
+
Arn: string;
|
|
69
|
+
/**
|
|
70
|
+
* The logical name of an AWS media resource.
|
|
71
|
+
* @minLength `1`
|
|
72
|
+
* @maxLength `256`
|
|
73
|
+
*/
|
|
74
|
+
Name: string;
|
|
75
|
+
}[];
|
|
76
|
+
/**
|
|
77
|
+
* The logical name of an AWS media resource.
|
|
78
|
+
* @minLength `1`
|
|
79
|
+
* @maxLength `256`
|
|
80
|
+
*/
|
|
81
|
+
Name: string;
|
|
82
|
+
Sources: {
|
|
83
|
+
/**
|
|
84
|
+
* The ARN of a resource used in AWS media workflows.
|
|
85
|
+
* @minLength `1`
|
|
86
|
+
* @maxLength `2048`
|
|
87
|
+
* @pattern `^arn.+$`
|
|
88
|
+
*/
|
|
89
|
+
Arn: string;
|
|
90
|
+
/**
|
|
91
|
+
* The logical name of an AWS media resource.
|
|
92
|
+
* @minLength `1`
|
|
93
|
+
* @maxLength `256`
|
|
94
|
+
*/
|
|
95
|
+
Name: string;
|
|
96
|
+
}[];
|
|
97
|
+
}>;
|
|
98
|
+
/**
|
|
99
|
+
* A signal map's id.
|
|
100
|
+
* @minLength `7`
|
|
101
|
+
* @maxLength `11`
|
|
102
|
+
* @pattern `^(aws-)?[0-9]{7}$`
|
|
103
|
+
*/
|
|
104
|
+
Id: string;
|
|
105
|
+
Identifier: string;
|
|
106
|
+
LastDiscoveredAt: string;
|
|
107
|
+
/**
|
|
108
|
+
* Represents the latest successful monitor deployment of a signal map.
|
|
109
|
+
*/
|
|
110
|
+
LastSuccessfulMonitorDeployment: {
|
|
111
|
+
/**
|
|
112
|
+
* URI associated with a signal map's monitor deployment.
|
|
113
|
+
* @minLength `1`
|
|
114
|
+
* @maxLength `2048`
|
|
115
|
+
*/
|
|
116
|
+
DetailsUri: string;
|
|
117
|
+
/**
|
|
118
|
+
* A signal map's monitor deployment status.
|
|
119
|
+
*/
|
|
120
|
+
Status: SignalMapMonitorDeploymentStatus;
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* A map representing an AWS media workflow as a graph.
|
|
124
|
+
*/
|
|
125
|
+
MediaResourceMap: Record<string, {
|
|
126
|
+
Destinations: {
|
|
127
|
+
/**
|
|
128
|
+
* The ARN of a resource used in AWS media workflows.
|
|
129
|
+
* @minLength `1`
|
|
130
|
+
* @maxLength `2048`
|
|
131
|
+
* @pattern `^arn.+$`
|
|
132
|
+
*/
|
|
133
|
+
Arn: string;
|
|
134
|
+
/**
|
|
135
|
+
* The logical name of an AWS media resource.
|
|
136
|
+
* @minLength `1`
|
|
137
|
+
* @maxLength `256`
|
|
138
|
+
*/
|
|
139
|
+
Name: string;
|
|
140
|
+
}[];
|
|
141
|
+
/**
|
|
142
|
+
* The logical name of an AWS media resource.
|
|
143
|
+
* @minLength `1`
|
|
144
|
+
* @maxLength `256`
|
|
145
|
+
*/
|
|
146
|
+
Name: string;
|
|
147
|
+
Sources: {
|
|
148
|
+
/**
|
|
149
|
+
* The ARN of a resource used in AWS media workflows.
|
|
150
|
+
* @minLength `1`
|
|
151
|
+
* @maxLength `2048`
|
|
152
|
+
* @pattern `^arn.+$`
|
|
153
|
+
*/
|
|
154
|
+
Arn: string;
|
|
155
|
+
/**
|
|
156
|
+
* The logical name of an AWS media resource.
|
|
157
|
+
* @minLength `1`
|
|
158
|
+
* @maxLength `256`
|
|
159
|
+
*/
|
|
160
|
+
Name: string;
|
|
161
|
+
}[];
|
|
162
|
+
}>;
|
|
163
|
+
ModifiedAt: string;
|
|
164
|
+
/**
|
|
165
|
+
* If true, there are pending monitor changes for this signal map that can be deployed.
|
|
166
|
+
*/
|
|
167
|
+
MonitorChangesPendingDeployment: boolean;
|
|
168
|
+
/**
|
|
169
|
+
* Represents the latest monitor deployment of a signal map.
|
|
170
|
+
*/
|
|
171
|
+
MonitorDeployment: {
|
|
172
|
+
/**
|
|
173
|
+
* URI associated with a signal map's monitor deployment.
|
|
174
|
+
* @minLength `1`
|
|
175
|
+
* @maxLength `2048`
|
|
176
|
+
*/
|
|
177
|
+
DetailsUri: string;
|
|
178
|
+
/**
|
|
179
|
+
* Error message associated with a failed monitor deployment of a signal map.
|
|
180
|
+
* @minLength `1`
|
|
181
|
+
* @maxLength `2048`
|
|
182
|
+
*/
|
|
183
|
+
ErrorMessage: string;
|
|
184
|
+
/**
|
|
185
|
+
* A signal map's monitor deployment status.
|
|
186
|
+
*/
|
|
187
|
+
Status: SignalMapMonitorDeploymentStatus;
|
|
188
|
+
};
|
|
189
|
+
/**
|
|
190
|
+
* A signal map's current status which is dependent on its lifecycle actions or associated jobs.
|
|
191
|
+
*/
|
|
192
|
+
Status: SignalMapStatus;
|
|
193
|
+
};
|
|
194
|
+
/**
|
|
195
|
+
* Type definition for `AWS::MediaLive::SignalMap.FailedMediaResourceMap`.
|
|
196
|
+
* A map representing an incomplete AWS media workflow as a graph.
|
|
197
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-failedmediaresourcemap.html}
|
|
198
|
+
*/
|
|
199
|
+
export type FailedMediaResourceMap = Record<string, MediaResource>;
|
|
200
|
+
/**
|
|
201
|
+
* Type definition for `AWS::MediaLive::SignalMap.MediaResource`.
|
|
202
|
+
* An AWS resource used in media workflows.
|
|
203
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-mediaresource.html}
|
|
204
|
+
*/
|
|
205
|
+
export type MediaResource = {
|
|
206
|
+
Destinations?: MediaResourceNeighbor[];
|
|
207
|
+
/**
|
|
208
|
+
* The logical name of an AWS media resource.
|
|
209
|
+
* @minLength `1`
|
|
210
|
+
* @maxLength `256`
|
|
211
|
+
*/
|
|
212
|
+
Name?: string;
|
|
213
|
+
Sources?: MediaResourceNeighbor[];
|
|
214
|
+
};
|
|
215
|
+
/**
|
|
216
|
+
* Type definition for `AWS::MediaLive::SignalMap.MediaResourceMap`.
|
|
217
|
+
* A map representing an AWS media workflow as a graph.
|
|
218
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-mediaresourcemap.html}
|
|
219
|
+
*/
|
|
220
|
+
export type MediaResourceMap = Record<string, MediaResource>;
|
|
221
|
+
/**
|
|
222
|
+
* Type definition for `AWS::MediaLive::SignalMap.MediaResourceNeighbor`.
|
|
223
|
+
* A direct source or destination neighbor to an AWS media resource.
|
|
224
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-mediaresourceneighbor.html}
|
|
225
|
+
*/
|
|
226
|
+
export type MediaResourceNeighbor = {
|
|
227
|
+
/**
|
|
228
|
+
* The ARN of a resource used in AWS media workflows.
|
|
229
|
+
* @minLength `1`
|
|
230
|
+
* @maxLength `2048`
|
|
231
|
+
* @pattern `^arn.+$`
|
|
232
|
+
*/
|
|
233
|
+
Arn: string;
|
|
234
|
+
/**
|
|
235
|
+
* The logical name of an AWS media resource.
|
|
236
|
+
* @minLength `1`
|
|
237
|
+
* @maxLength `256`
|
|
238
|
+
*/
|
|
239
|
+
Name?: string;
|
|
240
|
+
};
|
|
241
|
+
/**
|
|
242
|
+
* Type definition for `AWS::MediaLive::SignalMap.MonitorDeployment`.
|
|
243
|
+
* Represents the latest monitor deployment of a signal map.
|
|
244
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-monitordeployment.html}
|
|
245
|
+
*/
|
|
246
|
+
export type MonitorDeployment = {
|
|
247
|
+
/**
|
|
248
|
+
* URI associated with a signal map's monitor deployment.
|
|
249
|
+
* @minLength `1`
|
|
250
|
+
* @maxLength `2048`
|
|
251
|
+
*/
|
|
252
|
+
DetailsUri?: string;
|
|
253
|
+
/**
|
|
254
|
+
* Error message associated with a failed monitor deployment of a signal map.
|
|
255
|
+
* @minLength `1`
|
|
256
|
+
* @maxLength `2048`
|
|
257
|
+
*/
|
|
258
|
+
ErrorMessage?: string;
|
|
259
|
+
/**
|
|
260
|
+
* A signal map's monitor deployment status.
|
|
261
|
+
*/
|
|
262
|
+
Status: SignalMapMonitorDeploymentStatus;
|
|
263
|
+
};
|
|
264
|
+
/**
|
|
265
|
+
* Type definition for `AWS::MediaLive::SignalMap.SignalMapMonitorDeploymentStatus`.
|
|
266
|
+
* A signal map's monitor deployment status.
|
|
267
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-signalmapmonitordeploymentstatus.html}
|
|
268
|
+
*/
|
|
269
|
+
export type SignalMapMonitorDeploymentStatus = "NOT_DEPLOYED" | "DRY_RUN_DEPLOYMENT_COMPLETE" | "DRY_RUN_DEPLOYMENT_FAILED" | "DRY_RUN_DEPLOYMENT_IN_PROGRESS" | "DEPLOYMENT_COMPLETE" | "DEPLOYMENT_FAILED" | "DEPLOYMENT_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED" | "DELETE_IN_PROGRESS";
|
|
270
|
+
/**
|
|
271
|
+
* Type definition for `AWS::MediaLive::SignalMap.SignalMapStatus`.
|
|
272
|
+
* A signal map's current status which is dependent on its lifecycle actions or associated jobs.
|
|
273
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-signalmapstatus.html}
|
|
274
|
+
*/
|
|
275
|
+
export type SignalMapStatus = "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETE" | "UPDATE_REVERTED" | "UPDATE_FAILED" | "READY" | "NOT_READY";
|
|
276
|
+
/**
|
|
277
|
+
* Type definition for `AWS::MediaLive::SignalMap.SuccessfulMonitorDeployment`.
|
|
278
|
+
* Represents the latest successful monitor deployment of a signal map.
|
|
279
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-successfulmonitordeployment.html}
|
|
280
|
+
*/
|
|
281
|
+
export type SuccessfulMonitorDeployment = {
|
|
282
|
+
/**
|
|
283
|
+
* URI associated with a signal map's monitor deployment.
|
|
284
|
+
* @minLength `1`
|
|
285
|
+
* @maxLength `2048`
|
|
286
|
+
*/
|
|
287
|
+
DetailsUri: string;
|
|
288
|
+
/**
|
|
289
|
+
* A signal map's monitor deployment status.
|
|
290
|
+
*/
|
|
291
|
+
Status: SignalMapMonitorDeploymentStatus;
|
|
292
|
+
};
|
|
293
|
+
/**
|
|
294
|
+
* Type definition for `AWS::MediaLive::SignalMap.TagMap`.
|
|
295
|
+
* Represents the tags associated with a resource.
|
|
296
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-tagmap.html}
|
|
297
|
+
*/
|
|
298
|
+
export type TagMap = Record<string, string>;
|
|
299
|
+
/**
|
|
300
|
+
* Definition of AWS::MediaLive::SignalMap Resource Type
|
|
301
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-signalmap.html}
|
|
302
|
+
*/
|
|
303
|
+
export declare class MediaLiveSignalMap extends $Resource<"AWS::MediaLive::SignalMap", MediaLiveSignalMapProperties, MediaLiveSignalMapAttributes> {
|
|
304
|
+
static readonly Type = "AWS::MediaLive::SignalMap";
|
|
305
|
+
constructor(logicalId: string, properties: MediaLiveSignalMapProperties, options?: $ResourceOptions);
|
|
306
|
+
}
|
|
307
|
+
//# sourceMappingURL=AWS-MediaLive-SignalMap.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::SignalMap Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-signalmap.html}
|
|
5
|
+
*/
|
|
6
|
+
export class MediaLiveSignalMap extends $Resource {
|
|
7
|
+
static Type = "AWS::MediaLive::SignalMap";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, MediaLiveSignalMap.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-MediaLive-SignalMap.js.map
|
package/lib/AWS-Pipes-Pipe.d.ts
CHANGED
|
@@ -19,6 +19,11 @@ export type PipesPipeProperties = {
|
|
|
19
19
|
*/
|
|
20
20
|
Enrichment?: string;
|
|
21
21
|
EnrichmentParameters?: PipeEnrichmentParameters;
|
|
22
|
+
/**
|
|
23
|
+
* @minLength `0`
|
|
24
|
+
* @maxLength `2048`
|
|
25
|
+
*/
|
|
26
|
+
KmsKeyIdentifier?: string;
|
|
22
27
|
LogConfiguration?: PipeLogConfiguration;
|
|
23
28
|
/**
|
|
24
29
|
* @minLength `1`
|
|
@@ -150,6 +150,7 @@ export type AnalysisDefinition = {
|
|
|
150
150
|
* @maxLength `200`
|
|
151
151
|
*/
|
|
152
152
|
ParameterDeclarations?: ParameterDeclaration[];
|
|
153
|
+
QueryExecutionOptions?: QueryExecutionOptions;
|
|
153
154
|
/**
|
|
154
155
|
* @minLength `0`
|
|
155
156
|
* @maxLength `20`
|
|
@@ -5098,6 +5099,18 @@ export type PrimaryValueDisplayType = "HIDDEN" | "COMPARISON" | "ACTUAL";
|
|
|
5098
5099
|
export type ProgressBarOptions = {
|
|
5099
5100
|
Visibility?: Visibility;
|
|
5100
5101
|
};
|
|
5102
|
+
/**
|
|
5103
|
+
* Type definition for `AWS::QuickSight::Analysis.QueryExecutionMode`.
|
|
5104
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-queryexecutionmode.html}
|
|
5105
|
+
*/
|
|
5106
|
+
export type QueryExecutionMode = "AUTO" | "MANUAL";
|
|
5107
|
+
/**
|
|
5108
|
+
* Type definition for `AWS::QuickSight::Analysis.QueryExecutionOptions`.
|
|
5109
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-queryexecutionoptions.html}
|
|
5110
|
+
*/
|
|
5111
|
+
export type QueryExecutionOptions = {
|
|
5112
|
+
QueryExecutionMode?: QueryExecutionMode;
|
|
5113
|
+
};
|
|
5101
5114
|
/**
|
|
5102
5115
|
* Type definition for `AWS::QuickSight::Analysis.RadarChartAggregatedFieldWells`.
|
|
5103
5116
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-radarchartaggregatedfieldwells.html}
|
|
@@ -5110,6 +5110,18 @@ export type PrimaryValueDisplayType = "HIDDEN" | "COMPARISON" | "ACTUAL";
|
|
|
5110
5110
|
export type ProgressBarOptions = {
|
|
5111
5111
|
Visibility?: Visibility;
|
|
5112
5112
|
};
|
|
5113
|
+
/**
|
|
5114
|
+
* Type definition for `AWS::QuickSight::Template.QueryExecutionMode`.
|
|
5115
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-queryexecutionmode.html}
|
|
5116
|
+
*/
|
|
5117
|
+
export type QueryExecutionMode = "AUTO" | "MANUAL";
|
|
5118
|
+
/**
|
|
5119
|
+
* Type definition for `AWS::QuickSight::Template.QueryExecutionOptions`.
|
|
5120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-queryexecutionoptions.html}
|
|
5121
|
+
*/
|
|
5122
|
+
export type QueryExecutionOptions = {
|
|
5123
|
+
QueryExecutionMode?: QueryExecutionMode;
|
|
5124
|
+
};
|
|
5113
5125
|
/**
|
|
5114
5126
|
* Type definition for `AWS::QuickSight::Template.RadarChartAggregatedFieldWells`.
|
|
5115
5127
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-radarchartaggregatedfieldwells.html}
|
|
@@ -6702,6 +6714,7 @@ export type TemplateVersionDefinition = {
|
|
|
6702
6714
|
* @maxLength `200`
|
|
6703
6715
|
*/
|
|
6704
6716
|
ParameterDeclarations?: ParameterDeclaration[];
|
|
6717
|
+
QueryExecutionOptions?: QueryExecutionOptions;
|
|
6705
6718
|
/**
|
|
6706
6719
|
* @minLength `0`
|
|
6707
6720
|
* @maxLength `20`
|
|
@@ -5,16 +5,49 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html}
|
|
6
6
|
*/
|
|
7
7
|
export type SNSSubscriptionProperties = {
|
|
8
|
-
|
|
8
|
+
/**
|
|
9
|
+
* The delivery policy JSON assigned to the subscription. Enables the subscriber to define the message delivery retry strategy in the case of an HTTP/S endpoint subscribed to the topic.
|
|
10
|
+
*/
|
|
11
|
+
DeliveryPolicy?: Record<string, any> | string;
|
|
12
|
+
/**
|
|
13
|
+
* The subscription's endpoint. The endpoint value depends on the protocol that you specify.
|
|
14
|
+
*/
|
|
9
15
|
Endpoint?: string;
|
|
10
|
-
|
|
16
|
+
/**
|
|
17
|
+
* The filter policy JSON assigned to the subscription. Enables the subscriber to filter out unwanted messages.
|
|
18
|
+
*/
|
|
19
|
+
FilterPolicy?: Record<string, any> | string;
|
|
20
|
+
/**
|
|
21
|
+
* This attribute lets you choose the filtering scope by using one of the following string value types: MessageAttributes (default) and MessageBody.
|
|
22
|
+
*/
|
|
11
23
|
FilterPolicyScope?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The subscription's protocol.
|
|
26
|
+
*/
|
|
12
27
|
Protocol: string;
|
|
28
|
+
/**
|
|
29
|
+
* When set to true, enables raw message delivery. Raw messages don't contain any JSON formatting and can be sent to Amazon SQS and HTTP/S endpoints.
|
|
30
|
+
*/
|
|
13
31
|
RawMessageDelivery?: boolean;
|
|
14
|
-
|
|
32
|
+
/**
|
|
33
|
+
* When specified, sends undeliverable messages to the specified Amazon SQS dead-letter queue. Messages that can't be delivered due to client errors are held in the dead-letter queue for further analysis or reprocessing.
|
|
34
|
+
*/
|
|
35
|
+
RedrivePolicy?: Record<string, any> | string;
|
|
36
|
+
/**
|
|
37
|
+
* For cross-region subscriptions, the region in which the topic resides.If no region is specified, AWS CloudFormation uses the region of the caller as the default.
|
|
38
|
+
*/
|
|
15
39
|
Region?: string;
|
|
16
|
-
|
|
40
|
+
/**
|
|
41
|
+
* Specifies whether Amazon SNS resends the notification to the subscription when a message's attribute changes.
|
|
42
|
+
*/
|
|
43
|
+
ReplayPolicy?: Record<string, any> | string;
|
|
44
|
+
/**
|
|
45
|
+
* This property applies only to Amazon Data Firehose delivery stream subscriptions.
|
|
46
|
+
*/
|
|
17
47
|
SubscriptionRoleArn?: string;
|
|
48
|
+
/**
|
|
49
|
+
* The ARN of the topic to subscribe to.
|
|
50
|
+
*/
|
|
18
51
|
TopicArn: string;
|
|
19
52
|
};
|
|
20
53
|
/**
|
|
@@ -22,7 +55,10 @@ export type SNSSubscriptionProperties = {
|
|
|
22
55
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-subscription.html#aws-resource-sns-subscription-return-values}
|
|
23
56
|
*/
|
|
24
57
|
export type SNSSubscriptionAttributes = {
|
|
25
|
-
|
|
58
|
+
/**
|
|
59
|
+
* Arn of the subscription
|
|
60
|
+
*/
|
|
61
|
+
Arn: string;
|
|
26
62
|
};
|
|
27
63
|
/**
|
|
28
64
|
* Resource Type definition for AWS::SNS::Subscription
|