@awboost/cfn-resource-types 0.1.89 → 0.1.91
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-ApiGateway-VpcLink.d.ts +6 -11
- package/lib/AWS-ApiGateway-VpcLink.js +1 -2
- package/lib/AWS-AutoScaling-ScalingPolicy.d.ts +24 -3
- package/lib/AWS-B2BI-Capability.d.ts +1 -1
- package/lib/AWS-Connect-Rule.d.ts +18 -0
- package/lib/AWS-EC2-TransitGatewayRoute.d.ts +14 -9
- package/lib/AWS-Pipes-Pipe.d.ts +126 -0
- package/lib/AWS-RolesAnywhere-Profile.d.ts +21 -0
- package/lib/AWS-SageMaker-Domain.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,25 +1,24 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
5
|
-
* Schema for AWS ApiGateway VpcLink
|
|
4
|
+
* The ``AWS::ApiGateway::VpcLink`` resource creates an API Gateway VPC link for a REST API to access resources in an Amazon Virtual Private Cloud (VPC). For more information, see [vpclink:create](https://docs.aws.amazon.com/apigateway/latest/api/API_CreateVpcLink.html) in the ``Amazon API Gateway REST API Reference``.
|
|
6
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html}
|
|
7
6
|
*/
|
|
8
7
|
export type ApiGatewayVpcLinkProperties = {
|
|
9
8
|
/**
|
|
10
|
-
*
|
|
9
|
+
* The description of the VPC link.
|
|
11
10
|
*/
|
|
12
11
|
Description?: string;
|
|
13
12
|
/**
|
|
14
|
-
*
|
|
13
|
+
* The name used to label and identify the VPC link.
|
|
15
14
|
*/
|
|
16
15
|
Name: string;
|
|
17
16
|
/**
|
|
18
|
-
* An array of arbitrary tags (key-value pairs) to associate with the
|
|
17
|
+
* An array of arbitrary tags (key-value pairs) to associate with the VPC link.
|
|
19
18
|
*/
|
|
20
19
|
Tags?: Tag[];
|
|
21
20
|
/**
|
|
22
|
-
* The ARN of network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same AWS
|
|
21
|
+
* The ARN of the network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same AWS-account of the API owner.
|
|
23
22
|
*/
|
|
24
23
|
TargetArns: string[];
|
|
25
24
|
};
|
|
@@ -28,9 +27,6 @@ export type ApiGatewayVpcLinkProperties = {
|
|
|
28
27
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#aws-resource-apigateway-vpclink-return-values}
|
|
29
28
|
*/
|
|
30
29
|
export type ApiGatewayVpcLinkAttributes = {
|
|
31
|
-
/**
|
|
32
|
-
* The ID of the instance that backs VPC link.
|
|
33
|
-
*/
|
|
34
30
|
VpcLinkId: string;
|
|
35
31
|
};
|
|
36
32
|
/**
|
|
@@ -42,8 +38,7 @@ export type Tag = {
|
|
|
42
38
|
Value: string;
|
|
43
39
|
};
|
|
44
40
|
/**
|
|
45
|
-
*
|
|
46
|
-
* Schema for AWS ApiGateway VpcLink
|
|
41
|
+
* The ``AWS::ApiGateway::VpcLink`` resource creates an API Gateway VPC link for a REST API to access resources in an Amazon Virtual Private Cloud (VPC). For more information, see [vpclink:create](https://docs.aws.amazon.com/apigateway/latest/api/API_CreateVpcLink.html) in the ``Amazon API Gateway REST API Reference``.
|
|
47
42
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html}
|
|
48
43
|
*/
|
|
49
44
|
export declare class ApiGatewayVpcLink extends $Resource<"AWS::ApiGateway::VpcLink", ApiGatewayVpcLinkProperties, ApiGatewayVpcLinkAttributes> {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
* Schema for AWS ApiGateway VpcLink
|
|
3
|
+
* The ``AWS::ApiGateway::VpcLink`` resource creates an API Gateway VPC link for a REST API to access resources in an Amazon Virtual Private Cloud (VPC). For more information, see [vpclink:create](https://docs.aws.amazon.com/apigateway/latest/api/API_CreateVpcLink.html) in the ``Amazon API Gateway REST API Reference``.
|
|
5
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html}
|
|
6
5
|
*/
|
|
7
6
|
export class ApiGatewayVpcLink extends $Resource {
|
|
@@ -67,9 +67,10 @@ export type AutoScalingScalingPolicyAttributes = {
|
|
|
67
67
|
*/
|
|
68
68
|
export type CustomizedMetricSpecification = {
|
|
69
69
|
Dimensions?: MetricDimension[];
|
|
70
|
-
MetricName
|
|
71
|
-
|
|
72
|
-
|
|
70
|
+
MetricName?: string;
|
|
71
|
+
Metrics?: TargetTrackingMetricDataQuery[];
|
|
72
|
+
Namespace?: string;
|
|
73
|
+
Statistic?: string;
|
|
73
74
|
Unit?: string;
|
|
74
75
|
};
|
|
75
76
|
/**
|
|
@@ -205,6 +206,26 @@ export type TargetTrackingConfiguration = {
|
|
|
205
206
|
PredefinedMetricSpecification?: PredefinedMetricSpecification;
|
|
206
207
|
TargetValue: number;
|
|
207
208
|
};
|
|
209
|
+
/**
|
|
210
|
+
* Type definition for `AWS::AutoScaling::ScalingPolicy.TargetTrackingMetricDataQuery`.
|
|
211
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingmetricdataquery.html}
|
|
212
|
+
*/
|
|
213
|
+
export type TargetTrackingMetricDataQuery = {
|
|
214
|
+
Expression?: string;
|
|
215
|
+
Id: string;
|
|
216
|
+
Label?: string;
|
|
217
|
+
MetricStat?: TargetTrackingMetricStat;
|
|
218
|
+
ReturnData?: boolean;
|
|
219
|
+
};
|
|
220
|
+
/**
|
|
221
|
+
* Type definition for `AWS::AutoScaling::ScalingPolicy.TargetTrackingMetricStat`.
|
|
222
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingmetricstat.html}
|
|
223
|
+
*/
|
|
224
|
+
export type TargetTrackingMetricStat = {
|
|
225
|
+
Metric: Metric;
|
|
226
|
+
Stat: string;
|
|
227
|
+
Unit?: string;
|
|
228
|
+
};
|
|
208
229
|
/**
|
|
209
230
|
* The AWS::AutoScaling::ScalingPolicy resource specifies an Amazon EC2 Auto Scaling scaling policy so that the Auto Scaling group can scale the number of instances available for your application.
|
|
210
231
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-scalingpolicy.html}
|
|
@@ -125,7 +125,7 @@ export type X12TransactionSet = "X12_110" | "X12_180" | "X12_204" | "X12_210" |
|
|
|
125
125
|
* Type definition for `AWS::B2BI::Capability.X12Version`.
|
|
126
126
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-x12version.html}
|
|
127
127
|
*/
|
|
128
|
-
export type X12Version = "VERSION_4010" | "VERSION_4030" | "VERSION_5010";
|
|
128
|
+
export type X12Version = "VERSION_4010" | "VERSION_4030" | "VERSION_5010" | "VERSION_5010_HIPAA";
|
|
129
129
|
/**
|
|
130
130
|
* Definition of AWS::B2BI::Capability Resource Type
|
|
131
131
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-capability.html}
|
|
@@ -85,6 +85,12 @@ export type Actions = {
|
|
|
85
85
|
* @maxLength `1`
|
|
86
86
|
*/
|
|
87
87
|
SendNotificationActions?: SendNotificationAction[];
|
|
88
|
+
/**
|
|
89
|
+
* This action will submit an auto contact evaluation when a rule is triggered.
|
|
90
|
+
* @minLength `1`
|
|
91
|
+
* @maxLength `1`
|
|
92
|
+
*/
|
|
93
|
+
SubmitAutoEvaluationActions?: SubmitAutoEvaluationAction[];
|
|
88
94
|
/**
|
|
89
95
|
* This action will generate a task when a rule is triggered.
|
|
90
96
|
* @minLength `1`
|
|
@@ -245,6 +251,18 @@ export type SendNotificationAction = {
|
|
|
245
251
|
*/
|
|
246
252
|
Subject?: string;
|
|
247
253
|
};
|
|
254
|
+
/**
|
|
255
|
+
* Type definition for `AWS::Connect::Rule.SubmitAutoEvaluationAction`.
|
|
256
|
+
* The definition of submit auto evaluation action.
|
|
257
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-submitautoevaluationaction.html}
|
|
258
|
+
*/
|
|
259
|
+
export type SubmitAutoEvaluationAction = {
|
|
260
|
+
/**
|
|
261
|
+
* The Amazon Resource Name (ARN) of the evaluation form.
|
|
262
|
+
* @pattern `^$|arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*evaluation-form/[-a-zA-Z0-9]*$`
|
|
263
|
+
*/
|
|
264
|
+
EvaluationFormArn: string;
|
|
265
|
+
};
|
|
248
266
|
/**
|
|
249
267
|
* Type definition for `AWS::Connect::Rule.Tag`.
|
|
250
268
|
* A key-value pair to associate with a resource.
|
|
@@ -5,23 +5,28 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html}
|
|
6
6
|
*/
|
|
7
7
|
export type EC2TransitGatewayRouteProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Indicates whether to drop traffic that matches this route.
|
|
10
|
+
*/
|
|
8
11
|
Blackhole?: boolean;
|
|
9
|
-
|
|
12
|
+
/**
|
|
13
|
+
* The CIDR range used for destination matches. Routing decisions are based on the most specific match.
|
|
14
|
+
*/
|
|
15
|
+
DestinationCidrBlock: string;
|
|
16
|
+
/**
|
|
17
|
+
* The ID of transit gateway attachment.
|
|
18
|
+
*/
|
|
10
19
|
TransitGatewayAttachmentId?: string;
|
|
20
|
+
/**
|
|
21
|
+
* The ID of transit gateway route table.
|
|
22
|
+
*/
|
|
11
23
|
TransitGatewayRouteTableId: string;
|
|
12
24
|
};
|
|
13
|
-
/**
|
|
14
|
-
* Attribute type definition for `AWS::EC2::TransitGatewayRoute`.
|
|
15
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#aws-resource-ec2-transitgatewayroute-return-values}
|
|
16
|
-
*/
|
|
17
|
-
export type EC2TransitGatewayRouteAttributes = {
|
|
18
|
-
Id: string;
|
|
19
|
-
};
|
|
20
25
|
/**
|
|
21
26
|
* Resource Type definition for AWS::EC2::TransitGatewayRoute
|
|
22
27
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html}
|
|
23
28
|
*/
|
|
24
|
-
export declare class EC2TransitGatewayRoute extends $Resource<"AWS::EC2::TransitGatewayRoute", EC2TransitGatewayRouteProperties,
|
|
29
|
+
export declare class EC2TransitGatewayRoute extends $Resource<"AWS::EC2::TransitGatewayRoute", EC2TransitGatewayRouteProperties, Record<string, never>> {
|
|
25
30
|
static readonly Type = "AWS::EC2::TransitGatewayRoute";
|
|
26
31
|
constructor(logicalId: string, properties: EC2TransitGatewayRouteProperties, options?: $ResourceOptions);
|
|
27
32
|
}
|
package/lib/AWS-Pipes-Pipe.d.ts
CHANGED
|
@@ -207,6 +207,28 @@ export type DeadLetterConfig = {
|
|
|
207
207
|
*/
|
|
208
208
|
Arn?: string;
|
|
209
209
|
};
|
|
210
|
+
/**
|
|
211
|
+
* Type definition for `AWS::Pipes::Pipe.DimensionMapping`.
|
|
212
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-dimensionmapping.html}
|
|
213
|
+
*/
|
|
214
|
+
export type DimensionMapping = {
|
|
215
|
+
/**
|
|
216
|
+
* @minLength `1`
|
|
217
|
+
* @maxLength `256`
|
|
218
|
+
*/
|
|
219
|
+
DimensionName: string;
|
|
220
|
+
/**
|
|
221
|
+
* @minLength `1`
|
|
222
|
+
* @maxLength `2048`
|
|
223
|
+
*/
|
|
224
|
+
DimensionValue: string;
|
|
225
|
+
DimensionValueType: DimensionValueType;
|
|
226
|
+
};
|
|
227
|
+
/**
|
|
228
|
+
* Type definition for `AWS::Pipes::Pipe.DimensionValueType`.
|
|
229
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-dimensionvaluetype.html}
|
|
230
|
+
*/
|
|
231
|
+
export type DimensionValueType = "VARCHAR";
|
|
210
232
|
/**
|
|
211
233
|
* Type definition for `AWS::Pipes::Pipe.DynamoDBStreamStartPosition`.
|
|
212
234
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-dynamodbstreamstartposition.html}
|
|
@@ -302,6 +324,11 @@ export type EcsTaskOverride = {
|
|
|
302
324
|
*/
|
|
303
325
|
TaskRoleArn?: string;
|
|
304
326
|
};
|
|
327
|
+
/**
|
|
328
|
+
* Type definition for `AWS::Pipes::Pipe.EpochTimeUnit`.
|
|
329
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-epochtimeunit.html}
|
|
330
|
+
*/
|
|
331
|
+
export type EpochTimeUnit = "MILLISECONDS" | "SECONDS" | "MICROSECONDS" | "NANOSECONDS";
|
|
305
332
|
/**
|
|
306
333
|
* Type definition for `AWS::Pipes::Pipe.Filter`.
|
|
307
334
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-filter.html}
|
|
@@ -361,6 +388,11 @@ export type LaunchType = "EC2" | "FARGATE" | "EXTERNAL";
|
|
|
361
388
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-loglevel.html}
|
|
362
389
|
*/
|
|
363
390
|
export type LogLevel = "OFF" | "ERROR" | "INFO" | "TRACE";
|
|
391
|
+
/**
|
|
392
|
+
* Type definition for `AWS::Pipes::Pipe.MeasureValueType`.
|
|
393
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-measurevaluetype.html}
|
|
394
|
+
*/
|
|
395
|
+
export type MeasureValueType = "DOUBLE" | "BIGINT" | "VARCHAR" | "BOOLEAN" | "TIMESTAMP";
|
|
364
396
|
/**
|
|
365
397
|
* Type definition for `AWS::Pipes::Pipe.MQBrokerAccessCredentials`.
|
|
366
398
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-mqbrokeraccesscredentials.html}
|
|
@@ -400,6 +432,39 @@ export type MSKAccessCredentials = {
|
|
|
400
432
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-mskstartposition.html}
|
|
401
433
|
*/
|
|
402
434
|
export type MSKStartPosition = "TRIM_HORIZON" | "LATEST";
|
|
435
|
+
/**
|
|
436
|
+
* Type definition for `AWS::Pipes::Pipe.MultiMeasureAttributeMapping`.
|
|
437
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-multimeasureattributemapping.html}
|
|
438
|
+
*/
|
|
439
|
+
export type MultiMeasureAttributeMapping = {
|
|
440
|
+
/**
|
|
441
|
+
* @minLength `1`
|
|
442
|
+
* @maxLength `2048`
|
|
443
|
+
*/
|
|
444
|
+
MeasureValue: string;
|
|
445
|
+
MeasureValueType: MeasureValueType;
|
|
446
|
+
/**
|
|
447
|
+
* @minLength `1`
|
|
448
|
+
* @maxLength `256`
|
|
449
|
+
*/
|
|
450
|
+
MultiMeasureAttributeName: string;
|
|
451
|
+
};
|
|
452
|
+
/**
|
|
453
|
+
* Type definition for `AWS::Pipes::Pipe.MultiMeasureMapping`.
|
|
454
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-multimeasuremapping.html}
|
|
455
|
+
*/
|
|
456
|
+
export type MultiMeasureMapping = {
|
|
457
|
+
/**
|
|
458
|
+
* @minLength `1`
|
|
459
|
+
* @maxLength `256`
|
|
460
|
+
*/
|
|
461
|
+
MultiMeasureAttributeMappings: MultiMeasureAttributeMapping[];
|
|
462
|
+
/**
|
|
463
|
+
* @minLength `1`
|
|
464
|
+
* @maxLength `256`
|
|
465
|
+
*/
|
|
466
|
+
MultiMeasureName: string;
|
|
467
|
+
};
|
|
403
468
|
/**
|
|
404
469
|
* Type definition for `AWS::Pipes::Pipe.NetworkConfiguration`.
|
|
405
470
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-networkconfiguration.html}
|
|
@@ -839,6 +904,7 @@ export type PipeTargetParameters = {
|
|
|
839
904
|
SageMakerPipelineParameters?: PipeTargetSageMakerPipelineParameters;
|
|
840
905
|
SqsQueueParameters?: PipeTargetSqsQueueParameters;
|
|
841
906
|
StepFunctionStateMachineParameters?: PipeTargetStateMachineParameters;
|
|
907
|
+
TimestreamParameters?: PipeTargetTimestreamParameters;
|
|
842
908
|
};
|
|
843
909
|
/**
|
|
844
910
|
* Type definition for `AWS::Pipes::Pipe.PipeTargetRedshiftDataParameters`.
|
|
@@ -912,6 +978,44 @@ export type PipeTargetSqsQueueParameters = {
|
|
|
912
978
|
export type PipeTargetStateMachineParameters = {
|
|
913
979
|
InvocationType?: PipeTargetInvocationType;
|
|
914
980
|
};
|
|
981
|
+
/**
|
|
982
|
+
* Type definition for `AWS::Pipes::Pipe.PipeTargetTimestreamParameters`.
|
|
983
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargettimestreamparameters.html}
|
|
984
|
+
*/
|
|
985
|
+
export type PipeTargetTimestreamParameters = {
|
|
986
|
+
/**
|
|
987
|
+
* @minLength `1`
|
|
988
|
+
* @maxLength `128`
|
|
989
|
+
*/
|
|
990
|
+
DimensionMappings: DimensionMapping[];
|
|
991
|
+
EpochTimeUnit?: EpochTimeUnit;
|
|
992
|
+
/**
|
|
993
|
+
* @minLength `0`
|
|
994
|
+
* @maxLength `1024`
|
|
995
|
+
*/
|
|
996
|
+
MultiMeasureMappings?: MultiMeasureMapping[];
|
|
997
|
+
/**
|
|
998
|
+
* @minLength `0`
|
|
999
|
+
* @maxLength `8192`
|
|
1000
|
+
*/
|
|
1001
|
+
SingleMeasureMappings?: SingleMeasureMapping[];
|
|
1002
|
+
TimeFieldType?: TimeFieldType;
|
|
1003
|
+
/**
|
|
1004
|
+
* @minLength `1`
|
|
1005
|
+
* @maxLength `256`
|
|
1006
|
+
*/
|
|
1007
|
+
TimeValue: string;
|
|
1008
|
+
/**
|
|
1009
|
+
* @minLength `1`
|
|
1010
|
+
* @maxLength `256`
|
|
1011
|
+
*/
|
|
1012
|
+
TimestampFormat?: string;
|
|
1013
|
+
/**
|
|
1014
|
+
* @minLength `1`
|
|
1015
|
+
* @maxLength `256`
|
|
1016
|
+
*/
|
|
1017
|
+
VersionValue: string;
|
|
1018
|
+
};
|
|
915
1019
|
/**
|
|
916
1020
|
* Type definition for `AWS::Pipes::Pipe.PlacementConstraint`.
|
|
917
1021
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-placementconstraint.html}
|
|
@@ -1053,6 +1157,23 @@ export type SelfManagedKafkaAccessConfigurationVpc = {
|
|
|
1053
1157
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-selfmanagedkafkastartposition.html}
|
|
1054
1158
|
*/
|
|
1055
1159
|
export type SelfManagedKafkaStartPosition = "TRIM_HORIZON" | "LATEST";
|
|
1160
|
+
/**
|
|
1161
|
+
* Type definition for `AWS::Pipes::Pipe.SingleMeasureMapping`.
|
|
1162
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-singlemeasuremapping.html}
|
|
1163
|
+
*/
|
|
1164
|
+
export type SingleMeasureMapping = {
|
|
1165
|
+
/**
|
|
1166
|
+
* @minLength `1`
|
|
1167
|
+
* @maxLength `1024`
|
|
1168
|
+
*/
|
|
1169
|
+
MeasureName: string;
|
|
1170
|
+
/**
|
|
1171
|
+
* @minLength `1`
|
|
1172
|
+
* @maxLength `2048`
|
|
1173
|
+
*/
|
|
1174
|
+
MeasureValue: string;
|
|
1175
|
+
MeasureValueType: MeasureValueType;
|
|
1176
|
+
};
|
|
1056
1177
|
/**
|
|
1057
1178
|
* Type definition for `AWS::Pipes::Pipe.Tag`.
|
|
1058
1179
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-tag.html}
|
|
@@ -1074,6 +1195,11 @@ export type Tag = {
|
|
|
1074
1195
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-tagmap.html}
|
|
1075
1196
|
*/
|
|
1076
1197
|
export type TagMap = Record<string, string>;
|
|
1198
|
+
/**
|
|
1199
|
+
* Type definition for `AWS::Pipes::Pipe.TimeFieldType`.
|
|
1200
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-timefieldtype.html}
|
|
1201
|
+
*/
|
|
1202
|
+
export type TimeFieldType = "EPOCH" | "TIMESTAMP_FORMAT";
|
|
1077
1203
|
/**
|
|
1078
1204
|
* Definition of AWS::Pipes::Pipe Resource Type
|
|
1079
1205
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pipes-pipe.html}
|
|
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html}
|
|
6
6
|
*/
|
|
7
7
|
export type RolesAnywhereProfileProperties = {
|
|
8
|
+
AttributeMappings?: AttributeMapping[];
|
|
8
9
|
/**
|
|
9
10
|
* @min `900`
|
|
10
11
|
* @max `43200`
|
|
@@ -33,6 +34,26 @@ export type RolesAnywhereProfileAttributes = {
|
|
|
33
34
|
*/
|
|
34
35
|
ProfileId: string;
|
|
35
36
|
};
|
|
37
|
+
/**
|
|
38
|
+
* Type definition for `AWS::RolesAnywhere::Profile.AttributeMapping`.
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-profile-attributemapping.html}
|
|
40
|
+
*/
|
|
41
|
+
export type AttributeMapping = {
|
|
42
|
+
CertificateField: CertificateField;
|
|
43
|
+
MappingRules: MappingRule[];
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* Type definition for `AWS::RolesAnywhere::Profile.CertificateField`.
|
|
47
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-profile-certificatefield.html}
|
|
48
|
+
*/
|
|
49
|
+
export type CertificateField = "x509Subject" | "x509Issuer" | "x509SAN";
|
|
50
|
+
/**
|
|
51
|
+
* Type definition for `AWS::RolesAnywhere::Profile.MappingRule`.
|
|
52
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-profile-mappingrule.html}
|
|
53
|
+
*/
|
|
54
|
+
export type MappingRule = {
|
|
55
|
+
Specifier: string;
|
|
56
|
+
};
|
|
36
57
|
/**
|
|
37
58
|
* Type definition for `AWS::RolesAnywhere::Profile.Tag`.
|
|
38
59
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-profile-tag.html}
|
|
@@ -113,7 +113,7 @@ export type CodeEditorAppSettings = {
|
|
|
113
113
|
/**
|
|
114
114
|
* A list of custom images for use for CodeEditor apps.
|
|
115
115
|
* @minLength `0`
|
|
116
|
-
* @maxLength `
|
|
116
|
+
* @maxLength `200`
|
|
117
117
|
*/
|
|
118
118
|
CustomImages?: CustomImage[];
|
|
119
119
|
/**
|
|
@@ -332,7 +332,7 @@ export type JupyterLabAppSettings = {
|
|
|
332
332
|
/**
|
|
333
333
|
* A list of custom images for use for JupyterLab apps.
|
|
334
334
|
* @minLength `0`
|
|
335
|
-
* @maxLength `
|
|
335
|
+
* @maxLength `200`
|
|
336
336
|
*/
|
|
337
337
|
CustomImages?: CustomImage[];
|
|
338
338
|
/**
|
|
@@ -363,7 +363,7 @@ export type KernelGatewayAppSettings = {
|
|
|
363
363
|
/**
|
|
364
364
|
* A list of custom SageMaker images that are configured to run as a KernelGateway app.
|
|
365
365
|
* @minLength `0`
|
|
366
|
-
* @maxLength `
|
|
366
|
+
* @maxLength `200`
|
|
367
367
|
*/
|
|
368
368
|
CustomImages?: CustomImage[];
|
|
369
369
|
/**
|
|
@@ -408,7 +408,7 @@ export type RSessionAppSettings = {
|
|
|
408
408
|
/**
|
|
409
409
|
* A list of custom SageMaker images that are configured to run as a KernelGateway app.
|
|
410
410
|
* @minLength `0`
|
|
411
|
-
* @maxLength `
|
|
411
|
+
* @maxLength `200`
|
|
412
412
|
*/
|
|
413
413
|
CustomImages?: CustomImage[];
|
|
414
414
|
DefaultResourceSpec?: ResourceSpec;
|