@awboost/cfn-resource-types 0.1.461 → 0.1.463

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.
@@ -17,6 +17,7 @@ export type BatchJobDefinitionProperties = {
17
17
  Parameters?: Record<string, string>;
18
18
  PlatformCapabilities?: string[];
19
19
  PropagateTags?: boolean;
20
+ ResourceRetentionPolicy?: ResourceRetentionPolicy;
20
21
  RetryStrategy?: RetryStrategy;
21
22
  SchedulingPriority?: number;
22
23
  /**
@@ -428,6 +429,13 @@ export type ResourceRequirement = {
428
429
  Type?: string;
429
430
  Value?: string;
430
431
  };
432
+ /**
433
+ * Type definition for `AWS::Batch::JobDefinition.ResourceRetentionPolicy`.
434
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-resourceretentionpolicy.html}
435
+ */
436
+ export type ResourceRetentionPolicy = {
437
+ SkipDeregisterOnUpdate?: boolean;
438
+ };
431
439
  /**
432
440
  * Type definition for `AWS::Batch::JobDefinition.RetryStrategy`.
433
441
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html}
@@ -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: string;
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
  /**
@@ -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 - 16,000 IOPS
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 1,000 MiB/s.
257
- Valid Range: Minimum value of 125. Maximum value of 1000.
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`` and ``gp3``: 1 - 16,384 GiB
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
@@ -48,6 +48,9 @@ export type EC2NatGatewayProperties = {
48
48
  * The tags for the NAT gateway.
49
49
  */
50
50
  Tags?: Tag[];
51
+ /**
52
+ * The ID of the VPC in which the NAT gateway is located.
53
+ */
51
54
  VpcId?: string;
52
55
  };
53
56
  /**
@@ -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?: any;
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?: any;
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 size of each name 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.
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 size 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).
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 size 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.
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 size 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.
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.
@@ -76,6 +76,7 @@ export type Dimension = {
76
76
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewallpolicy-firewallpolicy.html}
77
77
  */
78
78
  export type FirewallPolicy = {
79
+ EnableTLSSessionHolding?: boolean;
79
80
  PolicyVariables?: {
80
81
  RuleVariables?: RuleVariables;
81
82
  };
@@ -92,7 +92,7 @@ export type Dimension = {
92
92
  * Type definition for `AWS::NetworkFirewall::RuleGroup.GeneratedRulesType`.
93
93
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-rulegroup-generatedrulestype.html}
94
94
  */
95
- export type GeneratedRulesType = "ALLOWLIST" | "DENYLIST";
95
+ export type GeneratedRulesType = "ALLOWLIST" | "DENYLIST" | "ALERTLIST" | "REJECTLIST";
96
96
  /**
97
97
  * Type definition for `AWS::NetworkFirewall::RuleGroup.Header`.
98
98
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-rulegroup-header.html}
@@ -63,6 +63,10 @@ export type NetworkManagerConnectAttachmentAttributes = {
63
63
  * Creation time of the attachment.
64
64
  */
65
65
  CreatedAt: string;
66
+ /**
67
+ * Errors from the last modification of the attachment.
68
+ */
69
+ LastModificationErrors: string[];
66
70
  /**
67
71
  * The ID of the attachment account owner.
68
72
  */
@@ -59,6 +59,10 @@ export type NetworkManagerSiteToSiteVpnAttachmentAttributes = {
59
59
  * The Region where the edge is located.
60
60
  */
61
61
  EdgeLocation: string;
62
+ /**
63
+ * Errors from the last modification of the attachment.
64
+ */
65
+ LastModificationErrors: string[];
62
66
  /**
63
67
  * Owner account of the attachment.
64
68
  */
@@ -35,6 +35,10 @@ export type NetworkManagerTransitGatewayPeeringAttributes = {
35
35
  * The location of the transit gateway peering
36
36
  */
37
37
  EdgeLocation: string;
38
+ /**
39
+ * Errors from the last modification of the transit gateway peering.
40
+ */
41
+ LastModificationErrors: string[];
38
42
  /**
39
43
  * Peering owner account Id
40
44
  */
@@ -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}
@@ -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: string;
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`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.461",
3
+ "version": "0.1.463",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },