@awboost/cfn-resource-types 0.1.460 → 0.1.462
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-BedrockAgentCore-Runtime.d.ts +1 -1
- package/lib/AWS-BillingConductor-CustomLineItem.d.ts +10 -0
- package/lib/AWS-ConnectCampaignsV2-Campaign.d.ts +44 -0
- package/lib/AWS-DataZone-Connection.d.ts +34 -4
- package/lib/AWS-DataZone-DataSource.d.ts +2 -2
- package/lib/AWS-DataZone-Domain.d.ts +1 -1
- package/lib/AWS-DataZone-EnvironmentBlueprintConfiguration.d.ts +2 -2
- package/lib/AWS-EC2-LaunchTemplate.d.ts +5 -4
- package/lib/AWS-EC2-NatGateway.d.ts +3 -0
- package/lib/AWS-ECS-Service.d.ts +34 -2
- package/lib/AWS-ElasticLoadBalancingV2-ListenerRule.d.ts +4 -4
- package/lib/AWS-ElasticLoadBalancingV2-LoadBalancer.d.ts +3 -0
- package/lib/AWS-ImageBuilder-Image.d.ts +15 -0
- package/lib/AWS-RTBFabric-Link.d.ts +102 -0
- package/lib/AWS-SageMaker-UserProfile.d.ts +2 -2
- package/lib/AWS-Signer-SigningProfile.d.ts +2 -2
- package/lib/AWS-Transfer-Connector.d.ts +46 -1
- package/package.json +1 -1
|
@@ -181,7 +181,7 @@ export type NetworkMode = "PUBLIC" | "VPC";
|
|
|
181
181
|
* Type definition for `AWS::BedrockAgentCore::Runtime.ProtocolConfiguration`.
|
|
182
182
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-protocolconfiguration.html}
|
|
183
183
|
*/
|
|
184
|
-
export type ProtocolConfiguration = "MCP" | "HTTP";
|
|
184
|
+
export type ProtocolConfiguration = "MCP" | "HTTP" | "A2A";
|
|
185
185
|
/**
|
|
186
186
|
* Type definition for `AWS::BedrockAgentCore::Runtime.TagsMap`.
|
|
187
187
|
* A map of tag keys and values
|
|
@@ -17,6 +17,10 @@ export type BillingConductorCustomLineItemProperties = {
|
|
|
17
17
|
*/
|
|
18
18
|
BillingGroupArn: string;
|
|
19
19
|
BillingPeriodRange?: BillingPeriodRange;
|
|
20
|
+
/**
|
|
21
|
+
* The display settings of the Custom Line Item.
|
|
22
|
+
*/
|
|
23
|
+
ComputationRule?: "CONSOLIDATED";
|
|
20
24
|
CustomLineItemChargeDetails?: CustomLineItemChargeDetails;
|
|
21
25
|
/**
|
|
22
26
|
* @maxLength `255`
|
|
@@ -28,6 +32,12 @@ export type BillingConductorCustomLineItemProperties = {
|
|
|
28
32
|
* @pattern `[a-zA-Z0-9_\+=\.\-@]+`
|
|
29
33
|
*/
|
|
30
34
|
Name: string;
|
|
35
|
+
PresentationDetails?: {
|
|
36
|
+
/**
|
|
37
|
+
* @pattern `^[a-zA-Z0-9]+$`
|
|
38
|
+
*/
|
|
39
|
+
Service: string;
|
|
40
|
+
};
|
|
31
41
|
Tags?: Tag[];
|
|
32
42
|
};
|
|
33
43
|
/**
|
|
@@ -64,6 +64,12 @@ export type ConnectCampaignsV2CampaignAttributes = {
|
|
|
64
64
|
*/
|
|
65
65
|
Arn: string;
|
|
66
66
|
};
|
|
67
|
+
/**
|
|
68
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.AgentAction`.
|
|
69
|
+
* Actions that can performed on a contact by an agent
|
|
70
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-agentaction.html}
|
|
71
|
+
*/
|
|
72
|
+
export type AgentAction = "DISCARD";
|
|
67
73
|
/**
|
|
68
74
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.AgentlessConfig`.
|
|
69
75
|
* Agentless config
|
|
@@ -323,6 +329,27 @@ export type PredictiveConfig = {
|
|
|
323
329
|
*/
|
|
324
330
|
BandwidthAllocation: number;
|
|
325
331
|
};
|
|
332
|
+
/**
|
|
333
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.PreviewConfig`.
|
|
334
|
+
* Preview config
|
|
335
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-previewconfig.html}
|
|
336
|
+
*/
|
|
337
|
+
export type PreviewConfig = {
|
|
338
|
+
/**
|
|
339
|
+
* Actions that can be performed by agent during preview phase
|
|
340
|
+
*/
|
|
341
|
+
AgentActions?: AgentAction[];
|
|
342
|
+
/**
|
|
343
|
+
* The bandwidth allocation of a queue resource.
|
|
344
|
+
* @min `0`
|
|
345
|
+
* @max `1`
|
|
346
|
+
*/
|
|
347
|
+
BandwidthAllocation: number;
|
|
348
|
+
/**
|
|
349
|
+
* Timeout Config for preview contacts
|
|
350
|
+
*/
|
|
351
|
+
TimeoutConfig: TimeoutConfig;
|
|
352
|
+
};
|
|
326
353
|
/**
|
|
327
354
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.ProgressiveConfig`.
|
|
328
355
|
* Progressive config
|
|
@@ -539,11 +566,28 @@ export type TelephonyOutboundMode = {
|
|
|
539
566
|
* Predictive config
|
|
540
567
|
*/
|
|
541
568
|
PredictiveConfig?: PredictiveConfig;
|
|
569
|
+
/**
|
|
570
|
+
* Preview config
|
|
571
|
+
*/
|
|
572
|
+
PreviewConfig?: PreviewConfig;
|
|
542
573
|
/**
|
|
543
574
|
* Progressive config
|
|
544
575
|
*/
|
|
545
576
|
ProgressiveConfig?: ProgressiveConfig;
|
|
546
577
|
};
|
|
578
|
+
/**
|
|
579
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TimeoutConfig`.
|
|
580
|
+
* Timeout Config for preview contacts
|
|
581
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-timeoutconfig.html}
|
|
582
|
+
*/
|
|
583
|
+
export type TimeoutConfig = {
|
|
584
|
+
/**
|
|
585
|
+
* Timeout duration for a preview contact in seconds
|
|
586
|
+
* @min `10`
|
|
587
|
+
* @max `300`
|
|
588
|
+
*/
|
|
589
|
+
DurationInSeconds?: number;
|
|
590
|
+
};
|
|
547
591
|
/**
|
|
548
592
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TimeRange`.
|
|
549
593
|
* Time range in 24 hour format
|
|
@@ -24,13 +24,17 @@ export type DataZoneConnectionProperties = {
|
|
|
24
24
|
/**
|
|
25
25
|
* The identifier of the environment in which the connection is created.
|
|
26
26
|
*/
|
|
27
|
-
EnvironmentIdentifier
|
|
27
|
+
EnvironmentIdentifier?: string;
|
|
28
28
|
/**
|
|
29
29
|
* The name of the connection.
|
|
30
30
|
* @maxLength `64`
|
|
31
31
|
* @pattern `^[\w][\w\.\-\_]*$`
|
|
32
32
|
*/
|
|
33
33
|
Name: string;
|
|
34
|
+
/**
|
|
35
|
+
* The identifier of the project in which the connection should be created. If
|
|
36
|
+
*/
|
|
37
|
+
ProjectIdentifier?: string;
|
|
34
38
|
Props?: ConnectionPropertiesInput;
|
|
35
39
|
};
|
|
36
40
|
/**
|
|
@@ -148,7 +152,7 @@ export type AuthorizationCodeProperties = {
|
|
|
148
152
|
export type AwsLocation = {
|
|
149
153
|
/**
|
|
150
154
|
* @maxLength `2048`
|
|
151
|
-
* @pattern `^arn:aws[^:]*:iam::\d{12}:(
|
|
155
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:role(/[a-zA-Z0-9+=,.@_-]+)/*[a-zA-Z0-9+=,.@_-]+$`
|
|
152
156
|
*/
|
|
153
157
|
AccessRole?: string;
|
|
154
158
|
/**
|
|
@@ -227,6 +231,11 @@ export type ConnectionPropertiesInput = {
|
|
|
227
231
|
* Spark Glue Properties Input.
|
|
228
232
|
*/
|
|
229
233
|
SparkGlueProperties: SparkGluePropertiesInput;
|
|
234
|
+
} | {
|
|
235
|
+
/**
|
|
236
|
+
* S3 Properties Input
|
|
237
|
+
*/
|
|
238
|
+
S3Properties: S3PropertiesInput;
|
|
230
239
|
};
|
|
231
240
|
/**
|
|
232
241
|
* Type definition for `AWS::DataZone::Connection.CredentialMap`.
|
|
@@ -525,6 +534,27 @@ export type RedshiftStorageProperties = {
|
|
|
525
534
|
*/
|
|
526
535
|
WorkgroupName: string;
|
|
527
536
|
};
|
|
537
|
+
/**
|
|
538
|
+
* Type definition for `AWS::DataZone::Connection.S3PropertiesInput`.
|
|
539
|
+
* S3 Properties Input
|
|
540
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-s3propertiesinput.html}
|
|
541
|
+
*/
|
|
542
|
+
export type S3PropertiesInput = {
|
|
543
|
+
/**
|
|
544
|
+
* The Amazon S3 Access Grant location ID that's part of the Amazon S3 properties of a connection.
|
|
545
|
+
* @minLength `0`
|
|
546
|
+
* @maxLength `64`
|
|
547
|
+
* @pattern `[a-zA-Z0-9\-]+`
|
|
548
|
+
*/
|
|
549
|
+
S3AccessGrantLocationId?: string;
|
|
550
|
+
/**
|
|
551
|
+
* The Amazon S3 URI that's part of the Amazon S3 properties of a connection.
|
|
552
|
+
* @minLength `0`
|
|
553
|
+
* @maxLength `2048`
|
|
554
|
+
* @pattern `s3://.+`
|
|
555
|
+
*/
|
|
556
|
+
S3Uri: string;
|
|
557
|
+
};
|
|
528
558
|
/**
|
|
529
559
|
* Type definition for `AWS::DataZone::Connection.SparkEmrPropertiesInput`.
|
|
530
560
|
* Spark EMR Properties Input.
|
|
@@ -538,7 +568,7 @@ export type SparkEmrPropertiesInput = {
|
|
|
538
568
|
ComputeArn?: string;
|
|
539
569
|
/**
|
|
540
570
|
* @maxLength `2048`
|
|
541
|
-
* @pattern `^arn:aws[^:]*:iam::\d{12}:(
|
|
571
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:role(/[a-zA-Z0-9+=,.@_-]+)/*[a-zA-Z0-9+=,.@_-]+$`
|
|
542
572
|
*/
|
|
543
573
|
InstanceProfileArn?: string;
|
|
544
574
|
/**
|
|
@@ -558,7 +588,7 @@ export type SparkEmrPropertiesInput = {
|
|
|
558
588
|
PythonVirtualEnv?: string;
|
|
559
589
|
/**
|
|
560
590
|
* @maxLength `2048`
|
|
561
|
-
* @pattern `^arn:aws[^:]*:iam::\d{12}:(
|
|
591
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:role(/[a-zA-Z0-9+=,.@_-]+)/*[a-zA-Z0-9+=,.@_-]+$`
|
|
562
592
|
*/
|
|
563
593
|
RuntimeRole?: string;
|
|
564
594
|
/**
|
|
@@ -221,7 +221,7 @@ export type GlueRunConfigurationInput = {
|
|
|
221
221
|
CatalogName?: string;
|
|
222
222
|
/**
|
|
223
223
|
* The data access role included in the configuration details of the AWS Glue data source.
|
|
224
|
-
* @pattern `^arn:aws[^:]*:iam::\d{12}:(
|
|
224
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:role(/[a-zA-Z0-9+=,.@_-]+)/*[a-zA-Z0-9+=,.@_-]+$`
|
|
225
225
|
*/
|
|
226
226
|
DataAccessRole?: string;
|
|
227
227
|
/**
|
|
@@ -275,7 +275,7 @@ export type RedshiftCredentialConfiguration = {
|
|
|
275
275
|
export type RedshiftRunConfigurationInput = {
|
|
276
276
|
/**
|
|
277
277
|
* The data access role included in the configuration details of the Amazon Redshift data source.
|
|
278
|
-
* @pattern `^arn:aws[^:]*:iam::\d{12}:(
|
|
278
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:role(/[a-zA-Z0-9+=,.@_-]+)/*[a-zA-Z0-9+=,.@_-]+$`
|
|
279
279
|
*/
|
|
280
280
|
DataAccessRole?: string;
|
|
281
281
|
/**
|
|
@@ -12,7 +12,7 @@ export type DataZoneDomainProperties = {
|
|
|
12
12
|
Description?: string;
|
|
13
13
|
/**
|
|
14
14
|
* The domain execution role that is created when an Amazon DataZone domain is created. The domain execution role is created in the AWS account that houses the Amazon DataZone domain.
|
|
15
|
-
* @pattern `^arn:aws[^:]*:iam::\d{12}:(
|
|
15
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:role(/[a-zA-Z0-9+=,.@_-]+)/*[a-zA-Z0-9+=,.@_-]+$`
|
|
16
16
|
*/
|
|
17
17
|
DomainExecutionRole: string;
|
|
18
18
|
/**
|
|
@@ -22,7 +22,7 @@ export type DataZoneEnvironmentBlueprintConfigurationProperties = {
|
|
|
22
22
|
*/
|
|
23
23
|
EnvironmentRolePermissionBoundary?: string;
|
|
24
24
|
/**
|
|
25
|
-
* @pattern `^arn:aws[^:]*:iam::\d{12}:(
|
|
25
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:role(/[a-zA-Z0-9+=,.@_-]+)/*[a-zA-Z0-9+=,.@_-]+$`
|
|
26
26
|
*/
|
|
27
27
|
ManageAccessRoleArn?: string;
|
|
28
28
|
ProvisioningConfigurations?: ProvisioningConfiguration[];
|
|
@@ -59,7 +59,7 @@ export type LakeFormationConfiguration = {
|
|
|
59
59
|
*/
|
|
60
60
|
LocationRegistrationExcludeS3Locations?: string[];
|
|
61
61
|
/**
|
|
62
|
-
* @pattern `^arn:aws[^:]*:iam::\d{12}:(
|
|
62
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:role(/[a-zA-Z0-9+=,.@_-]+)/*[a-zA-Z0-9+=,.@_-]+$`
|
|
63
63
|
*/
|
|
64
64
|
LocationRegistrationRole?: string;
|
|
65
65
|
};
|
|
@@ -236,7 +236,7 @@ export type Ebs = {
|
|
|
236
236
|
/**
|
|
237
237
|
* The number of I/O operations per second (IOPS). For ``gp3``, ``io1``, and ``io2`` volumes, this represents the number of IOPS that are provisioned for the volume. For ``gp2`` volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
|
|
238
238
|
The following are the supported values for each volume type:
|
|
239
|
-
+ ``gp3``: 3,000 -
|
|
239
|
+
+ ``gp3``: 3,000 - 80,000 IOPS
|
|
240
240
|
+ ``io1``: 100 - 64,000 IOPS
|
|
241
241
|
+ ``io2``: 100 - 256,000 IOPS
|
|
242
242
|
|
|
@@ -253,8 +253,8 @@ export type Ebs = {
|
|
|
253
253
|
*/
|
|
254
254
|
SnapshotId?: string;
|
|
255
255
|
/**
|
|
256
|
-
* The throughput to provision for a ``gp3`` volume, with a maximum of
|
|
257
|
-
Valid Range: Minimum value of 125. Maximum value of
|
|
256
|
+
* The throughput to provision for a ``gp3`` volume, with a maximum of 2,000 MiB/s.
|
|
257
|
+
Valid Range: Minimum value of 125. Maximum value of 2,000.
|
|
258
258
|
*/
|
|
259
259
|
Throughput?: number;
|
|
260
260
|
/**
|
|
@@ -270,7 +270,8 @@ export type Ebs = {
|
|
|
270
270
|
VolumeInitializationRate?: number;
|
|
271
271
|
/**
|
|
272
272
|
* The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
|
|
273
|
-
+ ``gp2
|
|
273
|
+
+ ``gp2``: 1 - 16,384 GiB
|
|
274
|
+
+ ``gp3``: 1 - 65,536 GiB
|
|
274
275
|
+ ``io1``: 4 - 16,384 GiB
|
|
275
276
|
+ ``io2``: 4 - 65,536 GiB
|
|
276
277
|
+ ``st1`` and ``sc1``: 125 - 16,384 GiB
|
package/lib/AWS-ECS-Service.d.ts
CHANGED
|
@@ -228,6 +228,22 @@ export type AwsVpcConfiguration = {
|
|
|
228
228
|
*/
|
|
229
229
|
Subnets?: string[];
|
|
230
230
|
};
|
|
231
|
+
/**
|
|
232
|
+
* Type definition for `AWS::ECS::Service.CanaryConfiguration`.
|
|
233
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-canaryconfiguration.html}
|
|
234
|
+
*/
|
|
235
|
+
export type CanaryConfiguration = {
|
|
236
|
+
/**
|
|
237
|
+
* @min `0`
|
|
238
|
+
* @max `1440`
|
|
239
|
+
*/
|
|
240
|
+
CanaryBakeTimeInMinutes?: number;
|
|
241
|
+
/**
|
|
242
|
+
* @min `0.1`
|
|
243
|
+
* @max `100`
|
|
244
|
+
*/
|
|
245
|
+
CanaryPercent?: number;
|
|
246
|
+
};
|
|
231
247
|
/**
|
|
232
248
|
* Type definition for `AWS::ECS::Service.CapacityProviderStrategyItem`.
|
|
233
249
|
* The details of a capacity provider strategy. A capacity provider strategy can be set when using the ``RunTask`` or ``CreateService`` APIs or as the default capacity provider strategy for a cluster with the ``CreateCluster`` API.
|
|
@@ -329,7 +345,7 @@ export type DeploymentConfiguration = {
|
|
|
329
345
|
* @max `1440`
|
|
330
346
|
*/
|
|
331
347
|
BakeTimeInMinutes?: number;
|
|
332
|
-
CanaryConfiguration?:
|
|
348
|
+
CanaryConfiguration?: CanaryConfiguration;
|
|
333
349
|
/**
|
|
334
350
|
* The deployment circuit breaker can only be used for services using the rolling update (``ECS``) deployment type.
|
|
335
351
|
The *deployment circuit breaker* determines whether a service deployment will fail if the service can't reach a steady state. If you use the deployment circuit breaker, a service deployment will transition to a failed state and stop launching new tasks. If you use the rollback option, when a service deployment fails, the service is rolled back to the last deployment that completed successfully. For more information, see [Rolling update](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html) in the *Amazon Elastic Container Service Developer Guide*
|
|
@@ -339,7 +355,7 @@ export type DeploymentConfiguration = {
|
|
|
339
355
|
* An array of deployment lifecycle hook objects to run custom logic at specific stages of the deployment lifecycle.
|
|
340
356
|
*/
|
|
341
357
|
LifecycleHooks?: DeploymentLifecycleHook[];
|
|
342
|
-
LinearConfiguration?:
|
|
358
|
+
LinearConfiguration?: LinearConfiguration;
|
|
343
359
|
/**
|
|
344
360
|
* If a service is using the rolling update (``ECS``) deployment type, the ``maximumPercent`` parameter represents an upper limit on the number of your service's tasks that are allowed in the ``RUNNING`` or ``PENDING`` state during a deployment, as a percentage of the ``desiredCount`` (rounded down to the nearest integer). This parameter enables you to define the deployment batch size. For example, if your service is using the ``REPLICA`` service scheduler and has a ``desiredCount`` of four tasks and a ``maximumPercent`` value of 200%, the scheduler may start four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available). The default ``maximumPercent`` value for a service using the ``REPLICA`` service scheduler is 200%.
|
|
345
361
|
The Amazon ECS scheduler uses this parameter to replace unhealthy tasks by starting replacement tasks first and then stopping the unhealthy tasks, as long as cluster resources for starting replacement tasks are available. For more information about how the scheduler replaces unhealthy tasks, see [Amazon ECS services](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html).
|
|
@@ -508,6 +524,22 @@ export type ForceNewDeployment = {
|
|
|
508
524
|
*/
|
|
509
525
|
ForceNewDeploymentNonce?: string;
|
|
510
526
|
};
|
|
527
|
+
/**
|
|
528
|
+
* Type definition for `AWS::ECS::Service.LinearConfiguration`.
|
|
529
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-linearconfiguration.html}
|
|
530
|
+
*/
|
|
531
|
+
export type LinearConfiguration = {
|
|
532
|
+
/**
|
|
533
|
+
* @min `0`
|
|
534
|
+
* @max `1440`
|
|
535
|
+
*/
|
|
536
|
+
StepBakeTimeInMinutes?: number;
|
|
537
|
+
/**
|
|
538
|
+
* @min `3`
|
|
539
|
+
* @max `100`
|
|
540
|
+
*/
|
|
541
|
+
StepPercent?: number;
|
|
542
|
+
};
|
|
511
543
|
/**
|
|
512
544
|
* Type definition for `AWS::ECS::Service.LoadBalancer`.
|
|
513
545
|
* The ``LoadBalancer`` property specifies details on a load balancer that is used with a service.
|
|
@@ -222,7 +222,7 @@ export type ForwardConfig = {
|
|
|
222
222
|
export type HostHeaderConfig = {
|
|
223
223
|
RegexValues?: string[];
|
|
224
224
|
/**
|
|
225
|
-
* The host names. The maximum
|
|
225
|
+
* The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
|
|
226
226
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
227
227
|
*/
|
|
228
228
|
Values?: string[];
|
|
@@ -240,7 +240,7 @@ export type HttpHeaderConfig = {
|
|
|
240
240
|
HttpHeaderName?: string;
|
|
241
241
|
RegexValues?: string[];
|
|
242
242
|
/**
|
|
243
|
-
* The strings to compare against the value of the HTTP header. The maximum
|
|
243
|
+
* The strings to compare against the value of the HTTP header. The maximum length of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
|
|
244
244
|
If the same header appears multiple times in the request, we search them in order until a match is found.
|
|
245
245
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the value of the HTTP header. To require that all of the strings are a match, create one condition per string.
|
|
246
246
|
*/
|
|
@@ -254,7 +254,7 @@ export type HttpHeaderConfig = {
|
|
|
254
254
|
*/
|
|
255
255
|
export type HttpRequestMethodConfig = {
|
|
256
256
|
/**
|
|
257
|
-
* The name of the request method. The maximum
|
|
257
|
+
* The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
|
|
258
258
|
If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
|
|
259
259
|
*/
|
|
260
260
|
Values?: string[];
|
|
@@ -280,7 +280,7 @@ export type PathPatternConfig = {
|
|
|
280
280
|
*/
|
|
281
281
|
export type QueryStringConfig = {
|
|
282
282
|
/**
|
|
283
|
-
* The key/value pairs or values to find in the query string. The maximum
|
|
283
|
+
* The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\' character.
|
|
284
284
|
If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
|
|
285
285
|
*/
|
|
286
286
|
Values?: QueryStringKeyValue[];
|
|
@@ -6,6 +6,9 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html}
|
|
7
7
|
*/
|
|
8
8
|
export type ElasticLoadBalancingV2LoadBalancerProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* Indicates whether to enable stabilization when creating or updating an LCU reservation. This ensures that the final stack status reflects the status of the LCU reservation. The default is ``false``.
|
|
11
|
+
*/
|
|
9
12
|
EnableCapacityReservationProvisionStabilize?: boolean;
|
|
10
13
|
/**
|
|
11
14
|
* [Network Load Balancers with UDP listeners] Indicates whether to use an IPv6 prefix from each subnet for source NAT. The IP address type must be ``dualstack``. The default value is ``off``.
|
|
@@ -9,6 +9,10 @@ export type ImageBuilderImageProperties = {
|
|
|
9
9
|
* The Amazon Resource Name (ARN) of the container recipe that defines how images are configured and tested.
|
|
10
10
|
*/
|
|
11
11
|
ContainerRecipeArn?: string;
|
|
12
|
+
/**
|
|
13
|
+
* The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
14
|
+
*/
|
|
15
|
+
DeletionSettings?: DeletionSettings;
|
|
12
16
|
/**
|
|
13
17
|
* The Amazon Resource Name (ARN) of the distribution configuration.
|
|
14
18
|
*/
|
|
@@ -97,6 +101,17 @@ export type ImageBuilderImageAttributes = {
|
|
|
97
101
|
*/
|
|
98
102
|
Name: string;
|
|
99
103
|
};
|
|
104
|
+
/**
|
|
105
|
+
* Type definition for `AWS::ImageBuilder::Image.DeletionSettings`.
|
|
106
|
+
* The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
107
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-deletionsettings.html}
|
|
108
|
+
*/
|
|
109
|
+
export type DeletionSettings = {
|
|
110
|
+
/**
|
|
111
|
+
* The execution role to use for deleting the image, as well as underlying resources.
|
|
112
|
+
*/
|
|
113
|
+
ExecutionRole: string;
|
|
114
|
+
};
|
|
100
115
|
/**
|
|
101
116
|
* Type definition for `AWS::ImageBuilder::Image.EcrConfiguration`.
|
|
102
117
|
* Settings for Image Builder to configure the ECR repository and output container images that are scanned.
|
|
@@ -12,6 +12,7 @@ export type RTBFabricLinkProperties = {
|
|
|
12
12
|
HttpResponderAllowed?: boolean;
|
|
13
13
|
LinkAttributes?: LinkAttributes;
|
|
14
14
|
LinkLogSettings: LinkLogSettings;
|
|
15
|
+
ModuleConfigurationList?: ModuleConfiguration[];
|
|
15
16
|
/**
|
|
16
17
|
* @pattern `^rtb-gw-[a-z0-9-]{1,25}$`
|
|
17
18
|
*/
|
|
@@ -43,6 +44,32 @@ export type RTBFabricLinkAttributes = {
|
|
|
43
44
|
LinkStatus: LinkStatus;
|
|
44
45
|
UpdatedTimestamp: string;
|
|
45
46
|
};
|
|
47
|
+
/**
|
|
48
|
+
* Type definition for `AWS::RTBFabric::Link.Filter`.
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-filter.html}
|
|
50
|
+
*/
|
|
51
|
+
export type Filter = {
|
|
52
|
+
Criteria: FilterCriterion[];
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* Type definition for `AWS::RTBFabric::Link.FilterCriterion`.
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-filtercriterion.html}
|
|
57
|
+
*/
|
|
58
|
+
export type FilterCriterion = {
|
|
59
|
+
Path: string;
|
|
60
|
+
/**
|
|
61
|
+
* @minLength `1`
|
|
62
|
+
*/
|
|
63
|
+
Values: string[];
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Type definition for `AWS::RTBFabric::Link.HeaderTagAction`.
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-headertagaction.html}
|
|
68
|
+
*/
|
|
69
|
+
export type HeaderTagAction = {
|
|
70
|
+
Name: string;
|
|
71
|
+
Value: string;
|
|
72
|
+
};
|
|
46
73
|
/**
|
|
47
74
|
* Type definition for `AWS::RTBFabric::Link.LinkAttributes`.
|
|
48
75
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linkattributes.html}
|
|
@@ -85,6 +112,81 @@ export type LinkLogSettings = {
|
|
|
85
112
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linkstatus.html}
|
|
86
113
|
*/
|
|
87
114
|
export type LinkStatus = "PENDING_CREATION" | "PENDING_REQUEST" | "REQUESTED" | "ACCEPTED" | "ACTIVE" | "DECLINED" | "FAILED" | "PENDING_DELETION" | "DELETED" | "PENDING_UPDATE" | "PENDING_ISOLATION" | "ISOLATED" | "PENDING_RESTORATION" | "UNKNOWN_TO_SDK_VERSION";
|
|
115
|
+
/**
|
|
116
|
+
* Type definition for `AWS::RTBFabric::Link.ModuleConfiguration`.
|
|
117
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-moduleconfiguration.html}
|
|
118
|
+
*/
|
|
119
|
+
export type ModuleConfiguration = {
|
|
120
|
+
DependsOn?: string[];
|
|
121
|
+
ModuleParameters?: ModuleParameters;
|
|
122
|
+
/**
|
|
123
|
+
* @pattern `^[A-Za-z0-9 -]+$`
|
|
124
|
+
*/
|
|
125
|
+
Name: string;
|
|
126
|
+
/**
|
|
127
|
+
* @pattern `^[a-z0-9]{1,25}$`
|
|
128
|
+
*/
|
|
129
|
+
Version?: string;
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* Type definition for `AWS::RTBFabric::Link.ModuleParameters`.
|
|
133
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-moduleparameters.html}
|
|
134
|
+
*/
|
|
135
|
+
export type ModuleParameters = {
|
|
136
|
+
NoBid: NoBidModuleParameters;
|
|
137
|
+
} | {
|
|
138
|
+
OpenRtbAttribute: OpenRtbAttributeModuleParameters;
|
|
139
|
+
};
|
|
140
|
+
/**
|
|
141
|
+
* Type definition for `AWS::RTBFabric::Link.NoBidAction`.
|
|
142
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-nobidaction.html}
|
|
143
|
+
*/
|
|
144
|
+
export type NoBidAction = {
|
|
145
|
+
/**
|
|
146
|
+
* @min `0`
|
|
147
|
+
*/
|
|
148
|
+
NoBidReasonCode?: number;
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* Type definition for `AWS::RTBFabric::Link.NoBidModuleParameters`.
|
|
152
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-nobidmoduleparameters.html}
|
|
153
|
+
*/
|
|
154
|
+
export type NoBidModuleParameters = {
|
|
155
|
+
/**
|
|
156
|
+
* @min `0`
|
|
157
|
+
* @max `100`
|
|
158
|
+
*/
|
|
159
|
+
PassThroughPercentage?: number;
|
|
160
|
+
/**
|
|
161
|
+
* @minLength `1`
|
|
162
|
+
* @maxLength `50`
|
|
163
|
+
* @pattern `^[a-zA-Z0-9]*$`
|
|
164
|
+
*/
|
|
165
|
+
Reason?: string;
|
|
166
|
+
/**
|
|
167
|
+
* @min `0`
|
|
168
|
+
* @max `10`
|
|
169
|
+
*/
|
|
170
|
+
ReasonCode?: number;
|
|
171
|
+
};
|
|
172
|
+
/**
|
|
173
|
+
* Type definition for `AWS::RTBFabric::Link.OpenRtbAttributeModuleParameters`.
|
|
174
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-openrtbattributemoduleparameters.html}
|
|
175
|
+
*/
|
|
176
|
+
export type OpenRtbAttributeModuleParameters = {
|
|
177
|
+
Action: {
|
|
178
|
+
NoBid: NoBidAction;
|
|
179
|
+
} | {
|
|
180
|
+
HeaderTag: HeaderTagAction;
|
|
181
|
+
};
|
|
182
|
+
FilterConfiguration: Filter[];
|
|
183
|
+
FilterType: "INCLUDE" | "EXCLUDE";
|
|
184
|
+
/**
|
|
185
|
+
* @min `0`
|
|
186
|
+
* @max `100`
|
|
187
|
+
*/
|
|
188
|
+
HoldbackPercentage: number;
|
|
189
|
+
};
|
|
88
190
|
/**
|
|
89
191
|
* Type definition for `AWS::RTBFabric::Link.ResponderErrorMaskingForHttpCode`.
|
|
90
192
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-respondererrormaskingforhttpcode.html}
|
|
@@ -56,7 +56,7 @@ export type SageMakerUserProfileAttributes = {
|
|
|
56
56
|
* The instance type that the image version runs on.
|
|
57
57
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-appinstancetype.html}
|
|
58
58
|
*/
|
|
59
|
-
export type AppInstanceType = "system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p3dn.24xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.geospatial.interactive" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.p5.48xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.m6id.large" | "ml.m6id.xlarge" | "ml.m6id.2xlarge" | "ml.m6id.4xlarge" | "ml.m6id.8xlarge" | "ml.m6id.12xlarge" | "ml.m6id.16xlarge" | "ml.m6id.24xlarge" | "ml.m6id.32xlarge" | "ml.c6id.large" | "ml.c6id.xlarge" | "ml.c6id.2xlarge" | "ml.c6id.4xlarge" | "ml.c6id.8xlarge" | "ml.c6id.12xlarge" | "ml.c6id.16xlarge" | "ml.c6id.24xlarge" | "ml.c6id.32xlarge" | "ml.r6id.large" | "ml.r6id.xlarge" | "ml.r6id.2xlarge" | "ml.r6id.4xlarge" | "ml.r6id.8xlarge" | "ml.r6id.12xlarge" | "ml.r6id.16xlarge" | "ml.r6id.24xlarge" | "ml.r6id.32xlarge";
|
|
59
|
+
export type AppInstanceType = "system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p3dn.24xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.geospatial.interactive" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.m6id.large" | "ml.m6id.xlarge" | "ml.m6id.2xlarge" | "ml.m6id.4xlarge" | "ml.m6id.8xlarge" | "ml.m6id.12xlarge" | "ml.m6id.16xlarge" | "ml.m6id.24xlarge" | "ml.m6id.32xlarge" | "ml.c6id.large" | "ml.c6id.xlarge" | "ml.c6id.2xlarge" | "ml.c6id.4xlarge" | "ml.c6id.8xlarge" | "ml.c6id.12xlarge" | "ml.c6id.16xlarge" | "ml.c6id.24xlarge" | "ml.c6id.32xlarge" | "ml.r6id.large" | "ml.r6id.xlarge" | "ml.r6id.2xlarge" | "ml.r6id.4xlarge" | "ml.r6id.8xlarge" | "ml.r6id.12xlarge" | "ml.r6id.16xlarge" | "ml.r6id.24xlarge" | "ml.r6id.32xlarge";
|
|
60
60
|
/**
|
|
61
61
|
* Type definition for `AWS::SageMaker::UserProfile.AppLifecycleManagement`.
|
|
62
62
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-applifecyclemanagement.html}
|
|
@@ -360,7 +360,7 @@ export type ResourceSpec = {
|
|
|
360
360
|
/**
|
|
361
361
|
* The instance type that the image version runs on.
|
|
362
362
|
*/
|
|
363
|
-
InstanceType?:
|
|
363
|
+
InstanceType?: AppInstanceType;
|
|
364
364
|
/**
|
|
365
365
|
* The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
|
|
366
366
|
* @maxLength `256`
|
|
@@ -26,7 +26,7 @@ export type SignerSigningProfileProperties = {
|
|
|
26
26
|
export type SignerSigningProfileAttributes = {
|
|
27
27
|
/**
|
|
28
28
|
* The Amazon Resource Name (ARN) of the specified signing profile.
|
|
29
|
-
* @pattern `^arn:aws(-
|
|
29
|
+
* @pattern `^arn:aws(-[a-z]{1,4}){0,2}:[a-z-]+:(([a-z]+-)+[0-9])?:([0-9]{12})?:[^.]+$`
|
|
30
30
|
*/
|
|
31
31
|
Arn: string;
|
|
32
32
|
/**
|
|
@@ -43,7 +43,7 @@ export type SignerSigningProfileAttributes = {
|
|
|
43
43
|
ProfileVersion: string;
|
|
44
44
|
/**
|
|
45
45
|
* The Amazon Resource Name (ARN) of the specified signing profile version.
|
|
46
|
-
* @pattern `^arn:aws(-
|
|
46
|
+
* @pattern `^arn:aws(-[a-z]{1,4}){0,2}:[a-z-]+:(([a-z]+-)+[0-9])?:([0-9]{12})?:[^.]+$`
|
|
47
47
|
*/
|
|
48
48
|
ProfileVersionArn: string;
|
|
49
49
|
};
|
|
@@ -68,6 +68,14 @@ export type TransferConnectorProperties = {
|
|
|
68
68
|
*/
|
|
69
69
|
SigningAlgorithm?: "SHA256" | "SHA384" | "SHA512" | "SHA1" | "NONE";
|
|
70
70
|
};
|
|
71
|
+
/**
|
|
72
|
+
* Egress configuration for the connector.
|
|
73
|
+
*/
|
|
74
|
+
EgressConfig?: ConnectorEgressConfig;
|
|
75
|
+
/**
|
|
76
|
+
* Specifies the egress type for the connector.
|
|
77
|
+
*/
|
|
78
|
+
EgressType?: ConnectorEgressType;
|
|
71
79
|
/**
|
|
72
80
|
* Specifies the logging role for the connector.
|
|
73
81
|
* @minLength `20`
|
|
@@ -112,7 +120,7 @@ export type TransferConnectorProperties = {
|
|
|
112
120
|
* URL for Connector
|
|
113
121
|
* @maxLength `255`
|
|
114
122
|
*/
|
|
115
|
-
Url
|
|
123
|
+
Url?: string;
|
|
116
124
|
};
|
|
117
125
|
/**
|
|
118
126
|
* Attribute type definition for `AWS::Transfer::Connector`.
|
|
@@ -137,6 +145,43 @@ export type TransferConnectorAttributes = {
|
|
|
137
145
|
* The list of egress IP addresses of this connector. These IP addresses are assigned automatically when you create the connector.
|
|
138
146
|
*/
|
|
139
147
|
ServiceManagedEgressIpAddresses: string[];
|
|
148
|
+
Status: ConnectorStatus;
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* Type definition for `AWS::Transfer::Connector.ConnectorEgressConfig`.
|
|
152
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-connectoregressconfig.html}
|
|
153
|
+
*/
|
|
154
|
+
export type ConnectorEgressConfig = {
|
|
155
|
+
VpcLattice: ConnectorVpcLatticeEgressConfig;
|
|
156
|
+
};
|
|
157
|
+
/**
|
|
158
|
+
* Type definition for `AWS::Transfer::Connector.ConnectorEgressType`.
|
|
159
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-connectoregresstype.html}
|
|
160
|
+
*/
|
|
161
|
+
export type ConnectorEgressType = "SERVICE_MANAGED" | "VPC_LATTICE";
|
|
162
|
+
/**
|
|
163
|
+
* Type definition for `AWS::Transfer::Connector.ConnectorStatus`.
|
|
164
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-connectorstatus.html}
|
|
165
|
+
*/
|
|
166
|
+
export type ConnectorStatus = "ACTIVE" | "PENDING" | "ERRORED";
|
|
167
|
+
/**
|
|
168
|
+
* Type definition for `AWS::Transfer::Connector.ConnectorVpcLatticeEgressConfig`.
|
|
169
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-connectorvpclatticeegressconfig.html}
|
|
170
|
+
*/
|
|
171
|
+
export type ConnectorVpcLatticeEgressConfig = {
|
|
172
|
+
/**
|
|
173
|
+
* Port to connect to on the target VPC Lattice resource
|
|
174
|
+
* @min `1`
|
|
175
|
+
* @max `65535`
|
|
176
|
+
*/
|
|
177
|
+
PortNumber?: number;
|
|
178
|
+
/**
|
|
179
|
+
* ARN of the VPC Lattice resource configuration
|
|
180
|
+
* @minLength `1`
|
|
181
|
+
* @maxLength `2048`
|
|
182
|
+
* @pattern `^arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:resourceconfiguration/rcfg-[0-9a-z]{17}$`
|
|
183
|
+
*/
|
|
184
|
+
ResourceConfigurationArn: string;
|
|
140
185
|
};
|
|
141
186
|
/**
|
|
142
187
|
* Type definition for `AWS::Transfer::Connector.Tag`.
|