@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.
- package/lib/AWS-Amplify-App.d.ts +8 -0
- package/lib/AWS-ECS-TaskDefinition.d.ts +53 -32
- 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-PCAConnectorSCEP-Challenge.d.ts +43 -0
- package/lib/AWS-PCAConnectorSCEP-Challenge.js +13 -0
- package/lib/AWS-PCAConnectorSCEP-Connector.d.ts +94 -0
- package/lib/AWS-PCAConnectorSCEP-Connector.js +13 -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/package.json +1 -1
|
@@ -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
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource type definition for `AWS::PCAConnectorSCEP::Challenge`.
|
|
5
|
+
* Represents a SCEP Challenge that is used for certificate enrollment
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-challenge.html}
|
|
7
|
+
*/
|
|
8
|
+
export type PCAConnectorSCEPChallengeProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `5`
|
|
11
|
+
* @maxLength `200`
|
|
12
|
+
* @pattern `^arn:aws(-[a-z]+)*:pca-connector-scep:[a-z]+(-[a-z]+)+-[1-9]\d*:\d{12}:connector\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
|
13
|
+
*/
|
|
14
|
+
ConnectorArn: string;
|
|
15
|
+
Tags?: Tags;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Attribute type definition for `AWS::PCAConnectorSCEP::Challenge`.
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-challenge.html#aws-resource-pcaconnectorscep-challenge-return-values}
|
|
20
|
+
*/
|
|
21
|
+
export type PCAConnectorSCEPChallengeAttributes = {
|
|
22
|
+
/**
|
|
23
|
+
* @minLength `5`
|
|
24
|
+
* @maxLength `200`
|
|
25
|
+
* @pattern `^arn:aws(-[a-z]+)*:pca-connector-scep:[a-z]+(-[a-z]+)+-[1-9]\d*:\d{12}:connector\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}\/challenge\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
|
26
|
+
*/
|
|
27
|
+
ChallengeArn: string;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Type definition for `AWS::PCAConnectorSCEP::Challenge.Tags`.
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorscep-challenge-tags.html}
|
|
32
|
+
*/
|
|
33
|
+
export type Tags = Record<string, string>;
|
|
34
|
+
/**
|
|
35
|
+
* Resource type definition for `AWS::PCAConnectorSCEP::Challenge`.
|
|
36
|
+
* Represents a SCEP Challenge that is used for certificate enrollment
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-challenge.html}
|
|
38
|
+
*/
|
|
39
|
+
export declare class PCAConnectorSCEPChallenge extends $Resource<"AWS::PCAConnectorSCEP::Challenge", PCAConnectorSCEPChallengeProperties, PCAConnectorSCEPChallengeAttributes> {
|
|
40
|
+
static readonly Type = "AWS::PCAConnectorSCEP::Challenge";
|
|
41
|
+
constructor(logicalId: string, properties: PCAConnectorSCEPChallengeProperties, options?: $ResourceOptions);
|
|
42
|
+
}
|
|
43
|
+
//# sourceMappingURL=AWS-PCAConnectorSCEP-Challenge.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::PCAConnectorSCEP::Challenge`.
|
|
4
|
+
* Represents a SCEP Challenge that is used for certificate enrollment
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-challenge.html}
|
|
6
|
+
*/
|
|
7
|
+
export class PCAConnectorSCEPChallenge extends $Resource {
|
|
8
|
+
static Type = "AWS::PCAConnectorSCEP::Challenge";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, PCAConnectorSCEPChallenge.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-PCAConnectorSCEP-Challenge.js.map
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource type definition for `AWS::PCAConnectorSCEP::Connector`.
|
|
5
|
+
* Represents a Connector that allows certificate issuance through Simple Certificate Enrollment Protocol (SCEP)
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-connector.html}
|
|
7
|
+
*/
|
|
8
|
+
export type PCAConnectorSCEPConnectorProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `5`
|
|
11
|
+
* @maxLength `200`
|
|
12
|
+
* @pattern `^arn:aws(-[a-z]+)*:acm-pca:[a-z]+(-[a-z]+)+-[1-9]\d*:\d{12}:certificate-authority\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
|
13
|
+
*/
|
|
14
|
+
CertificateAuthorityArn: string;
|
|
15
|
+
MobileDeviceManagement?: MobileDeviceManagement;
|
|
16
|
+
Tags?: Tags;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Attribute type definition for `AWS::PCAConnectorSCEP::Connector`.
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-connector.html#aws-resource-pcaconnectorscep-connector-return-values}
|
|
21
|
+
*/
|
|
22
|
+
export type PCAConnectorSCEPConnectorAttributes = {
|
|
23
|
+
/**
|
|
24
|
+
* @minLength `5`
|
|
25
|
+
* @maxLength `200`
|
|
26
|
+
* @pattern `^arn:aws(-[a-z]+)*:pca-connector-scep:[a-z]+(-[a-z]+)+-[1-9]\d*:\d{12}:connector\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
|
27
|
+
*/
|
|
28
|
+
ConnectorArn: string;
|
|
29
|
+
/**
|
|
30
|
+
* @minLength `5`
|
|
31
|
+
* @maxLength `200`
|
|
32
|
+
*/
|
|
33
|
+
Endpoint: string;
|
|
34
|
+
OpenIdConfiguration: {
|
|
35
|
+
Audience: string;
|
|
36
|
+
Issuer: string;
|
|
37
|
+
Subject: string;
|
|
38
|
+
};
|
|
39
|
+
Type: ConnectorType;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Type definition for `AWS::PCAConnectorSCEP::Connector.ConnectorType`.
|
|
43
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorscep-connector-connectortype.html}
|
|
44
|
+
*/
|
|
45
|
+
export type ConnectorType = "GENERAL_PURPOSE" | "INTUNE";
|
|
46
|
+
/**
|
|
47
|
+
* Type definition for `AWS::PCAConnectorSCEP::Connector.IntuneConfiguration`.
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorscep-connector-intuneconfiguration.html}
|
|
49
|
+
*/
|
|
50
|
+
export type IntuneConfiguration = {
|
|
51
|
+
/**
|
|
52
|
+
* @minLength `15`
|
|
53
|
+
* @maxLength `100`
|
|
54
|
+
* @pattern `^[a-zA-Z0-9]{2,15}-[a-zA-Z0-9]{2,15}-[a-zA-Z0-9]{2,15}-[a-zA-Z0-9]{2,15}-[a-zA-Z0-9]{2,15}$`
|
|
55
|
+
*/
|
|
56
|
+
AzureApplicationId: string;
|
|
57
|
+
/**
|
|
58
|
+
* @minLength `1`
|
|
59
|
+
* @maxLength `256`
|
|
60
|
+
* @pattern `^[a-zA-Z0-9._-]+$`
|
|
61
|
+
*/
|
|
62
|
+
Domain: string;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* Type definition for `AWS::PCAConnectorSCEP::Connector.MobileDeviceManagement`.
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorscep-connector-mobiledevicemanagement.html}
|
|
67
|
+
*/
|
|
68
|
+
export type MobileDeviceManagement = {
|
|
69
|
+
Intune: IntuneConfiguration;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Type definition for `AWS::PCAConnectorSCEP::Connector.OpenIdConfiguration`.
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorscep-connector-openidconfiguration.html}
|
|
74
|
+
*/
|
|
75
|
+
export type OpenIdConfiguration = {
|
|
76
|
+
Audience?: string;
|
|
77
|
+
Issuer?: string;
|
|
78
|
+
Subject?: string;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* Type definition for `AWS::PCAConnectorSCEP::Connector.Tags`.
|
|
82
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorscep-connector-tags.html}
|
|
83
|
+
*/
|
|
84
|
+
export type Tags = Record<string, string>;
|
|
85
|
+
/**
|
|
86
|
+
* Resource type definition for `AWS::PCAConnectorSCEP::Connector`.
|
|
87
|
+
* Represents a Connector that allows certificate issuance through Simple Certificate Enrollment Protocol (SCEP)
|
|
88
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-connector.html}
|
|
89
|
+
*/
|
|
90
|
+
export declare class PCAConnectorSCEPConnector extends $Resource<"AWS::PCAConnectorSCEP::Connector", PCAConnectorSCEPConnectorProperties, PCAConnectorSCEPConnectorAttributes> {
|
|
91
|
+
static readonly Type = "AWS::PCAConnectorSCEP::Connector";
|
|
92
|
+
constructor(logicalId: string, properties: PCAConnectorSCEPConnectorProperties, options?: $ResourceOptions);
|
|
93
|
+
}
|
|
94
|
+
//# sourceMappingURL=AWS-PCAConnectorSCEP-Connector.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::PCAConnectorSCEP::Connector`.
|
|
4
|
+
* Represents a Connector that allows certificate issuance through Simple Certificate Enrollment Protocol (SCEP)
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorscep-connector.html}
|
|
6
|
+
*/
|
|
7
|
+
export class PCAConnectorSCEPConnector extends $Resource {
|
|
8
|
+
static Type = "AWS::PCAConnectorSCEP::Connector";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, PCAConnectorSCEPConnector.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-PCAConnectorSCEP-Connector.js.map
|
|
@@ -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
|