@pulumi/aws 6.53.0 → 6.54.0
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/alb/listener.d.ts +6 -6
- package/backup/vaultPolicy.d.ts +5 -4
- package/backup/vaultPolicy.js +5 -4
- package/backup/vaultPolicy.js.map +1 -1
- package/bedrock/agentAgent.d.ts +3 -0
- package/bedrock/agentAgent.js +2 -0
- package/bedrock/agentAgent.js.map +1 -1
- package/connect/getInstance.d.ts +18 -0
- package/connect/getInstance.js +2 -0
- package/connect/getInstance.js.map +1 -1
- package/connect/instance.d.ts +41 -4
- package/connect/instance.js +8 -1
- package/connect/instance.js.map +1 -1
- package/ec2transitgateway/getTransitGateway.d.ts +4 -0
- package/ec2transitgateway/getTransitGateway.js.map +1 -1
- package/ec2transitgateway/getVpcAttachment.d.ts +4 -0
- package/ec2transitgateway/getVpcAttachment.js.map +1 -1
- package/ec2transitgateway/transitGateway.d.ts +12 -0
- package/ec2transitgateway/transitGateway.js +2 -0
- package/ec2transitgateway/transitGateway.js.map +1 -1
- package/ec2transitgateway/vpcAttachment.d.ts +12 -0
- package/ec2transitgateway/vpcAttachment.js +2 -0
- package/ec2transitgateway/vpcAttachment.js.map +1 -1
- package/ec2transitgateway/vpcAttachmentAccepter.d.ts +8 -0
- package/ec2transitgateway/vpcAttachmentAccepter.js +2 -0
- package/ec2transitgateway/vpcAttachmentAccepter.js.map +1 -1
- package/elasticache/serverlessCache.d.ts +7 -7
- package/getService.d.ts +2 -2
- package/iam/role.d.ts +10 -6
- package/iam/role.js +4 -0
- package/iam/role.js.map +1 -1
- package/lb/listener.d.ts +6 -6
- package/opensearch/getServerlessCollection.d.ts +5 -0
- package/opensearch/getServerlessCollection.js.map +1 -1
- package/package.json +3 -3
- package/quicksight/dataSource.d.ts +4 -4
- package/sagemaker/workteam.d.ts +7 -7
- package/sagemaker/workteam.js +1 -1
- package/types/input.d.ts +75 -38
- package/types/input.js.map +1 -1
- package/types/output.d.ts +75 -38
- package/types/output.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -378,6 +378,10 @@ export interface ProviderEndpoint {
|
|
|
378
378
|
* Use this to override the default service endpoint URL
|
|
379
379
|
*/
|
|
380
380
|
codecommit?: pulumi.Input<string>;
|
|
381
|
+
/**
|
|
382
|
+
* Use this to override the default service endpoint URL
|
|
383
|
+
*/
|
|
384
|
+
codeconnections?: pulumi.Input<string>;
|
|
381
385
|
/**
|
|
382
386
|
* Use this to override the default service endpoint URL
|
|
383
387
|
*/
|
|
@@ -1514,11 +1518,11 @@ export declare namespace acmpca {
|
|
|
1514
1518
|
export declare namespace alb {
|
|
1515
1519
|
interface ListenerDefaultAction {
|
|
1516
1520
|
/**
|
|
1517
|
-
* Configuration block for using Amazon Cognito to authenticate users. Specify only when `type` is `authenticate-cognito`.
|
|
1521
|
+
* Configuration block for using Amazon Cognito to authenticate users. Specify only when `type` is `authenticate-cognito`. See below.
|
|
1518
1522
|
*/
|
|
1519
1523
|
authenticateCognito?: pulumi.Input<inputs.alb.ListenerDefaultActionAuthenticateCognito>;
|
|
1520
1524
|
/**
|
|
1521
|
-
* Configuration block for an identity provider that is compliant with OpenID Connect (OIDC). Specify only when `type` is `authenticate-oidc`.
|
|
1525
|
+
* Configuration block for an identity provider that is compliant with OpenID Connect (OIDC). Specify only when `type` is `authenticate-oidc`. See below.
|
|
1522
1526
|
*/
|
|
1523
1527
|
authenticateOidc?: pulumi.Input<inputs.alb.ListenerDefaultActionAuthenticateOidc>;
|
|
1524
1528
|
/**
|
|
@@ -1526,28 +1530,19 @@ export declare namespace alb {
|
|
|
1526
1530
|
*/
|
|
1527
1531
|
fixedResponse?: pulumi.Input<inputs.alb.ListenerDefaultActionFixedResponse>;
|
|
1528
1532
|
/**
|
|
1529
|
-
* Configuration block for creating an action that distributes requests among one or more target groups.
|
|
1530
|
-
* Specify only if `type` is `forward`.
|
|
1531
|
-
* Cannot be specified with `targetGroupArn`.
|
|
1532
|
-
* Detailed below.
|
|
1533
|
+
* Configuration block for creating an action that distributes requests among one or more target groups. Specify only if `type` is `forward`. See below.
|
|
1533
1534
|
*/
|
|
1534
1535
|
forward?: pulumi.Input<inputs.alb.ListenerDefaultActionForward>;
|
|
1535
1536
|
/**
|
|
1536
|
-
* Order for the action.
|
|
1537
|
-
* The action with the lowest value for order is performed first.
|
|
1538
|
-
* Valid values are between `1` and `50000`.
|
|
1539
|
-
* Defaults to the position in the list of actions.
|
|
1537
|
+
* Order for the action. The action with the lowest value for order is performed first. Valid values are between `1` and `50000`. Defaults to the position in the list of actions.
|
|
1540
1538
|
*/
|
|
1541
1539
|
order?: pulumi.Input<number>;
|
|
1542
1540
|
/**
|
|
1543
|
-
* Configuration block for creating a redirect action. Required if `type` is `redirect`.
|
|
1541
|
+
* Configuration block for creating a redirect action. Required if `type` is `redirect`. See below.
|
|
1544
1542
|
*/
|
|
1545
1543
|
redirect?: pulumi.Input<inputs.alb.ListenerDefaultActionRedirect>;
|
|
1546
1544
|
/**
|
|
1547
|
-
* ARN of the Target Group to which to route traffic.
|
|
1548
|
-
* Specify only if `type` is `forward` and you want to route to a single target group.
|
|
1549
|
-
* To route to one or more target groups, use a `forward` block instead.
|
|
1550
|
-
* Cannot be specified with `forward`.
|
|
1545
|
+
* ARN of the Target Group to which to route traffic. Specify only if `type` is `forward` and you want to route to a single target group. To route to one or more target groups, use a `forward` block instead. Can be specified with `forward` but ARNs must match.
|
|
1551
1546
|
*/
|
|
1552
1547
|
targetGroupArn?: pulumi.Input<string>;
|
|
1553
1548
|
/**
|
|
@@ -1559,7 +1554,7 @@ export declare namespace alb {
|
|
|
1559
1554
|
}
|
|
1560
1555
|
interface ListenerDefaultActionAuthenticateCognito {
|
|
1561
1556
|
/**
|
|
1562
|
-
* Query parameters to include in the redirect request to the authorization endpoint. Max: 10.
|
|
1557
|
+
* Query parameters to include in the redirect request to the authorization endpoint. Max: 10. See below.
|
|
1563
1558
|
*/
|
|
1564
1559
|
authenticationRequestExtraParams?: pulumi.Input<{
|
|
1565
1560
|
[key: string]: pulumi.Input<string>;
|
|
@@ -1663,11 +1658,11 @@ export declare namespace alb {
|
|
|
1663
1658
|
}
|
|
1664
1659
|
interface ListenerDefaultActionForward {
|
|
1665
1660
|
/**
|
|
1666
|
-
* Configuration block for target group stickiness for the rule.
|
|
1661
|
+
* Configuration block for target group stickiness for the rule. See below.
|
|
1667
1662
|
*/
|
|
1668
1663
|
stickiness?: pulumi.Input<inputs.alb.ListenerDefaultActionForwardStickiness>;
|
|
1669
1664
|
/**
|
|
1670
|
-
* Set of 1-5 target group blocks.
|
|
1665
|
+
* Set of 1-5 target group blocks. See below.
|
|
1671
1666
|
*
|
|
1672
1667
|
* The following arguments are optional:
|
|
1673
1668
|
*/
|
|
@@ -9519,6 +9514,16 @@ export declare namespace bedrock {
|
|
|
9519
9514
|
*/
|
|
9520
9515
|
update?: pulumi.Input<string>;
|
|
9521
9516
|
}
|
|
9517
|
+
interface AgentAgentGuardrailConfiguration {
|
|
9518
|
+
/**
|
|
9519
|
+
* Unique identifier of the guardrail.
|
|
9520
|
+
*/
|
|
9521
|
+
guardrailIdentifier: pulumi.Input<string>;
|
|
9522
|
+
/**
|
|
9523
|
+
* Version of the guardrail.
|
|
9524
|
+
*/
|
|
9525
|
+
guardrailVersion: pulumi.Input<string>;
|
|
9526
|
+
}
|
|
9522
9527
|
interface AgentAgentKnowledgeBaseAssociationTimeouts {
|
|
9523
9528
|
/**
|
|
9524
9529
|
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
@@ -22131,6 +22136,9 @@ export declare namespace ec2 {
|
|
|
22131
22136
|
* The ID of the network interface to attach.
|
|
22132
22137
|
*/
|
|
22133
22138
|
networkInterfaceId?: pulumi.Input<string>;
|
|
22139
|
+
/**
|
|
22140
|
+
* Whether the first IPv6 GUA will be made the primary IPv6 address.
|
|
22141
|
+
*/
|
|
22134
22142
|
primaryIpv6?: pulumi.Input<string>;
|
|
22135
22143
|
/**
|
|
22136
22144
|
* The primary private IPv4 address.
|
|
@@ -24707,6 +24715,8 @@ export declare namespace ecs {
|
|
|
24707
24715
|
interface CapacityProviderAutoScalingGroupProviderManagedScaling {
|
|
24708
24716
|
/**
|
|
24709
24717
|
* Period of time, in seconds, after a newly launched Amazon EC2 instance can contribute to CloudWatch metrics for Auto Scaling group. If this parameter is omitted, the default value of 300 seconds is used.
|
|
24718
|
+
*
|
|
24719
|
+
* For more information on how the instance warmup period contributes to managed scale-out behavior, see [Control the instances Amazon ECS terminates](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/managed-termination-protection.html) in the _Amazon Elastic Container Service Developer Guide_.
|
|
24710
24720
|
*/
|
|
24711
24721
|
instanceWarmupPeriod?: pulumi.Input<number>;
|
|
24712
24722
|
/**
|
|
@@ -25360,6 +25370,10 @@ export declare namespace ecs {
|
|
|
25360
25370
|
* Snapshot that Amazon ECS uses to create the volume. You must specify either a `sizeInGb` or a `snapshotId`.
|
|
25361
25371
|
*/
|
|
25362
25372
|
snapshotId?: pulumi.Input<string>;
|
|
25373
|
+
/**
|
|
25374
|
+
* The tags to apply to the volume. See below.
|
|
25375
|
+
*/
|
|
25376
|
+
tagSpecifications?: pulumi.Input<pulumi.Input<inputs.ecs.ServiceVolumeConfigurationManagedEbsVolumeTagSpecification>[]>;
|
|
25363
25377
|
/**
|
|
25364
25378
|
* Throughput to provision for a volume, in MiB/s, with a maximum of 1,000 MiB/s.
|
|
25365
25379
|
*/
|
|
@@ -25369,6 +25383,22 @@ export declare namespace ecs {
|
|
|
25369
25383
|
*/
|
|
25370
25384
|
volumeType?: pulumi.Input<string>;
|
|
25371
25385
|
}
|
|
25386
|
+
interface ServiceVolumeConfigurationManagedEbsVolumeTagSpecification {
|
|
25387
|
+
/**
|
|
25388
|
+
* Determines whether to propagate the tags from the task definition to the Amazon EBS volume.
|
|
25389
|
+
*/
|
|
25390
|
+
propagateTags?: pulumi.Input<string>;
|
|
25391
|
+
/**
|
|
25392
|
+
* The type of volume resource. Valid values, `volume`.
|
|
25393
|
+
*/
|
|
25394
|
+
resourceType: pulumi.Input<string>;
|
|
25395
|
+
/**
|
|
25396
|
+
* The tags applied to this Amazon EBS volume. `AmazonECSCreated` and `AmazonECSManaged` are reserved tags that can't be used.
|
|
25397
|
+
*/
|
|
25398
|
+
tags?: pulumi.Input<{
|
|
25399
|
+
[key: string]: pulumi.Input<string>;
|
|
25400
|
+
}>;
|
|
25401
|
+
}
|
|
25372
25402
|
interface TaskDefinitionEphemeralStorage {
|
|
25373
25403
|
/**
|
|
25374
25404
|
* The total amount, in GiB, of ephemeral storage to set for the task. The minimum supported value is `21` GiB and the maximum supported value is `200` GiB.
|
|
@@ -26075,16 +26105,22 @@ export declare namespace elasticache {
|
|
|
26075
26105
|
}
|
|
26076
26106
|
interface ServerlessCacheCacheUsageLimits {
|
|
26077
26107
|
/**
|
|
26078
|
-
* The maximum data storage limit in the cache, expressed in Gigabytes. See
|
|
26108
|
+
* The maximum data storage limit in the cache, expressed in Gigabytes. See `dataStorage` Block for details.
|
|
26079
26109
|
*/
|
|
26080
26110
|
dataStorage?: pulumi.Input<inputs.elasticache.ServerlessCacheCacheUsageLimitsDataStorage>;
|
|
26081
26111
|
/**
|
|
26082
|
-
* The configuration for the number of ElastiCache Processing Units (ECPU) the cache can consume per second.See
|
|
26112
|
+
* The configuration for the number of ElastiCache Processing Units (ECPU) the cache can consume per second. See `ecpuPerSecond` Block for details.
|
|
26083
26113
|
*/
|
|
26084
26114
|
ecpuPerSeconds?: pulumi.Input<pulumi.Input<inputs.elasticache.ServerlessCacheCacheUsageLimitsEcpuPerSecond>[]>;
|
|
26085
26115
|
}
|
|
26086
26116
|
interface ServerlessCacheCacheUsageLimitsDataStorage {
|
|
26117
|
+
/**
|
|
26118
|
+
* The upper limit for data storage the cache is set to use. Must be between 1 and 5,000.
|
|
26119
|
+
*/
|
|
26087
26120
|
maximum?: pulumi.Input<number>;
|
|
26121
|
+
/**
|
|
26122
|
+
* The lower limit for data storage the cache is set to use. Must be between 1 and 5,000.
|
|
26123
|
+
*/
|
|
26088
26124
|
minimum?: pulumi.Input<number>;
|
|
26089
26125
|
/**
|
|
26090
26126
|
* The unit that the storage is measured in, in GB.
|
|
@@ -26092,7 +26128,13 @@ export declare namespace elasticache {
|
|
|
26092
26128
|
unit: pulumi.Input<string>;
|
|
26093
26129
|
}
|
|
26094
26130
|
interface ServerlessCacheCacheUsageLimitsEcpuPerSecond {
|
|
26131
|
+
/**
|
|
26132
|
+
* The maximum number of ECPUs the cache can consume per second. Must be between 1,000 and 15,000,000.
|
|
26133
|
+
*/
|
|
26095
26134
|
maximum?: pulumi.Input<number>;
|
|
26135
|
+
/**
|
|
26136
|
+
* The minimum number of ECPUs the cache can consume per second. Must be between 1,000 and 15,000,000.
|
|
26137
|
+
*/
|
|
26096
26138
|
minimum?: pulumi.Input<number>;
|
|
26097
26139
|
}
|
|
26098
26140
|
interface ServerlessCacheEndpoint {
|
|
@@ -36907,11 +36949,11 @@ export declare namespace lambda {
|
|
|
36907
36949
|
export declare namespace lb {
|
|
36908
36950
|
interface ListenerDefaultAction {
|
|
36909
36951
|
/**
|
|
36910
|
-
* Configuration block for using Amazon Cognito to authenticate users. Specify only when `type` is `authenticate-cognito`.
|
|
36952
|
+
* Configuration block for using Amazon Cognito to authenticate users. Specify only when `type` is `authenticate-cognito`. See below.
|
|
36911
36953
|
*/
|
|
36912
36954
|
authenticateCognito?: pulumi.Input<inputs.lb.ListenerDefaultActionAuthenticateCognito>;
|
|
36913
36955
|
/**
|
|
36914
|
-
* Configuration block for an identity provider that is compliant with OpenID Connect (OIDC). Specify only when `type` is `authenticate-oidc`.
|
|
36956
|
+
* Configuration block for an identity provider that is compliant with OpenID Connect (OIDC). Specify only when `type` is `authenticate-oidc`. See below.
|
|
36915
36957
|
*/
|
|
36916
36958
|
authenticateOidc?: pulumi.Input<inputs.lb.ListenerDefaultActionAuthenticateOidc>;
|
|
36917
36959
|
/**
|
|
@@ -36919,28 +36961,19 @@ export declare namespace lb {
|
|
|
36919
36961
|
*/
|
|
36920
36962
|
fixedResponse?: pulumi.Input<inputs.lb.ListenerDefaultActionFixedResponse>;
|
|
36921
36963
|
/**
|
|
36922
|
-
* Configuration block for creating an action that distributes requests among one or more target groups.
|
|
36923
|
-
* Specify only if `type` is `forward`.
|
|
36924
|
-
* Cannot be specified with `targetGroupArn`.
|
|
36925
|
-
* Detailed below.
|
|
36964
|
+
* Configuration block for creating an action that distributes requests among one or more target groups. Specify only if `type` is `forward`. See below.
|
|
36926
36965
|
*/
|
|
36927
36966
|
forward?: pulumi.Input<inputs.lb.ListenerDefaultActionForward>;
|
|
36928
36967
|
/**
|
|
36929
|
-
* Order for the action.
|
|
36930
|
-
* The action with the lowest value for order is performed first.
|
|
36931
|
-
* Valid values are between `1` and `50000`.
|
|
36932
|
-
* Defaults to the position in the list of actions.
|
|
36968
|
+
* Order for the action. The action with the lowest value for order is performed first. Valid values are between `1` and `50000`. Defaults to the position in the list of actions.
|
|
36933
36969
|
*/
|
|
36934
36970
|
order?: pulumi.Input<number>;
|
|
36935
36971
|
/**
|
|
36936
|
-
* Configuration block for creating a redirect action. Required if `type` is `redirect`.
|
|
36972
|
+
* Configuration block for creating a redirect action. Required if `type` is `redirect`. See below.
|
|
36937
36973
|
*/
|
|
36938
36974
|
redirect?: pulumi.Input<inputs.lb.ListenerDefaultActionRedirect>;
|
|
36939
36975
|
/**
|
|
36940
|
-
* ARN of the Target Group to which to route traffic.
|
|
36941
|
-
* Specify only if `type` is `forward` and you want to route to a single target group.
|
|
36942
|
-
* To route to one or more target groups, use a `forward` block instead.
|
|
36943
|
-
* Cannot be specified with `forward`.
|
|
36976
|
+
* ARN of the Target Group to which to route traffic. Specify only if `type` is `forward` and you want to route to a single target group. To route to one or more target groups, use a `forward` block instead. Can be specified with `forward` but ARNs must match.
|
|
36944
36977
|
*/
|
|
36945
36978
|
targetGroupArn?: pulumi.Input<string>;
|
|
36946
36979
|
/**
|
|
@@ -36952,7 +36985,7 @@ export declare namespace lb {
|
|
|
36952
36985
|
}
|
|
36953
36986
|
interface ListenerDefaultActionAuthenticateCognito {
|
|
36954
36987
|
/**
|
|
36955
|
-
* Query parameters to include in the redirect request to the authorization endpoint. Max: 10.
|
|
36988
|
+
* Query parameters to include in the redirect request to the authorization endpoint. Max: 10. See below.
|
|
36956
36989
|
*/
|
|
36957
36990
|
authenticationRequestExtraParams?: pulumi.Input<{
|
|
36958
36991
|
[key: string]: pulumi.Input<string>;
|
|
@@ -37056,11 +37089,11 @@ export declare namespace lb {
|
|
|
37056
37089
|
}
|
|
37057
37090
|
interface ListenerDefaultActionForward {
|
|
37058
37091
|
/**
|
|
37059
|
-
* Configuration block for target group stickiness for the rule.
|
|
37092
|
+
* Configuration block for target group stickiness for the rule. See below.
|
|
37060
37093
|
*/
|
|
37061
37094
|
stickiness?: pulumi.Input<inputs.lb.ListenerDefaultActionForwardStickiness>;
|
|
37062
37095
|
/**
|
|
37063
|
-
* Set of 1-5 target group blocks.
|
|
37096
|
+
* Set of 1-5 target group blocks. See below.
|
|
37064
37097
|
*
|
|
37065
37098
|
* The following arguments are optional:
|
|
37066
37099
|
*/
|
|
@@ -58028,6 +58061,10 @@ export declare namespace quicksight {
|
|
|
58028
58061
|
* Credential pair. See Credential Pair below for more details.
|
|
58029
58062
|
*/
|
|
58030
58063
|
credentialPair?: pulumi.Input<inputs.quicksight.DataSourceCredentialsCredentialPair>;
|
|
58064
|
+
/**
|
|
58065
|
+
* The Amazon Resource Name (ARN) of the secret associated with the data source in Amazon Secrets Manager.
|
|
58066
|
+
*/
|
|
58067
|
+
secretArn?: pulumi.Input<string>;
|
|
58031
58068
|
}
|
|
58032
58069
|
interface DataSourceCredentialsCredentialPair {
|
|
58033
58070
|
/**
|
package/types/input.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;
|
|
1
|
+
{"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AA2i7DjF,IAAiB,GAAG,CAmanB;AAnaD,WAAiB,GAAG;IAmWhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;;QAC/E,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,WAAW,IAC/C;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAwDL,CAAC,EAnagB,GAAG,GAAH,WAAG,KAAH,WAAG,QAmanB"}
|
package/types/output.d.ts
CHANGED
|
@@ -384,11 +384,11 @@ export declare namespace alb {
|
|
|
384
384
|
}
|
|
385
385
|
interface ListenerDefaultAction {
|
|
386
386
|
/**
|
|
387
|
-
* Configuration block for using Amazon Cognito to authenticate users. Specify only when `type` is `authenticate-cognito`.
|
|
387
|
+
* Configuration block for using Amazon Cognito to authenticate users. Specify only when `type` is `authenticate-cognito`. See below.
|
|
388
388
|
*/
|
|
389
389
|
authenticateCognito?: outputs.alb.ListenerDefaultActionAuthenticateCognito;
|
|
390
390
|
/**
|
|
391
|
-
* Configuration block for an identity provider that is compliant with OpenID Connect (OIDC). Specify only when `type` is `authenticate-oidc`.
|
|
391
|
+
* Configuration block for an identity provider that is compliant with OpenID Connect (OIDC). Specify only when `type` is `authenticate-oidc`. See below.
|
|
392
392
|
*/
|
|
393
393
|
authenticateOidc?: outputs.alb.ListenerDefaultActionAuthenticateOidc;
|
|
394
394
|
/**
|
|
@@ -396,28 +396,19 @@ export declare namespace alb {
|
|
|
396
396
|
*/
|
|
397
397
|
fixedResponse?: outputs.alb.ListenerDefaultActionFixedResponse;
|
|
398
398
|
/**
|
|
399
|
-
* Configuration block for creating an action that distributes requests among one or more target groups.
|
|
400
|
-
* Specify only if `type` is `forward`.
|
|
401
|
-
* Cannot be specified with `targetGroupArn`.
|
|
402
|
-
* Detailed below.
|
|
399
|
+
* Configuration block for creating an action that distributes requests among one or more target groups. Specify only if `type` is `forward`. See below.
|
|
403
400
|
*/
|
|
404
401
|
forward?: outputs.alb.ListenerDefaultActionForward;
|
|
405
402
|
/**
|
|
406
|
-
* Order for the action.
|
|
407
|
-
* The action with the lowest value for order is performed first.
|
|
408
|
-
* Valid values are between `1` and `50000`.
|
|
409
|
-
* Defaults to the position in the list of actions.
|
|
403
|
+
* Order for the action. The action with the lowest value for order is performed first. Valid values are between `1` and `50000`. Defaults to the position in the list of actions.
|
|
410
404
|
*/
|
|
411
405
|
order: number;
|
|
412
406
|
/**
|
|
413
|
-
* Configuration block for creating a redirect action. Required if `type` is `redirect`.
|
|
407
|
+
* Configuration block for creating a redirect action. Required if `type` is `redirect`. See below.
|
|
414
408
|
*/
|
|
415
409
|
redirect?: outputs.alb.ListenerDefaultActionRedirect;
|
|
416
410
|
/**
|
|
417
|
-
* ARN of the Target Group to which to route traffic.
|
|
418
|
-
* Specify only if `type` is `forward` and you want to route to a single target group.
|
|
419
|
-
* To route to one or more target groups, use a `forward` block instead.
|
|
420
|
-
* Cannot be specified with `forward`.
|
|
411
|
+
* ARN of the Target Group to which to route traffic. Specify only if `type` is `forward` and you want to route to a single target group. To route to one or more target groups, use a `forward` block instead. Can be specified with `forward` but ARNs must match.
|
|
421
412
|
*/
|
|
422
413
|
targetGroupArn?: string;
|
|
423
414
|
/**
|
|
@@ -429,7 +420,7 @@ export declare namespace alb {
|
|
|
429
420
|
}
|
|
430
421
|
interface ListenerDefaultActionAuthenticateCognito {
|
|
431
422
|
/**
|
|
432
|
-
* Query parameters to include in the redirect request to the authorization endpoint. Max: 10.
|
|
423
|
+
* Query parameters to include in the redirect request to the authorization endpoint. Max: 10. See below.
|
|
433
424
|
*/
|
|
434
425
|
authenticationRequestExtraParams?: {
|
|
435
426
|
[key: string]: string;
|
|
@@ -533,11 +524,11 @@ export declare namespace alb {
|
|
|
533
524
|
}
|
|
534
525
|
interface ListenerDefaultActionForward {
|
|
535
526
|
/**
|
|
536
|
-
* Configuration block for target group stickiness for the rule.
|
|
527
|
+
* Configuration block for target group stickiness for the rule. See below.
|
|
537
528
|
*/
|
|
538
529
|
stickiness?: outputs.alb.ListenerDefaultActionForwardStickiness;
|
|
539
530
|
/**
|
|
540
|
-
* Set of 1-5 target group blocks.
|
|
531
|
+
* Set of 1-5 target group blocks. See below.
|
|
541
532
|
*
|
|
542
533
|
* The following arguments are optional:
|
|
543
534
|
*/
|
|
@@ -10411,6 +10402,16 @@ export declare namespace bedrock {
|
|
|
10411
10402
|
*/
|
|
10412
10403
|
update?: string;
|
|
10413
10404
|
}
|
|
10405
|
+
interface AgentAgentGuardrailConfiguration {
|
|
10406
|
+
/**
|
|
10407
|
+
* Unique identifier of the guardrail.
|
|
10408
|
+
*/
|
|
10409
|
+
guardrailIdentifier: string;
|
|
10410
|
+
/**
|
|
10411
|
+
* Version of the guardrail.
|
|
10412
|
+
*/
|
|
10413
|
+
guardrailVersion: string;
|
|
10414
|
+
}
|
|
10414
10415
|
interface AgentAgentKnowledgeBaseAssociationTimeouts {
|
|
10415
10416
|
/**
|
|
10416
10417
|
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
@@ -17181,6 +17182,10 @@ export declare namespace config {
|
|
|
17181
17182
|
* Use this to override the default service endpoint URL
|
|
17182
17183
|
*/
|
|
17183
17184
|
codecommit?: string;
|
|
17185
|
+
/**
|
|
17186
|
+
* Use this to override the default service endpoint URL
|
|
17187
|
+
*/
|
|
17188
|
+
codeconnections?: string;
|
|
17184
17189
|
/**
|
|
17185
17190
|
* Use this to override the default service endpoint URL
|
|
17186
17191
|
*/
|
|
@@ -27279,6 +27284,9 @@ export declare namespace ec2 {
|
|
|
27279
27284
|
* The ID of the network interface to attach.
|
|
27280
27285
|
*/
|
|
27281
27286
|
networkInterfaceId?: string;
|
|
27287
|
+
/**
|
|
27288
|
+
* Whether the first IPv6 GUA will be made the primary IPv6 address.
|
|
27289
|
+
*/
|
|
27282
27290
|
primaryIpv6?: string;
|
|
27283
27291
|
/**
|
|
27284
27292
|
* The primary private IPv4 address.
|
|
@@ -29726,6 +29734,8 @@ export declare namespace ecs {
|
|
|
29726
29734
|
interface CapacityProviderAutoScalingGroupProviderManagedScaling {
|
|
29727
29735
|
/**
|
|
29728
29736
|
* Period of time, in seconds, after a newly launched Amazon EC2 instance can contribute to CloudWatch metrics for Auto Scaling group. If this parameter is omitted, the default value of 300 seconds is used.
|
|
29737
|
+
*
|
|
29738
|
+
* For more information on how the instance warmup period contributes to managed scale-out behavior, see [Control the instances Amazon ECS terminates](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/managed-termination-protection.html) in the _Amazon Elastic Container Service Developer Guide_.
|
|
29729
29739
|
*/
|
|
29730
29740
|
instanceWarmupPeriod: number;
|
|
29731
29741
|
/**
|
|
@@ -30248,6 +30258,10 @@ export declare namespace ecs {
|
|
|
30248
30258
|
* Snapshot that Amazon ECS uses to create the volume. You must specify either a `sizeInGb` or a `snapshotId`.
|
|
30249
30259
|
*/
|
|
30250
30260
|
snapshotId?: string;
|
|
30261
|
+
/**
|
|
30262
|
+
* The tags to apply to the volume. See below.
|
|
30263
|
+
*/
|
|
30264
|
+
tagSpecifications?: outputs.ecs.ServiceVolumeConfigurationManagedEbsVolumeTagSpecification[];
|
|
30251
30265
|
/**
|
|
30252
30266
|
* Throughput to provision for a volume, in MiB/s, with a maximum of 1,000 MiB/s.
|
|
30253
30267
|
*/
|
|
@@ -30257,6 +30271,22 @@ export declare namespace ecs {
|
|
|
30257
30271
|
*/
|
|
30258
30272
|
volumeType?: string;
|
|
30259
30273
|
}
|
|
30274
|
+
interface ServiceVolumeConfigurationManagedEbsVolumeTagSpecification {
|
|
30275
|
+
/**
|
|
30276
|
+
* Determines whether to propagate the tags from the task definition to the Amazon EBS volume.
|
|
30277
|
+
*/
|
|
30278
|
+
propagateTags?: string;
|
|
30279
|
+
/**
|
|
30280
|
+
* The type of volume resource. Valid values, `volume`.
|
|
30281
|
+
*/
|
|
30282
|
+
resourceType: string;
|
|
30283
|
+
/**
|
|
30284
|
+
* The tags applied to this Amazon EBS volume. `AmazonECSCreated` and `AmazonECSManaged` are reserved tags that can't be used.
|
|
30285
|
+
*/
|
|
30286
|
+
tags?: {
|
|
30287
|
+
[key: string]: string;
|
|
30288
|
+
};
|
|
30289
|
+
}
|
|
30260
30290
|
interface TaskDefinitionEphemeralStorage {
|
|
30261
30291
|
/**
|
|
30262
30292
|
* The total amount, in GiB, of ephemeral storage to set for the task. The minimum supported value is `21` GiB and the maximum supported value is `200` GiB.
|
|
@@ -31197,16 +31227,22 @@ export declare namespace elasticache {
|
|
|
31197
31227
|
}
|
|
31198
31228
|
interface ServerlessCacheCacheUsageLimits {
|
|
31199
31229
|
/**
|
|
31200
|
-
* The maximum data storage limit in the cache, expressed in Gigabytes. See
|
|
31230
|
+
* The maximum data storage limit in the cache, expressed in Gigabytes. See `dataStorage` Block for details.
|
|
31201
31231
|
*/
|
|
31202
31232
|
dataStorage?: outputs.elasticache.ServerlessCacheCacheUsageLimitsDataStorage;
|
|
31203
31233
|
/**
|
|
31204
|
-
* The configuration for the number of ElastiCache Processing Units (ECPU) the cache can consume per second.See
|
|
31234
|
+
* The configuration for the number of ElastiCache Processing Units (ECPU) the cache can consume per second. See `ecpuPerSecond` Block for details.
|
|
31205
31235
|
*/
|
|
31206
31236
|
ecpuPerSeconds?: outputs.elasticache.ServerlessCacheCacheUsageLimitsEcpuPerSecond[];
|
|
31207
31237
|
}
|
|
31208
31238
|
interface ServerlessCacheCacheUsageLimitsDataStorage {
|
|
31239
|
+
/**
|
|
31240
|
+
* The upper limit for data storage the cache is set to use. Must be between 1 and 5,000.
|
|
31241
|
+
*/
|
|
31209
31242
|
maximum?: number;
|
|
31243
|
+
/**
|
|
31244
|
+
* The lower limit for data storage the cache is set to use. Must be between 1 and 5,000.
|
|
31245
|
+
*/
|
|
31210
31246
|
minimum?: number;
|
|
31211
31247
|
/**
|
|
31212
31248
|
* The unit that the storage is measured in, in GB.
|
|
@@ -31214,7 +31250,13 @@ export declare namespace elasticache {
|
|
|
31214
31250
|
unit: string;
|
|
31215
31251
|
}
|
|
31216
31252
|
interface ServerlessCacheCacheUsageLimitsEcpuPerSecond {
|
|
31253
|
+
/**
|
|
31254
|
+
* The maximum number of ECPUs the cache can consume per second. Must be between 1,000 and 15,000,000.
|
|
31255
|
+
*/
|
|
31217
31256
|
maximum?: number;
|
|
31257
|
+
/**
|
|
31258
|
+
* The minimum number of ECPUs the cache can consume per second. Must be between 1,000 and 15,000,000.
|
|
31259
|
+
*/
|
|
31218
31260
|
minimum?: number;
|
|
31219
31261
|
}
|
|
31220
31262
|
interface ServerlessCacheEndpoint {
|
|
@@ -43274,11 +43316,11 @@ export declare namespace lb {
|
|
|
43274
43316
|
}
|
|
43275
43317
|
interface ListenerDefaultAction {
|
|
43276
43318
|
/**
|
|
43277
|
-
* Configuration block for using Amazon Cognito to authenticate users. Specify only when `type` is `authenticate-cognito`.
|
|
43319
|
+
* Configuration block for using Amazon Cognito to authenticate users. Specify only when `type` is `authenticate-cognito`. See below.
|
|
43278
43320
|
*/
|
|
43279
43321
|
authenticateCognito?: outputs.lb.ListenerDefaultActionAuthenticateCognito;
|
|
43280
43322
|
/**
|
|
43281
|
-
* Configuration block for an identity provider that is compliant with OpenID Connect (OIDC). Specify only when `type` is `authenticate-oidc`.
|
|
43323
|
+
* Configuration block for an identity provider that is compliant with OpenID Connect (OIDC). Specify only when `type` is `authenticate-oidc`. See below.
|
|
43282
43324
|
*/
|
|
43283
43325
|
authenticateOidc?: outputs.lb.ListenerDefaultActionAuthenticateOidc;
|
|
43284
43326
|
/**
|
|
@@ -43286,28 +43328,19 @@ export declare namespace lb {
|
|
|
43286
43328
|
*/
|
|
43287
43329
|
fixedResponse?: outputs.lb.ListenerDefaultActionFixedResponse;
|
|
43288
43330
|
/**
|
|
43289
|
-
* Configuration block for creating an action that distributes requests among one or more target groups.
|
|
43290
|
-
* Specify only if `type` is `forward`.
|
|
43291
|
-
* Cannot be specified with `targetGroupArn`.
|
|
43292
|
-
* Detailed below.
|
|
43331
|
+
* Configuration block for creating an action that distributes requests among one or more target groups. Specify only if `type` is `forward`. See below.
|
|
43293
43332
|
*/
|
|
43294
43333
|
forward?: outputs.lb.ListenerDefaultActionForward;
|
|
43295
43334
|
/**
|
|
43296
|
-
* Order for the action.
|
|
43297
|
-
* The action with the lowest value for order is performed first.
|
|
43298
|
-
* Valid values are between `1` and `50000`.
|
|
43299
|
-
* Defaults to the position in the list of actions.
|
|
43335
|
+
* Order for the action. The action with the lowest value for order is performed first. Valid values are between `1` and `50000`. Defaults to the position in the list of actions.
|
|
43300
43336
|
*/
|
|
43301
43337
|
order: number;
|
|
43302
43338
|
/**
|
|
43303
|
-
* Configuration block for creating a redirect action. Required if `type` is `redirect`.
|
|
43339
|
+
* Configuration block for creating a redirect action. Required if `type` is `redirect`. See below.
|
|
43304
43340
|
*/
|
|
43305
43341
|
redirect?: outputs.lb.ListenerDefaultActionRedirect;
|
|
43306
43342
|
/**
|
|
43307
|
-
* ARN of the Target Group to which to route traffic.
|
|
43308
|
-
* Specify only if `type` is `forward` and you want to route to a single target group.
|
|
43309
|
-
* To route to one or more target groups, use a `forward` block instead.
|
|
43310
|
-
* Cannot be specified with `forward`.
|
|
43343
|
+
* ARN of the Target Group to which to route traffic. Specify only if `type` is `forward` and you want to route to a single target group. To route to one or more target groups, use a `forward` block instead. Can be specified with `forward` but ARNs must match.
|
|
43311
43344
|
*/
|
|
43312
43345
|
targetGroupArn?: string;
|
|
43313
43346
|
/**
|
|
@@ -43319,7 +43352,7 @@ export declare namespace lb {
|
|
|
43319
43352
|
}
|
|
43320
43353
|
interface ListenerDefaultActionAuthenticateCognito {
|
|
43321
43354
|
/**
|
|
43322
|
-
* Query parameters to include in the redirect request to the authorization endpoint. Max: 10.
|
|
43355
|
+
* Query parameters to include in the redirect request to the authorization endpoint. Max: 10. See below.
|
|
43323
43356
|
*/
|
|
43324
43357
|
authenticationRequestExtraParams?: {
|
|
43325
43358
|
[key: string]: string;
|
|
@@ -43423,11 +43456,11 @@ export declare namespace lb {
|
|
|
43423
43456
|
}
|
|
43424
43457
|
interface ListenerDefaultActionForward {
|
|
43425
43458
|
/**
|
|
43426
|
-
* Configuration block for target group stickiness for the rule.
|
|
43459
|
+
* Configuration block for target group stickiness for the rule. See below.
|
|
43427
43460
|
*/
|
|
43428
43461
|
stickiness?: outputs.lb.ListenerDefaultActionForwardStickiness;
|
|
43429
43462
|
/**
|
|
43430
|
-
* Set of 1-5 target group blocks.
|
|
43463
|
+
* Set of 1-5 target group blocks. See below.
|
|
43431
43464
|
*
|
|
43432
43465
|
* The following arguments are optional:
|
|
43433
43466
|
*/
|
|
@@ -65054,6 +65087,10 @@ export declare namespace quicksight {
|
|
|
65054
65087
|
* Credential pair. See Credential Pair below for more details.
|
|
65055
65088
|
*/
|
|
65056
65089
|
credentialPair?: outputs.quicksight.DataSourceCredentialsCredentialPair;
|
|
65090
|
+
/**
|
|
65091
|
+
* The Amazon Resource Name (ARN) of the secret associated with the data source in Amazon Secrets Manager.
|
|
65092
|
+
*/
|
|
65093
|
+
secretArn?: string;
|
|
65057
65094
|
}
|
|
65058
65095
|
interface DataSourceCredentialsCredentialPair {
|
|
65059
65096
|
/**
|
package/types/output.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;
|
|
1
|
+
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAojrEjF,IAAiB,GAAG,CAuanB;AAvaD,WAAiB,GAAG;IAsWhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;;QAC/E,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,WAAW,IAC/C;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAyDL,CAAC,EAvagB,GAAG,GAAH,WAAG,KAAH,WAAG,QAuanB"}
|