@pulumi/aws-native 1.3.0 → 1.4.0-alpha.1729803578
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/apigateway/vpcLink.d.ts +2 -2
- package/apigatewayv2/domainName.d.ts +2 -2
- package/apigatewayv2/getDomainName.d.ts +2 -2
- package/autoscaling/autoScalingGroup.d.ts +4 -2
- package/autoscaling/autoScalingGroup.js +2 -0
- package/autoscaling/autoScalingGroup.js.map +1 -1
- package/autoscaling/getAutoScalingGroup.d.ts +2 -1
- package/autoscaling/getAutoScalingGroup.js.map +1 -1
- package/backup/getLogicallyAirGappedBackupVault.d.ts +30 -0
- package/backup/getLogicallyAirGappedBackupVault.js +28 -0
- package/backup/getLogicallyAirGappedBackupVault.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/logicallyAirGappedBackupVault.d.ts +63 -0
- package/backup/logicallyAirGappedBackupVault.js +82 -0
- package/backup/logicallyAirGappedBackupVault.js.map +1 -0
- package/cognito/getUserPoolIdentityProvider.d.ts +18 -14
- package/cognito/getUserPoolIdentityProvider.js +4 -2
- package/cognito/getUserPoolIdentityProvider.js.map +1 -1
- package/cognito/userPoolIdentityProvider.d.ts +12 -16
- package/cognito/userPoolIdentityProvider.js +3 -2
- package/cognito/userPoolIdentityProvider.js.map +1 -1
- package/ec2/capacityReservation.d.ts +2 -0
- package/ec2/capacityReservation.js +2 -0
- package/ec2/capacityReservation.js.map +1 -1
- package/ec2/getVpcEndpoint.d.ts +2 -1
- package/ec2/getVpcEndpoint.js.map +1 -1
- package/ec2/vpcEndpoint.d.ts +4 -2
- package/ec2/vpcEndpoint.js.map +1 -1
- package/ecs/capacityProvider.d.ts +3 -3
- package/ecs/capacityProvider.js +0 -3
- package/ecs/capacityProvider.js.map +1 -1
- package/elasticache/getServerlessCache.d.ts +8 -0
- package/elasticache/getServerlessCache.js.map +1 -1
- package/elasticache/serverlessCache.js +1 -1
- package/elasticache/serverlessCache.js.map +1 -1
- package/imagebuilder/getInfrastructureConfiguration.d.ts +4 -0
- package/imagebuilder/getInfrastructureConfiguration.js.map +1 -1
- package/imagebuilder/infrastructureConfiguration.d.ts +8 -0
- package/imagebuilder/infrastructureConfiguration.js +2 -0
- package/imagebuilder/infrastructureConfiguration.js.map +1 -1
- package/memorydb/cluster.d.ts +8 -0
- package/memorydb/cluster.js +2 -0
- package/memorydb/cluster.js.map +1 -1
- package/memorydb/getCluster.d.ts +4 -0
- package/memorydb/getCluster.js.map +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/pcaconnectorad/getConnector.d.ts +6 -0
- package/pcaconnectorad/getConnector.js.map +1 -1
- package/pcaconnectorad/getDirectoryRegistration.d.ts +6 -0
- package/pcaconnectorad/getDirectoryRegistration.js.map +1 -1
- package/pcaconnectorad/getTemplate.d.ts +11 -0
- package/pcaconnectorad/getTemplate.js.map +1 -1
- package/qbusiness/getWebExperience.d.ts +5 -0
- package/qbusiness/getWebExperience.js.map +1 -1
- package/qbusiness/webExperience.d.ts +10 -0
- package/qbusiness/webExperience.js.map +1 -1
- package/redshift/getIntegration.d.ts +40 -0
- package/redshift/getIntegration.js +28 -0
- package/redshift/getIntegration.js.map +1 -0
- package/redshift/index.d.ts +6 -0
- package/redshift/index.js +8 -1
- package/redshift/index.js.map +1 -1
- package/redshift/integration.d.ts +89 -0
- package/redshift/integration.js +78 -0
- package/redshift/integration.js.map +1 -0
- package/types/enums/imagebuilder/index.d.ts +10 -0
- package/types/enums/imagebuilder/index.js +7 -1
- package/types/enums/imagebuilder/index.js.map +1 -1
- package/types/enums/s3/index.d.ts +1 -0
- package/types/enums/s3/index.js.map +1 -1
- package/types/input.d.ts +59 -12
- package/types/output.d.ts +59 -12
- package/wisdom/knowledgeBase.d.ts +2 -2
package/types/output.d.ts
CHANGED
|
@@ -2021,7 +2021,7 @@ export declare namespace apigatewayv2 {
|
|
|
2021
2021
|
}
|
|
2022
2022
|
/**
|
|
2023
2023
|
* The ``DomainNameConfiguration`` property type specifies the configuration for an API's domain name.
|
|
2024
|
-
*
|
|
2024
|
+
* ``DomainNameConfiguration`` is a property of the [AWS::ApiGatewayV2::DomainName](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html) resource.
|
|
2025
2025
|
*/
|
|
2026
2026
|
interface DomainNameConfiguration {
|
|
2027
2027
|
/**
|
|
@@ -6315,6 +6315,10 @@ export declare namespace autoscaling {
|
|
|
6315
6315
|
*/
|
|
6316
6316
|
min?: number;
|
|
6317
6317
|
}
|
|
6318
|
+
interface AutoScalingGroupTrafficSourceIdentifier {
|
|
6319
|
+
identifier: string;
|
|
6320
|
+
type: string;
|
|
6321
|
+
}
|
|
6318
6322
|
/**
|
|
6319
6323
|
* ``VCpuCountRequest`` is a property of the ``InstanceRequirements`` property of the [AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplateoverrides.html) property type that describes the minimum and maximum number of vCPUs for an instance type.
|
|
6320
6324
|
*/
|
|
@@ -7129,6 +7133,10 @@ export declare namespace backup {
|
|
|
7129
7133
|
*/
|
|
7130
7134
|
value?: string;
|
|
7131
7135
|
}
|
|
7136
|
+
interface LogicallyAirGappedBackupVaultNotificationObjectType {
|
|
7137
|
+
backupVaultEvents: string[];
|
|
7138
|
+
snsTopicArn: string;
|
|
7139
|
+
}
|
|
7132
7140
|
/**
|
|
7133
7141
|
* A structure that contains information about where and how to deliver your reports, specifically your Amazon S3 bucket name, S3 key prefix, and the formats of your reports.
|
|
7134
7142
|
*/
|
|
@@ -24271,7 +24279,16 @@ export declare namespace ecs {
|
|
|
24271
24279
|
*/
|
|
24272
24280
|
logDriver?: string;
|
|
24273
24281
|
/**
|
|
24274
|
-
* The configuration options to send to the log driver.
|
|
24282
|
+
* The configuration options to send to the log driver.
|
|
24283
|
+
* The options you can specify depend on the log driver. Some of the options you can specify when you use the ``awslogs`` log driver to route logs to Amazon CloudWatch include the following:
|
|
24284
|
+
* + awslogs-create-group Required: No Specify whether you want the log group to be created automatically. If this option isn't specified, it defaults to false. Your IAM policy must include the logs:CreateLogGroup permission before you attempt to use awslogs-create-group. + awslogs-region Required: Yes Specify the Region that the awslogs log driver is to send your Docker logs to. You can choose to send all of your logs from clusters in different Regions to a single region in CloudWatch Logs. This is so that they're all visible in one location. Otherwise, you can separate them by Region for more granularity. Make sure that the specified log group exists in the Region that you specify with this option. + awslogs-group Required: Yes Make sure to specify a log group that the awslogs log driver sends its log streams to. + awslogs-stream-prefix Required: Yes, when using the Fargate launch type.Optional for the EC2 launch type, required for the Fargate launch type. Use the awslogs-stream-prefix option to associate a log stream with the specified prefix, the container name, and the ID of the Amazon ECS task that the container belongs to. If you specify a prefix with this option, then the log stream takes the format prefix-name/container-name/ecs-task-id. If you don't specify a prefix with this option, then the log stream is named after the container ID that's assigned by the Docker daemon on the container instance. Because it's difficult to trace logs back to the container that sent them with just the Docker container ID (which is only available on the container instance), we recommend that you specify a prefix with this option. For Amazon ECS services, you can use the service name as the prefix. Doing so, you can trace log streams to the service that the container belongs to, the name of the container that sent them, and the ID of the task that the container belongs to. You must specify a stream-prefix for your logs to have your logs appear in the Log pane when using the Amazon ECS console. + awslogs-datetime-format Required: No This option defines a multiline start pattern in Python strftime format. A log message consists of a line that matches the pattern and any following lines that don’t match the pattern. The matched line is the delimiter between log messages. One example of a use case for using this format is for parsing output such as a stack dump, which might otherwise be logged in multiple entries. The correct pattern allows it to be captured in a single entry. For more information, see awslogs-datetime-format. You cannot configure both the awslogs-datetime-format and awslogs-multiline-pattern options. Multiline logging performs regular expression parsing and matching of all log messages. This might have a negative impact on logging performance. + awslogs-multiline-pattern Required: No This option defines a multiline start pattern that uses a regular expression. A log message consists of a line that matches the pattern and any following lines that don’t match the pattern. The matched line is the delimiter between log messages. For more information, see awslogs-multiline-pattern. This option is ignored if awslogs-datetime-format is also configured. You cannot configure both the awslogs-datetime-format and awslogs-multiline-pattern options. Multiline logging performs regular expression parsing and matching of all log messages. This might have a negative impact on logging performance. + mode Required: No Valid values: non-blocking | blocking This option defines the delivery mode of log messages from the container to CloudWatch Logs. The delivery mode you choose affects application availability when the flow of logs from container to CloudWatch is interrupted. If you use the blocking mode and the flow of logs to CloudWatch is interrupted, calls from container code to write to the stdout and stderr streams will block. The logging thread of the application will block as a result. This may cause the application to become unresponsive and lead to container healthcheck failure. If you use the non-blocking mode, the container's logs are instead stored in an in-memory intermediate buffer configured with the max-buffer-size option. This prevents the application from becoming unresponsive when logs cannot be sent to CloudWatch. We recommend using this mode if you want to ensure service availability and are okay with some log loss. For more information, see Preventing log loss with non-blocking mode in the awslogs container log driver. + max-buffer-size Required: No Default value: 1m When non-blocking mode is used, the max-buffer-size log option controls the size of the buffer that's used for intermediate message storage. Make sure to specify an adequate buffer size based on your application. When the buffer fills up, further logs cannot be stored. Logs that cannot be stored are lost.
|
|
24285
|
+
* To route logs using the ``splunk`` log router, you need to specify a ``splunk-token`` and a ``splunk-url``.
|
|
24286
|
+
* When you use the ``awsfirelens`` log router to route logs to an AWS Service or AWS Partner Network destination for log storage and analytics, you can set the ``log-driver-buffer-limit`` option to limit the number of events that are buffered in memory, before being sent to the log router container. It can help to resolve potential log loss issue because high throughput might result in memory running out for the buffer inside of Docker.
|
|
24287
|
+
* Other options you can specify when using ``awsfirelens`` to route logs depend on the destination. When you export logs to Amazon Data Firehose, you can specify the AWS Region with ``region`` and a name for the log stream with ``delivery_stream``.
|
|
24288
|
+
* When you export logs to Amazon Kinesis Data Streams, you can specify an AWS Region with ``region`` and a data stream name with ``stream``.
|
|
24289
|
+
* When you export logs to Amazon OpenSearch Service, you can specify options like ``Name``, ``Host`` (OpenSearch Service endpoint without protocol), ``Port``, ``Index``, ``Type``, ``Aws_auth``, ``Aws_region``, ``Suppress_Type_Name``, and ``tls``.
|
|
24290
|
+
* When you export logs to Amazon S3, you can specify the bucket using the ``bucket`` option. You can also specify ``region``, ``total_file_size``, ``upload_timeout``, and ``use_put_object`` as options.
|
|
24291
|
+
* This parameter requires version 1.19 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: ``sudo docker version --format '{{.Server.APIVersion}}'``
|
|
24275
24292
|
*/
|
|
24276
24293
|
options?: {
|
|
24277
24294
|
[key: string]: string;
|
|
@@ -32037,6 +32054,27 @@ export declare namespace imagebuilder {
|
|
|
32037
32054
|
*/
|
|
32038
32055
|
s3Logs?: outputs.imagebuilder.InfrastructureConfigurationS3Logs;
|
|
32039
32056
|
}
|
|
32057
|
+
/**
|
|
32058
|
+
* The placement options
|
|
32059
|
+
*/
|
|
32060
|
+
interface InfrastructureConfigurationPlacement {
|
|
32061
|
+
/**
|
|
32062
|
+
* AvailabilityZone
|
|
32063
|
+
*/
|
|
32064
|
+
availabilityZone?: string;
|
|
32065
|
+
/**
|
|
32066
|
+
* HostId
|
|
32067
|
+
*/
|
|
32068
|
+
hostId?: string;
|
|
32069
|
+
/**
|
|
32070
|
+
* HostResourceGroupArn
|
|
32071
|
+
*/
|
|
32072
|
+
hostResourceGroupArn?: string;
|
|
32073
|
+
/**
|
|
32074
|
+
* Tenancy
|
|
32075
|
+
*/
|
|
32076
|
+
tenancy?: enums.imagebuilder.InfrastructureConfigurationPlacementTenancy;
|
|
32077
|
+
}
|
|
32040
32078
|
/**
|
|
32041
32079
|
* The S3 path in which to store the logs.
|
|
32042
32080
|
*/
|
|
@@ -36880,11 +36918,11 @@ export declare namespace ivs {
|
|
|
36880
36918
|
*/
|
|
36881
36919
|
framerate?: number;
|
|
36882
36920
|
/**
|
|
36883
|
-
* Video-resolution height. Note that the maximum value is determined by width times height, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 720.
|
|
36921
|
+
* Video-resolution height. This must be an even number. Note that the maximum value is determined by width times height, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 720.
|
|
36884
36922
|
*/
|
|
36885
36923
|
height?: number;
|
|
36886
36924
|
/**
|
|
36887
|
-
* Video-resolution width. Note that the maximum value is determined by width times height, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 1280.
|
|
36925
|
+
* Video-resolution width. This must be an even number. Note that the maximum value is determined by width times height, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 1280.
|
|
36888
36926
|
*/
|
|
36889
36927
|
width?: number;
|
|
36890
36928
|
}
|
|
@@ -78138,30 +78176,39 @@ export declare namespace s3 {
|
|
|
78138
78176
|
rules: outputs.s3.BucketFilterRule[];
|
|
78139
78177
|
}
|
|
78140
78178
|
/**
|
|
78141
|
-
* Describes the default server-side encryption to apply to new objects in the bucket. If a PUT Object request doesn't specify any server-side encryption, this default encryption will be applied.
|
|
78142
|
-
* If you'
|
|
78179
|
+
* Describes the default server-side encryption to apply to new objects in the bucket. If a PUT Object request doesn't specify any server-side encryption, this default encryption will be applied. For more information, see [PutBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTencryption.html).
|
|
78180
|
+
* + *General purpose buckets* - If you don't specify a customer managed key at configuration, Amazon S3 automatically creates an AWS KMS key (``aws/s3``) in your AWS account the first time that you add an object encrypted with SSE-KMS to a bucket. By default, Amazon S3 uses this KMS key for SSE-KMS.
|
|
78181
|
+
* + *Directory buckets* - Your SSE-KMS configuration can only support 1 [customer managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk) per directory bucket for the lifetime of the bucket. The [managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk) (``aws/s3``) isn't supported.
|
|
78182
|
+
* + *Directory buckets* - For directory buckets, there are only two supported options for server-side encryption: SSE-S3 and SSE-KMS.
|
|
78143
78183
|
*/
|
|
78144
78184
|
interface BucketServerSideEncryptionByDefault {
|
|
78145
78185
|
/**
|
|
78146
|
-
* AWS Key Management Service (KMS) customer
|
|
78147
|
-
*
|
|
78186
|
+
* AWS Key Management Service (KMS) customer managed key ID to use for the default encryption.
|
|
78187
|
+
* + *General purpose buckets* - This parameter is allowed if and only if ``SSEAlgorithm`` is set to ``aws:kms`` or ``aws:kms:dsse``.
|
|
78188
|
+
* + *Directory buckets* - This parameter is allowed if and only if ``SSEAlgorithm`` is set to ``aws:kms``.
|
|
78189
|
+
*
|
|
78190
|
+
* You can specify the key ID, key alias, or the Amazon Resource Name (ARN) of the KMS key.
|
|
78148
78191
|
* + Key ID: ``1234abcd-12ab-34cd-56ef-1234567890ab``
|
|
78149
78192
|
* + Key ARN: ``arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab``
|
|
78150
78193
|
* + Key Alias: ``alias/alias-name``
|
|
78151
78194
|
*
|
|
78152
|
-
* If you
|
|
78153
|
-
*
|
|
78154
|
-
*
|
|
78195
|
+
* If you are using encryption with cross-account or AWS service operations, you must use a fully qualified KMS key ARN. For more information, see [Using encryption for cross-account operations](https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-encryption.html#bucket-encryption-update-bucket-policy).
|
|
78196
|
+
* + *General purpose buckets* - If you're specifying a customer managed KMS key, we recommend using a fully qualified KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the requester’s account. This behavior can result in data that's encrypted with a KMS key that belongs to the requester, and not the bucket owner. Also, if you use a key ID, you can run into a LogDestination undeliverable error when creating a VPC flow log.
|
|
78197
|
+
* + *Directory buckets* - When you specify an [customer managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk) for encryption in your directory bucket, only use the key ID or key ARN. The key alias format of the KMS key isn't supported.
|
|
78198
|
+
*
|
|
78199
|
+
* Amazon S3 only supports symmetric encryption KMS keys. For more information, see [Asymmetric keys in KMS](https://docs.aws.amazon.com//kms/latest/developerguide/symmetric-asymmetric.html) in the *Key Management Service Developer Guide*.
|
|
78155
78200
|
*/
|
|
78156
78201
|
kmsMasterKeyId?: string;
|
|
78157
78202
|
/**
|
|
78158
78203
|
* Server-side encryption algorithm to use for the default encryption.
|
|
78204
|
+
* For directory buckets, there are only two supported values for server-side encryption: ``AES256`` and ``aws:kms``.
|
|
78159
78205
|
*/
|
|
78160
78206
|
sseAlgorithm: enums.s3.BucketServerSideEncryptionByDefaultSseAlgorithm;
|
|
78161
78207
|
}
|
|
78162
78208
|
/**
|
|
78163
78209
|
* Specifies the default server-side encryption configuration.
|
|
78164
|
-
* If you're specifying a customer managed KMS key, we recommend using a fully qualified KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the requester’s account. This behavior can result in data that's encrypted with a KMS key that belongs to the requester, and not the bucket owner.
|
|
78210
|
+
* + *General purpose buckets* - If you're specifying a customer managed KMS key, we recommend using a fully qualified KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the requester’s account. This behavior can result in data that's encrypted with a KMS key that belongs to the requester, and not the bucket owner.
|
|
78211
|
+
* + *Directory buckets* - When you specify an [customer managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk) for encryption in your directory bucket, only use the key ID or key ARN. The key alias format of the KMS key isn't supported.
|
|
78165
78212
|
*/
|
|
78166
78213
|
interface BucketServerSideEncryptionRule {
|
|
78167
78214
|
/**
|
|
@@ -49,7 +49,7 @@ export declare class KnowledgeBase extends pulumi.CustomResource {
|
|
|
49
49
|
*/
|
|
50
50
|
readonly serverSideEncryptionConfiguration: pulumi.Output<outputs.wisdom.KnowledgeBaseServerSideEncryptionConfiguration | undefined>;
|
|
51
51
|
/**
|
|
52
|
-
* The source of the knowledge base content. Only set this argument for EXTERNAL knowledge bases.
|
|
52
|
+
* The source of the knowledge base content. Only set this argument for EXTERNAL or Managed knowledge bases.
|
|
53
53
|
*/
|
|
54
54
|
readonly sourceConfiguration: pulumi.Output<outputs.wisdom.KnowledgeBaseSourceConfiguration | undefined>;
|
|
55
55
|
/**
|
|
@@ -90,7 +90,7 @@ export interface KnowledgeBaseArgs {
|
|
|
90
90
|
*/
|
|
91
91
|
serverSideEncryptionConfiguration?: pulumi.Input<inputs.wisdom.KnowledgeBaseServerSideEncryptionConfigurationArgs>;
|
|
92
92
|
/**
|
|
93
|
-
* The source of the knowledge base content. Only set this argument for EXTERNAL knowledge bases.
|
|
93
|
+
* The source of the knowledge base content. Only set this argument for EXTERNAL or Managed knowledge bases.
|
|
94
94
|
*/
|
|
95
95
|
sourceConfiguration?: pulumi.Input<inputs.wisdom.KnowledgeBaseSourceConfigurationArgs>;
|
|
96
96
|
/**
|