@pulumi/aws-native 1.50.0-alpha.1769229421 → 1.50.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/autoscaling/autoScalingGroup.d.ts +2 -0
- package/autoscaling/autoScalingGroup.js +2 -0
- package/autoscaling/autoScalingGroup.js.map +1 -1
- package/autoscaling/getAutoScalingGroup.d.ts +1 -0
- package/autoscaling/getAutoScalingGroup.js.map +1 -1
- package/backup/getTieringConfiguration.d.ts +26 -0
- package/backup/getTieringConfiguration.js +28 -0
- package/backup/getTieringConfiguration.js.map +1 -0
- package/backup/index.d.ts +6 -0
- package/backup/index.js +8 -1
- package/backup/index.js.map +1 -1
- package/backup/tieringConfiguration.d.ts +50 -0
- package/backup/tieringConfiguration.js +76 -0
- package/backup/tieringConfiguration.js.map +1 -0
- package/configuration/getOrganizationConformancePack.d.ts +2 -2
- package/configuration/getOrganizationConformancePack.js +2 -2
- package/configuration/organizationConformancePack.d.ts +1 -1
- package/configuration/organizationConformancePack.js +1 -1
- package/datazone/environment.d.ts +24 -0
- package/datazone/environment.js +7 -1
- package/datazone/environment.js.map +1 -1
- package/ec2/getNatGateway.d.ts +2 -4
- package/ec2/getNatGateway.js.map +1 -1
- package/ec2/natGateway.d.ts +8 -16
- package/ec2/natGateway.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +5 -3
- package/index.js.map +1 -1
- package/iot/getLogging.d.ts +5 -0
- package/iot/getLogging.js.map +1 -1
- package/iot/logging.d.ts +10 -0
- package/iot/logging.js +2 -0
- package/iot/logging.js.map +1 -1
- package/mwaaserverless/getWorkflow.d.ts +34 -0
- package/mwaaserverless/getWorkflow.js +28 -0
- package/mwaaserverless/getWorkflow.js.map +1 -0
- package/mwaaserverless/index.d.ts +7 -0
- package/mwaaserverless/index.js +41 -0
- package/mwaaserverless/index.js.map +1 -0
- package/mwaaserverless/workflow.d.ts +64 -0
- package/mwaaserverless/workflow.js +92 -0
- package/mwaaserverless/workflow.js.map +1 -0
- package/opensearchserverless/collection.d.ts +3 -15
- package/opensearchserverless/collection.js.map +1 -1
- package/opensearchserverless/getCollection.d.ts +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/rds/dbInstance.d.ts +6 -0
- package/rds/dbInstance.js.map +1 -1
- package/rds/getDbInstance.d.ts +3 -0
- package/rds/getDbInstance.js.map +1 -1
- package/types/enums/backup/index.d.ts +9 -0
- package/types/enums/backup/index.js +8 -1
- package/types/enums/backup/index.js.map +1 -1
- package/types/enums/bedrockagentcore/index.d.ts +17 -0
- package/types/enums/bedrockagentcore/index.js +10 -1
- package/types/enums/bedrockagentcore/index.js.map +1 -1
- package/types/enums/cleanrooms/index.d.ts +2 -0
- package/types/enums/cleanrooms/index.js +2 -0
- package/types/enums/cleanrooms/index.js.map +1 -1
- package/types/enums/index.d.ts +2 -1
- package/types/enums/index.js +4 -2
- package/types/enums/index.js.map +1 -1
- package/types/enums/iot/index.d.ts +11 -0
- package/types/enums/iot/index.js +8 -1
- package/types/enums/iot/index.js.map +1 -1
- package/types/enums/mwaaserverless/index.d.ts +10 -0
- package/types/enums/mwaaserverless/index.js +14 -0
- package/types/enums/mwaaserverless/index.js.map +1 -0
- package/types/input.d.ts +94 -11
- package/types/output.d.ts +97 -11
- package/types/output.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -8017,7 +8017,7 @@ export declare namespace autoscaling {
|
|
|
8017
8017
|
interface AutoScalingGroupRetentionTriggersArgs {
|
|
8018
8018
|
/**
|
|
8019
8019
|
* Specifies the action when a termination lifecycle hook is abandoned due to failure, timeout, or explicit abandonment (calling CompleteLifecycleAction).
|
|
8020
|
-
* Set to ``
|
|
8020
|
+
* Set to ``retain`` to move instances to a retained state. Set to ``terminate`` for default termination behavior.
|
|
8021
8021
|
* Retained instances don't count toward desired capacity and remain until you call ``TerminateInstanceInAutoScalingGroup``.
|
|
8022
8022
|
*/
|
|
8023
8023
|
terminateHookAbandon?: pulumi.Input<string>;
|
|
@@ -8819,6 +8819,7 @@ export declare namespace backup {
|
|
|
8819
8819
|
* A display name for a backup rule.
|
|
8820
8820
|
*/
|
|
8821
8821
|
ruleName: pulumi.Input<string>;
|
|
8822
|
+
scanActions?: pulumi.Input<pulumi.Input<inputs.backup.BackupPlanScanActionResourceTypeArgs>[]>;
|
|
8822
8823
|
/**
|
|
8823
8824
|
* A CRON expression specifying when AWS Backup initiates a backup job.
|
|
8824
8825
|
*/
|
|
@@ -8892,6 +8893,16 @@ export declare namespace backup {
|
|
|
8892
8893
|
* An array of `BackupRule` objects, each of which specifies a scheduled task that is used to back up a selection of resources.
|
|
8893
8894
|
*/
|
|
8894
8895
|
backupPlanRule: pulumi.Input<pulumi.Input<inputs.backup.BackupPlanBackupRuleResourceTypeArgs>[]>;
|
|
8896
|
+
scanSettings?: pulumi.Input<pulumi.Input<inputs.backup.BackupPlanScanSettingResourceTypeArgs>[]>;
|
|
8897
|
+
}
|
|
8898
|
+
interface BackupPlanScanActionResourceTypeArgs {
|
|
8899
|
+
malwareScanner?: pulumi.Input<enums.backup.BackupPlanMalwareScanner>;
|
|
8900
|
+
scanMode?: pulumi.Input<enums.backup.BackupPlanScanMode>;
|
|
8901
|
+
}
|
|
8902
|
+
interface BackupPlanScanSettingResourceTypeArgs {
|
|
8903
|
+
malwareScanner?: pulumi.Input<enums.backup.BackupPlanMalwareScanner>;
|
|
8904
|
+
resourceTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8905
|
+
scannerRoleArn?: pulumi.Input<string>;
|
|
8895
8906
|
}
|
|
8896
8907
|
interface BackupSelectionConditionParameterArgs {
|
|
8897
8908
|
/**
|
|
@@ -9157,6 +9168,11 @@ export declare namespace backup {
|
|
|
9157
9168
|
*/
|
|
9158
9169
|
stringNotEquals?: pulumi.Input<pulumi.Input<inputs.backup.RestoreTestingSelectionKeyValueArgs>[]>;
|
|
9159
9170
|
}
|
|
9171
|
+
interface TieringConfigurationResourceSelectionArgs {
|
|
9172
|
+
resourceType: pulumi.Input<string>;
|
|
9173
|
+
resources: pulumi.Input<pulumi.Input<string>[]>;
|
|
9174
|
+
tieringDownSettingsInDays: pulumi.Input<number>;
|
|
9175
|
+
}
|
|
9160
9176
|
}
|
|
9161
9177
|
export declare namespace backupgateway {
|
|
9162
9178
|
}
|
|
@@ -14534,6 +14550,20 @@ export declare namespace bedrockagentcore {
|
|
|
14534
14550
|
*/
|
|
14535
14551
|
customJwtAuthorizer?: pulumi.Input<inputs.bedrockagentcore.RuntimeCustomJwtAuthorizerConfigurationArgs>;
|
|
14536
14552
|
}
|
|
14553
|
+
/**
|
|
14554
|
+
* The value or values in the custom claim to match and relationship of match
|
|
14555
|
+
*/
|
|
14556
|
+
interface RuntimeAuthorizingClaimMatchValueTypeArgs {
|
|
14557
|
+
claimMatchOperator: pulumi.Input<enums.bedrockagentcore.RuntimeClaimMatchOperator>;
|
|
14558
|
+
claimMatchValue: pulumi.Input<inputs.bedrockagentcore.RuntimeClaimMatchValueTypeArgs>;
|
|
14559
|
+
}
|
|
14560
|
+
/**
|
|
14561
|
+
* The value or values in the custom claim to match for
|
|
14562
|
+
*/
|
|
14563
|
+
interface RuntimeClaimMatchValueTypeArgs {
|
|
14564
|
+
matchValueString?: pulumi.Input<string>;
|
|
14565
|
+
matchValueStringList?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14566
|
+
}
|
|
14537
14567
|
/**
|
|
14538
14568
|
* Object represents source code from zip file
|
|
14539
14569
|
*/
|
|
@@ -14554,6 +14584,14 @@ export declare namespace bedrockagentcore {
|
|
|
14554
14584
|
*/
|
|
14555
14585
|
containerUri: pulumi.Input<string>;
|
|
14556
14586
|
}
|
|
14587
|
+
/**
|
|
14588
|
+
* Required custom claim
|
|
14589
|
+
*/
|
|
14590
|
+
interface RuntimeCustomClaimValidationTypeArgs {
|
|
14591
|
+
authorizingClaimMatchValue: pulumi.Input<inputs.bedrockagentcore.RuntimeAuthorizingClaimMatchValueTypeArgs>;
|
|
14592
|
+
inboundTokenClaimName: pulumi.Input<string>;
|
|
14593
|
+
inboundTokenClaimValueType: pulumi.Input<enums.bedrockagentcore.RuntimeInboundTokenClaimValueType>;
|
|
14594
|
+
}
|
|
14557
14595
|
/**
|
|
14558
14596
|
* Configuration for custom JWT authorizer
|
|
14559
14597
|
*/
|
|
@@ -14566,6 +14604,8 @@ export declare namespace bedrockagentcore {
|
|
|
14566
14604
|
* Represents individual client IDs that are validated in the incoming JWT token validation process.
|
|
14567
14605
|
*/
|
|
14568
14606
|
allowedClients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14607
|
+
allowedScopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14608
|
+
customClaims?: pulumi.Input<pulumi.Input<inputs.bedrockagentcore.RuntimeCustomClaimValidationTypeArgs>[]>;
|
|
14569
14609
|
/**
|
|
14570
14610
|
* The configuration authorization.
|
|
14571
14611
|
*/
|
|
@@ -28988,6 +29028,11 @@ export declare namespace ec2 {
|
|
|
28988
29028
|
*/
|
|
28989
29029
|
min?: pulumi.Input<number>;
|
|
28990
29030
|
}
|
|
29031
|
+
/**
|
|
29032
|
+
* For regional NAT gateways only: The configuration specifying which Elastic IP address (EIP) to use for handling outbound NAT traffic from a specific Availability Zone.
|
|
29033
|
+
* A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
29034
|
+
* For more information, see [Regional NAT gateways for automatic multi-AZ expansion](https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html) in the *Amazon VPC User Guide*.
|
|
29035
|
+
*/
|
|
28991
29036
|
interface NatGatewayAvailabilityZoneAddressArgs {
|
|
28992
29037
|
/**
|
|
28993
29038
|
* The allocation IDs of the Elastic IP addresses (EIPs) to be used for handling outbound NAT traffic in this specific Availability Zone.
|
|
@@ -28995,14 +29040,12 @@ export declare namespace ec2 {
|
|
|
28995
29040
|
allocationIds: pulumi.Input<pulumi.Input<string>[]>;
|
|
28996
29041
|
/**
|
|
28997
29042
|
* For regional NAT gateways only: The Availability Zone where this specific NAT gateway configuration will be active. Each AZ in a regional NAT gateway has its own configuration to handle outbound NAT traffic from that AZ.
|
|
28998
|
-
*
|
|
28999
|
-
* A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
29043
|
+
* A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
29000
29044
|
*/
|
|
29001
29045
|
availabilityZone?: pulumi.Input<string>;
|
|
29002
29046
|
/**
|
|
29003
29047
|
* For regional NAT gateways only: The ID of the Availability Zone where this specific NAT gateway configuration will be active. Each AZ in a regional NAT gateway has its own configuration to handle outbound NAT traffic from that AZ. Use this instead of AvailabilityZone for consistent identification of AZs across AWS Regions.
|
|
29004
|
-
*
|
|
29005
|
-
* A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
29048
|
+
* A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
29006
29049
|
*/
|
|
29007
29050
|
availabilityZoneId?: pulumi.Input<string>;
|
|
29008
29051
|
}
|
|
@@ -30689,7 +30732,7 @@ export declare namespace ec2 {
|
|
|
30689
30732
|
*/
|
|
30690
30733
|
privateDnsPreference?: pulumi.Input<enums.ec2.VpcEndpointDnsOptionsSpecificationPrivateDnsPreference>;
|
|
30691
30734
|
/**
|
|
30692
|
-
* Indicates which of the private domains to create private hosted zones for and associate with the specified VPC. Only supported when private DNS is enabled and the private DNS preference is
|
|
30735
|
+
* Indicates which of the private domains to create private hosted zones for and associate with the specified VPC. Only supported when private DNS is enabled and the private DNS preference is ``VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS`` or ``SPECIFIED_DOMAINS_ONLY``.
|
|
30693
30736
|
*/
|
|
30694
30737
|
privateDnsSpecifiedDomains?: pulumi.Input<pulumi.Input<string>[]>;
|
|
30695
30738
|
}
|
|
@@ -42313,6 +42356,23 @@ export declare namespace iot {
|
|
|
42313
42356
|
*/
|
|
42314
42357
|
numberOfRetries?: pulumi.Input<number>;
|
|
42315
42358
|
}
|
|
42359
|
+
/**
|
|
42360
|
+
* Configuration for event-based logging that specifies which event types to log and their logging settings. Used for account-level logging overrides.
|
|
42361
|
+
*/
|
|
42362
|
+
interface LoggingEventConfigurationArgs {
|
|
42363
|
+
/**
|
|
42364
|
+
* The type of event to log. These include event types like Connect, Publish, and Disconnect.
|
|
42365
|
+
*/
|
|
42366
|
+
eventType: pulumi.Input<string>;
|
|
42367
|
+
/**
|
|
42368
|
+
* CloudWatch Log Group for event-based logging. Specifies where log events should be sent. The log destination for event-based logging overrides default Log Group for the specified event type and applies to all resources associated with that event.
|
|
42369
|
+
*/
|
|
42370
|
+
logDestination?: pulumi.Input<string>;
|
|
42371
|
+
/**
|
|
42372
|
+
* The logging level for the specified event type. Determines the verbosity of log messages generated for this event type.
|
|
42373
|
+
*/
|
|
42374
|
+
logLevel?: pulumi.Input<enums.iot.LoggingEventConfigurationLogLevel>;
|
|
42375
|
+
}
|
|
42316
42376
|
/**
|
|
42317
42377
|
* A structure containing the mqtt topic for metrics export.
|
|
42318
42378
|
*/
|
|
@@ -57003,6 +57063,24 @@ export declare namespace mwaa {
|
|
|
57003
57063
|
subnetIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
57004
57064
|
}
|
|
57005
57065
|
}
|
|
57066
|
+
export declare namespace mwaaserverless {
|
|
57067
|
+
interface WorkflowEncryptionConfigurationArgs {
|
|
57068
|
+
kmsKeyId?: pulumi.Input<string>;
|
|
57069
|
+
type: pulumi.Input<enums.mwaaserverless.WorkflowEncryptionConfigurationType>;
|
|
57070
|
+
}
|
|
57071
|
+
interface WorkflowLoggingConfigurationArgs {
|
|
57072
|
+
logGroupName: pulumi.Input<string>;
|
|
57073
|
+
}
|
|
57074
|
+
interface WorkflowNetworkConfigurationArgs {
|
|
57075
|
+
securityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
57076
|
+
subnetIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
57077
|
+
}
|
|
57078
|
+
interface WorkflowS3LocationArgs {
|
|
57079
|
+
bucket: pulumi.Input<string>;
|
|
57080
|
+
objectKey: pulumi.Input<string>;
|
|
57081
|
+
versionId?: pulumi.Input<string>;
|
|
57082
|
+
}
|
|
57083
|
+
}
|
|
57006
57084
|
export declare namespace neptune {
|
|
57007
57085
|
/**
|
|
57008
57086
|
* Describes an AWS Identity and Access Management (IAM) role that is associated with a DB cluster.
|
|
@@ -58138,7 +58216,7 @@ export declare namespace oam {
|
|
|
58138
58216
|
* Examples:
|
|
58139
58217
|
*
|
|
58140
58218
|
* - `Namespace NOT LIKE 'AWS/%'` includes only namespaces that don't start with `AWS/` , such as custom namespaces.
|
|
58141
|
-
* - `Namespace IN ('AWS/EC2', 'AWS/ELB', 'AWS/S3')` includes only the metrics in the EC2,
|
|
58219
|
+
* - `Namespace IN ('AWS/EC2', 'AWS/ELB', 'AWS/S3')` includes only the metrics in the EC2, Elastic Load Balancing , and Amazon S3 namespaces.
|
|
58142
58220
|
* - `Namespace = 'AWS/EC2' OR Namespace NOT LIKE 'AWS/%'` includes only the EC2 namespace and your custom namespaces.
|
|
58143
58221
|
* - `LogGroupName IN ('This-Log-Group', 'Other-Log-Group')` includes only the log groups with names `This-Log-Group` and `Other-Log-Group` .
|
|
58144
58222
|
* - `LogGroupName NOT IN ('Private-Log-Group', 'Private-Log-Group-2')` includes all log groups except the log groups with names `Private-Log-Group` and `Private-Log-Group-2` .
|
|
@@ -59149,15 +59227,15 @@ export declare namespace omics {
|
|
|
59149
59227
|
}
|
|
59150
59228
|
export declare namespace opensearchserverless {
|
|
59151
59229
|
/**
|
|
59152
|
-
*
|
|
59230
|
+
* Encryption settings for the collection
|
|
59153
59231
|
*/
|
|
59154
59232
|
interface CollectionEncryptionConfigArgs {
|
|
59155
59233
|
/**
|
|
59156
|
-
*
|
|
59234
|
+
* Indicates whether to use an AWS owned key for encryption.
|
|
59157
59235
|
*/
|
|
59158
59236
|
awsOwnedKey?: pulumi.Input<boolean>;
|
|
59159
59237
|
/**
|
|
59160
|
-
*
|
|
59238
|
+
* Key Management Service key used to encrypt the collection.
|
|
59161
59239
|
*/
|
|
59162
59240
|
kmsKeyArn?: pulumi.Input<string>;
|
|
59163
59241
|
}
|
|
@@ -91424,6 +91502,9 @@ export declare namespace rds {
|
|
|
91424
91502
|
*/
|
|
91425
91503
|
secondsUntilAutoPause?: pulumi.Input<number>;
|
|
91426
91504
|
}
|
|
91505
|
+
/**
|
|
91506
|
+
* Contains details about an additional storage volume for a DB instance. RDS support additional storage volumes for RDS for Oracle and RDS for SQL Server.
|
|
91507
|
+
*/
|
|
91427
91508
|
interface DbInstanceAdditionalStorageVolumeArgs {
|
|
91428
91509
|
/**
|
|
91429
91510
|
* The amount of storage allocated for the additional storage volume, in gibibytes (GiB). The minimum is 20 GiB. The maximum is 65,536 GiB (64 TiB).
|
|
@@ -91438,15 +91519,17 @@ export declare namespace rds {
|
|
|
91438
91519
|
*/
|
|
91439
91520
|
maxAllocatedStorage?: pulumi.Input<number>;
|
|
91440
91521
|
/**
|
|
91441
|
-
* The storage throughput value for the additional storage volume, in mebibytes per second (MiBps). This setting applies only to the General Purpose SSD gp3 storage type.
|
|
91522
|
+
* The storage throughput value for the additional storage volume, in mebibytes per second (MiBps). This setting applies only to the General Purpose SSD (``gp3``) storage type.
|
|
91442
91523
|
*/
|
|
91443
91524
|
storageThroughput?: pulumi.Input<number>;
|
|
91444
91525
|
/**
|
|
91445
91526
|
* The storage type for the additional storage volume.
|
|
91527
|
+
* Valid Values: ``GP3 | IO2``
|
|
91446
91528
|
*/
|
|
91447
91529
|
storageType?: pulumi.Input<string>;
|
|
91448
91530
|
/**
|
|
91449
91531
|
* The name of the additional storage volume.
|
|
91532
|
+
* Valid Values: ``RDSDBDATA2 | RDSDBDATA3 | RDSDBDATA4``
|
|
91450
91533
|
*/
|
|
91451
91534
|
volumeName?: pulumi.Input<string>;
|
|
91452
91535
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -7937,7 +7937,7 @@ export declare namespace autoscaling {
|
|
|
7937
7937
|
interface AutoScalingGroupRetentionTriggers {
|
|
7938
7938
|
/**
|
|
7939
7939
|
* Specifies the action when a termination lifecycle hook is abandoned due to failure, timeout, or explicit abandonment (calling CompleteLifecycleAction).
|
|
7940
|
-
* Set to ``
|
|
7940
|
+
* Set to ``retain`` to move instances to a retained state. Set to ``terminate`` for default termination behavior.
|
|
7941
7941
|
* Retained instances don't count toward desired capacity and remain until you call ``TerminateInstanceInAutoScalingGroup``.
|
|
7942
7942
|
*/
|
|
7943
7943
|
terminateHookAbandon?: string;
|
|
@@ -8739,6 +8739,7 @@ export declare namespace backup {
|
|
|
8739
8739
|
* A display name for a backup rule.
|
|
8740
8740
|
*/
|
|
8741
8741
|
ruleName: string;
|
|
8742
|
+
scanActions?: outputs.backup.BackupPlanScanActionResourceType[];
|
|
8742
8743
|
/**
|
|
8743
8744
|
* A CRON expression specifying when AWS Backup initiates a backup job.
|
|
8744
8745
|
*/
|
|
@@ -8812,6 +8813,16 @@ export declare namespace backup {
|
|
|
8812
8813
|
* An array of `BackupRule` objects, each of which specifies a scheduled task that is used to back up a selection of resources.
|
|
8813
8814
|
*/
|
|
8814
8815
|
backupPlanRule: outputs.backup.BackupPlanBackupRuleResourceType[];
|
|
8816
|
+
scanSettings?: outputs.backup.BackupPlanScanSettingResourceType[];
|
|
8817
|
+
}
|
|
8818
|
+
interface BackupPlanScanActionResourceType {
|
|
8819
|
+
malwareScanner?: enums.backup.BackupPlanMalwareScanner;
|
|
8820
|
+
scanMode?: enums.backup.BackupPlanScanMode;
|
|
8821
|
+
}
|
|
8822
|
+
interface BackupPlanScanSettingResourceType {
|
|
8823
|
+
malwareScanner?: enums.backup.BackupPlanMalwareScanner;
|
|
8824
|
+
resourceTypes?: string[];
|
|
8825
|
+
scannerRoleArn?: string;
|
|
8815
8826
|
}
|
|
8816
8827
|
interface BackupSelectionConditionParameter {
|
|
8817
8828
|
/**
|
|
@@ -9077,6 +9088,11 @@ export declare namespace backup {
|
|
|
9077
9088
|
*/
|
|
9078
9089
|
stringNotEquals?: outputs.backup.RestoreTestingSelectionKeyValue[];
|
|
9079
9090
|
}
|
|
9091
|
+
interface TieringConfigurationResourceSelection {
|
|
9092
|
+
resourceType: string;
|
|
9093
|
+
resources: string[];
|
|
9094
|
+
tieringDownSettingsInDays: number;
|
|
9095
|
+
}
|
|
9080
9096
|
}
|
|
9081
9097
|
export declare namespace backupgateway {
|
|
9082
9098
|
}
|
|
@@ -15315,6 +15331,20 @@ export declare namespace bedrockagentcore {
|
|
|
15315
15331
|
*/
|
|
15316
15332
|
customJwtAuthorizer?: outputs.bedrockagentcore.RuntimeCustomJwtAuthorizerConfiguration;
|
|
15317
15333
|
}
|
|
15334
|
+
/**
|
|
15335
|
+
* The value or values in the custom claim to match and relationship of match
|
|
15336
|
+
*/
|
|
15337
|
+
interface RuntimeAuthorizingClaimMatchValueType {
|
|
15338
|
+
claimMatchOperator: enums.bedrockagentcore.RuntimeClaimMatchOperator;
|
|
15339
|
+
claimMatchValue: outputs.bedrockagentcore.RuntimeClaimMatchValueType;
|
|
15340
|
+
}
|
|
15341
|
+
/**
|
|
15342
|
+
* The value or values in the custom claim to match for
|
|
15343
|
+
*/
|
|
15344
|
+
interface RuntimeClaimMatchValueType {
|
|
15345
|
+
matchValueString?: string;
|
|
15346
|
+
matchValueStringList?: string[];
|
|
15347
|
+
}
|
|
15318
15348
|
/**
|
|
15319
15349
|
* Object represents source code from zip file
|
|
15320
15350
|
*/
|
|
@@ -15335,6 +15365,14 @@ export declare namespace bedrockagentcore {
|
|
|
15335
15365
|
*/
|
|
15336
15366
|
containerUri: string;
|
|
15337
15367
|
}
|
|
15368
|
+
/**
|
|
15369
|
+
* Required custom claim
|
|
15370
|
+
*/
|
|
15371
|
+
interface RuntimeCustomClaimValidationType {
|
|
15372
|
+
authorizingClaimMatchValue: outputs.bedrockagentcore.RuntimeAuthorizingClaimMatchValueType;
|
|
15373
|
+
inboundTokenClaimName: string;
|
|
15374
|
+
inboundTokenClaimValueType: enums.bedrockagentcore.RuntimeInboundTokenClaimValueType;
|
|
15375
|
+
}
|
|
15338
15376
|
/**
|
|
15339
15377
|
* Configuration for custom JWT authorizer
|
|
15340
15378
|
*/
|
|
@@ -15347,6 +15385,8 @@ export declare namespace bedrockagentcore {
|
|
|
15347
15385
|
* Represents individual client IDs that are validated in the incoming JWT token validation process.
|
|
15348
15386
|
*/
|
|
15349
15387
|
allowedClients?: string[];
|
|
15388
|
+
allowedScopes?: string[];
|
|
15389
|
+
customClaims?: outputs.bedrockagentcore.RuntimeCustomClaimValidationType[];
|
|
15350
15390
|
/**
|
|
15351
15391
|
* The configuration authorization.
|
|
15352
15392
|
*/
|
|
@@ -30118,6 +30158,11 @@ export declare namespace ec2 {
|
|
|
30118
30158
|
*/
|
|
30119
30159
|
min?: number;
|
|
30120
30160
|
}
|
|
30161
|
+
/**
|
|
30162
|
+
* For regional NAT gateways only: The configuration specifying which Elastic IP address (EIP) to use for handling outbound NAT traffic from a specific Availability Zone.
|
|
30163
|
+
* A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
30164
|
+
* For more information, see [Regional NAT gateways for automatic multi-AZ expansion](https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html) in the *Amazon VPC User Guide*.
|
|
30165
|
+
*/
|
|
30121
30166
|
interface NatGatewayAvailabilityZoneAddress {
|
|
30122
30167
|
/**
|
|
30123
30168
|
* The allocation IDs of the Elastic IP addresses (EIPs) to be used for handling outbound NAT traffic in this specific Availability Zone.
|
|
@@ -30125,14 +30170,12 @@ export declare namespace ec2 {
|
|
|
30125
30170
|
allocationIds: string[];
|
|
30126
30171
|
/**
|
|
30127
30172
|
* For regional NAT gateways only: The Availability Zone where this specific NAT gateway configuration will be active. Each AZ in a regional NAT gateway has its own configuration to handle outbound NAT traffic from that AZ.
|
|
30128
|
-
*
|
|
30129
|
-
* A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
30173
|
+
* A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
30130
30174
|
*/
|
|
30131
30175
|
availabilityZone?: string;
|
|
30132
30176
|
/**
|
|
30133
30177
|
* For regional NAT gateways only: The ID of the Availability Zone where this specific NAT gateway configuration will be active. Each AZ in a regional NAT gateway has its own configuration to handle outbound NAT traffic from that AZ. Use this instead of AvailabilityZone for consistent identification of AZs across AWS Regions.
|
|
30134
|
-
*
|
|
30135
|
-
* A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
30178
|
+
* A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
|
|
30136
30179
|
*/
|
|
30137
30180
|
availabilityZoneId?: string;
|
|
30138
30181
|
}
|
|
@@ -32412,7 +32455,7 @@ export declare namespace ec2 {
|
|
|
32412
32455
|
*/
|
|
32413
32456
|
privateDnsPreference?: enums.ec2.VpcEndpointDnsOptionsSpecificationPrivateDnsPreference;
|
|
32414
32457
|
/**
|
|
32415
|
-
* Indicates which of the private domains to create private hosted zones for and associate with the specified VPC. Only supported when private DNS is enabled and the private DNS preference is
|
|
32458
|
+
* Indicates which of the private domains to create private hosted zones for and associate with the specified VPC. Only supported when private DNS is enabled and the private DNS preference is ``VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS`` or ``SPECIFIED_DOMAINS_ONLY``.
|
|
32416
32459
|
*/
|
|
32417
32460
|
privateDnsSpecifiedDomains?: string[];
|
|
32418
32461
|
}
|
|
@@ -44379,6 +44422,23 @@ export declare namespace iot {
|
|
|
44379
44422
|
*/
|
|
44380
44423
|
numberOfRetries?: number;
|
|
44381
44424
|
}
|
|
44425
|
+
/**
|
|
44426
|
+
* Configuration for event-based logging that specifies which event types to log and their logging settings. Used for account-level logging overrides.
|
|
44427
|
+
*/
|
|
44428
|
+
interface LoggingEventConfiguration {
|
|
44429
|
+
/**
|
|
44430
|
+
* The type of event to log. These include event types like Connect, Publish, and Disconnect.
|
|
44431
|
+
*/
|
|
44432
|
+
eventType: string;
|
|
44433
|
+
/**
|
|
44434
|
+
* CloudWatch Log Group for event-based logging. Specifies where log events should be sent. The log destination for event-based logging overrides default Log Group for the specified event type and applies to all resources associated with that event.
|
|
44435
|
+
*/
|
|
44436
|
+
logDestination?: string;
|
|
44437
|
+
/**
|
|
44438
|
+
* The logging level for the specified event type. Determines the verbosity of log messages generated for this event type.
|
|
44439
|
+
*/
|
|
44440
|
+
logLevel?: enums.iot.LoggingEventConfigurationLogLevel;
|
|
44441
|
+
}
|
|
44382
44442
|
/**
|
|
44383
44443
|
* A structure containing the mqtt topic for metrics export.
|
|
44384
44444
|
*/
|
|
@@ -59224,6 +59284,27 @@ export declare namespace mwaa {
|
|
|
59224
59284
|
subnetIds?: string[];
|
|
59225
59285
|
}
|
|
59226
59286
|
}
|
|
59287
|
+
export declare namespace mwaaserverless {
|
|
59288
|
+
interface WorkflowEncryptionConfiguration {
|
|
59289
|
+
kmsKeyId?: string;
|
|
59290
|
+
type: enums.mwaaserverless.WorkflowEncryptionConfigurationType;
|
|
59291
|
+
}
|
|
59292
|
+
interface WorkflowLoggingConfiguration {
|
|
59293
|
+
logGroupName: string;
|
|
59294
|
+
}
|
|
59295
|
+
interface WorkflowNetworkConfiguration {
|
|
59296
|
+
securityGroupIds?: string[];
|
|
59297
|
+
subnetIds?: string[];
|
|
59298
|
+
}
|
|
59299
|
+
interface WorkflowS3Location {
|
|
59300
|
+
bucket: string;
|
|
59301
|
+
objectKey: string;
|
|
59302
|
+
versionId?: string;
|
|
59303
|
+
}
|
|
59304
|
+
interface WorkflowScheduleConfiguration {
|
|
59305
|
+
cronExpression?: string;
|
|
59306
|
+
}
|
|
59307
|
+
}
|
|
59227
59308
|
export declare namespace neptune {
|
|
59228
59309
|
/**
|
|
59229
59310
|
* Describes an AWS Identity and Access Management (IAM) role that is associated with a DB cluster.
|
|
@@ -60455,7 +60536,7 @@ export declare namespace oam {
|
|
|
60455
60536
|
* Examples:
|
|
60456
60537
|
*
|
|
60457
60538
|
* - `Namespace NOT LIKE 'AWS/%'` includes only namespaces that don't start with `AWS/` , such as custom namespaces.
|
|
60458
|
-
* - `Namespace IN ('AWS/EC2', 'AWS/ELB', 'AWS/S3')` includes only the metrics in the EC2,
|
|
60539
|
+
* - `Namespace IN ('AWS/EC2', 'AWS/ELB', 'AWS/S3')` includes only the metrics in the EC2, Elastic Load Balancing , and Amazon S3 namespaces.
|
|
60459
60540
|
* - `Namespace = 'AWS/EC2' OR Namespace NOT LIKE 'AWS/%'` includes only the EC2 namespace and your custom namespaces.
|
|
60460
60541
|
* - `LogGroupName IN ('This-Log-Group', 'Other-Log-Group')` includes only the log groups with names `This-Log-Group` and `Other-Log-Group` .
|
|
60461
60542
|
* - `LogGroupName NOT IN ('Private-Log-Group', 'Private-Log-Group-2')` includes all log groups except the log groups with names `Private-Log-Group` and `Private-Log-Group-2` .
|
|
@@ -61612,15 +61693,15 @@ export declare namespace omics {
|
|
|
61612
61693
|
}
|
|
61613
61694
|
export declare namespace opensearchserverless {
|
|
61614
61695
|
/**
|
|
61615
|
-
*
|
|
61696
|
+
* Encryption settings for the collection
|
|
61616
61697
|
*/
|
|
61617
61698
|
interface CollectionEncryptionConfig {
|
|
61618
61699
|
/**
|
|
61619
|
-
*
|
|
61700
|
+
* Indicates whether to use an AWS owned key for encryption.
|
|
61620
61701
|
*/
|
|
61621
61702
|
awsOwnedKey?: boolean;
|
|
61622
61703
|
/**
|
|
61623
|
-
*
|
|
61704
|
+
* Key Management Service key used to encrypt the collection.
|
|
61624
61705
|
*/
|
|
61625
61706
|
kmsKeyArn?: string;
|
|
61626
61707
|
}
|
|
@@ -94352,6 +94433,9 @@ export declare namespace rds {
|
|
|
94352
94433
|
*/
|
|
94353
94434
|
secondsUntilAutoPause?: number;
|
|
94354
94435
|
}
|
|
94436
|
+
/**
|
|
94437
|
+
* Contains details about an additional storage volume for a DB instance. RDS support additional storage volumes for RDS for Oracle and RDS for SQL Server.
|
|
94438
|
+
*/
|
|
94355
94439
|
interface DbInstanceAdditionalStorageVolume {
|
|
94356
94440
|
/**
|
|
94357
94441
|
* The amount of storage allocated for the additional storage volume, in gibibytes (GiB). The minimum is 20 GiB. The maximum is 65,536 GiB (64 TiB).
|
|
@@ -94366,15 +94450,17 @@ export declare namespace rds {
|
|
|
94366
94450
|
*/
|
|
94367
94451
|
maxAllocatedStorage?: number;
|
|
94368
94452
|
/**
|
|
94369
|
-
* The storage throughput value for the additional storage volume, in mebibytes per second (MiBps). This setting applies only to the General Purpose SSD gp3 storage type.
|
|
94453
|
+
* The storage throughput value for the additional storage volume, in mebibytes per second (MiBps). This setting applies only to the General Purpose SSD (``gp3``) storage type.
|
|
94370
94454
|
*/
|
|
94371
94455
|
storageThroughput?: number;
|
|
94372
94456
|
/**
|
|
94373
94457
|
* The storage type for the additional storage volume.
|
|
94458
|
+
* Valid Values: ``GP3 | IO2``
|
|
94374
94459
|
*/
|
|
94375
94460
|
storageType?: string;
|
|
94376
94461
|
/**
|
|
94377
94462
|
* The name of the additional storage volume.
|
|
94463
|
+
* Valid Values: ``RDSDBDATA2 | RDSDBDATA3 | RDSDBDATA4``
|
|
94378
94464
|
*/
|
|
94379
94465
|
volumeName?: string;
|
|
94380
94466
|
}
|
package/types/output.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;
|
|
1
|
+
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAy4rBjF,IAAiB,MAAM,CAgHtB;AAhHD,WAAiB,MAAM;IAoDnB;;OAEG;IACH,SAAgB,yBAAyB,CAAC,GAAe;QACrD,OAAO;YACH,GAAG,GAAG;YACN,qBAAqB,EAAE,CAAC,GAAG,CAAC,qBAAqB,CAAC,IAAI,CAAC;SAC1D,CAAC;IACN,CAAC;IALe,gCAAyB,4BAKxC,CAAA;AAoDL,CAAC,EAhHgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAgHtB"}
|