@awboost/cfntypes 0.100.27 → 0.100.28
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.
@@ -3291,21 +3291,12 @@ export type ApiGatewayUsagePlanKeyAttributes = {
|
|
3291
3291
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html}
|
3292
3292
|
*/
|
3293
3293
|
export type ApiGatewayVpcLinkProps = {
|
3294
|
-
/**
|
3295
|
-
* The description of the VPC link.
|
3296
|
-
*/
|
3297
3294
|
Description?: string;
|
3298
|
-
/**
|
3299
|
-
* The name used to label and identify the VPC link.
|
3300
|
-
*/
|
3301
3295
|
Name: string;
|
3302
3296
|
/**
|
3303
3297
|
* An array of arbitrary tags (key-value pairs) to associate with the VPC link.
|
3304
3298
|
*/
|
3305
3299
|
Tags?: ApiGatewayVpcLinkTag[];
|
3306
|
-
/**
|
3307
|
-
* The ARN of the network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same AWS-account of the API owner.
|
3308
|
-
*/
|
3309
3300
|
TargetArns: string[];
|
3310
3301
|
};
|
3311
3302
|
/**
|
@@ -11251,23 +11242,83 @@ export type AppSyncFunctionConfigurationSyncConfig = {
|
|
11251
11242
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html}
|
11252
11243
|
*/
|
11253
11244
|
export type AppSyncGraphQLApiProps = {
|
11245
|
+
/**
|
11246
|
+
* A list of additional authentication providers for the GraphqlApi API.
|
11247
|
+
*/
|
11254
11248
|
AdditionalAuthenticationProviders?: AppSyncGraphQLApiAdditionalAuthenticationProvider[];
|
11249
|
+
/**
|
11250
|
+
* The value that indicates whether the GraphQL API is a standard API (GRAPHQL) or merged API (MERGED).
|
11251
|
+
*/
|
11255
11252
|
ApiType?: string;
|
11253
|
+
/**
|
11254
|
+
* Security configuration for your GraphQL API
|
11255
|
+
*/
|
11256
11256
|
AuthenticationType: string;
|
11257
|
+
/**
|
11258
|
+
* Enables and controls the enhanced metrics feature. Enhanced metrics emit granular data on API usage and performance such as AppSync request and error counts, latency, and cache hits/misses. All enhanced metric data is sent to your CloudWatch account, and you can configure the types of data that will be sent.
|
11259
|
+
*/
|
11257
11260
|
EnhancedMetricsConfig?: AppSyncGraphQLApiEnhancedMetricsConfig;
|
11258
|
-
|
11261
|
+
/**
|
11262
|
+
* A map containing the list of resources with their properties and environment variables.
|
11263
|
+
*/
|
11264
|
+
EnvironmentVariables?: Record<string, string>;
|
11265
|
+
/**
|
11266
|
+
* Sets the value of the GraphQL API to enable (ENABLED) or disable (DISABLED) introspection. If no value is provided, the introspection configuration will be set to ENABLED by default. This field will produce an error if the operation attempts to use the introspection feature while this field is disabled.
|
11267
|
+
*/
|
11259
11268
|
IntrospectionConfig?: string;
|
11269
|
+
/**
|
11270
|
+
* A LambdaAuthorizerConfig holds configuration on how to authorize AWS AppSync API access when using the AWS_LAMBDA authorizer mode. Be aware that an AWS AppSync API may have only one Lambda authorizer configured at a time.
|
11271
|
+
*/
|
11260
11272
|
LambdaAuthorizerConfig?: AppSyncGraphQLApiLambdaAuthorizerConfig;
|
11273
|
+
/**
|
11274
|
+
* The Amazon CloudWatch Logs configuration.
|
11275
|
+
*/
|
11261
11276
|
LogConfig?: AppSyncGraphQLApiLogConfig;
|
11277
|
+
/**
|
11278
|
+
* The AWS Identity and Access Management service role ARN for a merged API.
|
11279
|
+
*/
|
11262
11280
|
MergedApiExecutionRoleArn?: string;
|
11281
|
+
/**
|
11282
|
+
* The API name
|
11283
|
+
*/
|
11263
11284
|
Name: string;
|
11285
|
+
/**
|
11286
|
+
* The OpenID Connect configuration.
|
11287
|
+
*/
|
11264
11288
|
OpenIDConnectConfig?: AppSyncGraphQLApiOpenIDConnectConfig;
|
11289
|
+
/**
|
11290
|
+
* The owner contact information for an API resource.
|
11291
|
+
*/
|
11265
11292
|
OwnerContact?: string;
|
11293
|
+
/**
|
11294
|
+
* The maximum depth a query can have in a single request. Depth refers to the amount of nested levels allowed in the body of query.
|
11295
|
+
*/
|
11266
11296
|
QueryDepthLimit?: number;
|
11297
|
+
/**
|
11298
|
+
* The maximum number of resolvers that can be invoked in a single request.
|
11299
|
+
*/
|
11267
11300
|
ResolverCountLimit?: number;
|
11301
|
+
/**
|
11302
|
+
* An arbitrary set of tags (key-value pairs) for this GraphQL API.
|
11303
|
+
|
11304
|
+
|
11305
|
+
*/
|
11268
11306
|
Tags?: AppSyncGraphQLApiTag[];
|
11307
|
+
/**
|
11308
|
+
* Optional authorization configuration for using Amazon Cognito user pools with your GraphQL endpoint.
|
11309
|
+
|
11310
|
+
|
11311
|
+
*/
|
11269
11312
|
UserPoolConfig?: AppSyncGraphQLApiUserPoolConfig;
|
11313
|
+
/**
|
11314
|
+
* Sets the scope of the GraphQL API to public (GLOBAL) or private (PRIVATE). By default, the scope is set to Global if no value is provided.
|
11315
|
+
*/
|
11270
11316
|
Visibility?: string;
|
11317
|
+
/**
|
11318
|
+
* A flag indicating whether to use AWS X-Ray tracing for this GraphqlApi.
|
11319
|
+
|
11320
|
+
|
11321
|
+
*/
|
11271
11322
|
XrayEnabled?: boolean;
|
11272
11323
|
};
|
11273
11324
|
/**
|
@@ -11275,13 +11326,33 @@ export type AppSyncGraphQLApiProps = {
|
|
11275
11326
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-graphqlapi.html#aws-resource-appsync-graphqlapi-return-values}
|
11276
11327
|
*/
|
11277
11328
|
export type AppSyncGraphQLApiAttributes = {
|
11329
|
+
/**
|
11330
|
+
* Unique AWS AppSync GraphQL API identifier.
|
11331
|
+
*/
|
11278
11332
|
ApiId: string;
|
11333
|
+
/**
|
11334
|
+
* The Amazon Resource Name (ARN) of the API key
|
11335
|
+
*/
|
11279
11336
|
Arn: string;
|
11337
|
+
/**
|
11338
|
+
* The fully qualified domain name (FQDN) of the endpoint URL of your GraphQL API.
|
11339
|
+
*/
|
11280
11340
|
GraphQLDns: string;
|
11341
|
+
/**
|
11342
|
+
* The GraphQL endpoint ARN.
|
11343
|
+
*/
|
11281
11344
|
GraphQLEndpointArn: string;
|
11345
|
+
/**
|
11346
|
+
* The Endpoint URL of your GraphQL API.
|
11347
|
+
*/
|
11282
11348
|
GraphQLUrl: string;
|
11283
|
-
|
11349
|
+
/**
|
11350
|
+
* The fully qualified domain name (FQDN) of the real-time endpoint URL of your GraphQL API.
|
11351
|
+
*/
|
11284
11352
|
RealtimeDns: string;
|
11353
|
+
/**
|
11354
|
+
* The GraphQL API real-time endpoint URL.
|
11355
|
+
*/
|
11285
11356
|
RealtimeUrl: string;
|
11286
11357
|
};
|
11287
11358
|
/**
|
@@ -11289,6 +11360,9 @@ export type AppSyncGraphQLApiAttributes = {
|
|
11289
11360
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-additionalauthenticationprovider.html}
|
11290
11361
|
*/
|
11291
11362
|
export type AppSyncGraphQLApiAdditionalAuthenticationProvider = {
|
11363
|
+
/**
|
11364
|
+
* The authentication type for API key, AWS Identity and Access Management, OIDC, Amazon Cognito user pools, or AWS Lambda.
|
11365
|
+
*/
|
11292
11366
|
AuthenticationType: string;
|
11293
11367
|
LambdaAuthorizerConfig?: AppSyncGraphQLApiLambdaAuthorizerConfig;
|
11294
11368
|
OpenIDConnectConfig?: AppSyncGraphQLApiOpenIDConnectConfig;
|
@@ -11299,8 +11373,17 @@ export type AppSyncGraphQLApiAdditionalAuthenticationProvider = {
|
|
11299
11373
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-cognitouserpoolconfig.html}
|
11300
11374
|
*/
|
11301
11375
|
export type AppSyncGraphQLApiCognitoUserPoolConfig = {
|
11376
|
+
/**
|
11377
|
+
* A regular expression for validating the incoming Amazon Cognito user pool app client ID.
|
11378
|
+
*/
|
11302
11379
|
AppIdClientRegex?: string;
|
11380
|
+
/**
|
11381
|
+
* The AWS Region in which the user pool was created.
|
11382
|
+
*/
|
11303
11383
|
AwsRegion?: string;
|
11384
|
+
/**
|
11385
|
+
* The user pool ID
|
11386
|
+
*/
|
11304
11387
|
UserPoolId?: string;
|
11305
11388
|
};
|
11306
11389
|
/**
|
@@ -11308,8 +11391,23 @@ export type AppSyncGraphQLApiCognitoUserPoolConfig = {
|
|
11308
11391
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-enhancedmetricsconfig.html}
|
11309
11392
|
*/
|
11310
11393
|
export type AppSyncGraphQLApiEnhancedMetricsConfig = {
|
11394
|
+
/**
|
11395
|
+
* Controls how data source metrics will be emitted to CloudWatch. Data source metrics include:
|
11396
|
+
|
11397
|
+
|
11398
|
+
*/
|
11311
11399
|
DataSourceLevelMetricsBehavior: string;
|
11400
|
+
/**
|
11401
|
+
* Controls how operation metrics will be emitted to CloudWatch. Operation metrics include:
|
11402
|
+
|
11403
|
+
|
11404
|
+
*/
|
11312
11405
|
OperationLevelMetricsConfig: string;
|
11406
|
+
/**
|
11407
|
+
* Controls how resolver metrics will be emitted to CloudWatch. Resolver metrics include:
|
11408
|
+
|
11409
|
+
|
11410
|
+
*/
|
11313
11411
|
ResolverLevelMetricsBehavior: string;
|
11314
11412
|
};
|
11315
11413
|
/**
|
@@ -11317,8 +11415,17 @@ export type AppSyncGraphQLApiEnhancedMetricsConfig = {
|
|
11317
11415
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-lambdaauthorizerconfig.html}
|
11318
11416
|
*/
|
11319
11417
|
export type AppSyncGraphQLApiLambdaAuthorizerConfig = {
|
11418
|
+
/**
|
11419
|
+
* The number of seconds a response should be cached for.
|
11420
|
+
*/
|
11320
11421
|
AuthorizerResultTtlInSeconds?: number;
|
11422
|
+
/**
|
11423
|
+
* The ARN of the Lambda function to be called for authorization.
|
11424
|
+
*/
|
11321
11425
|
AuthorizerUri?: string;
|
11426
|
+
/**
|
11427
|
+
* A regular expression for validation of tokens before the Lambda function is called.
|
11428
|
+
*/
|
11322
11429
|
IdentityValidationExpression?: string;
|
11323
11430
|
};
|
11324
11431
|
/**
|
@@ -11326,8 +11433,17 @@ export type AppSyncGraphQLApiLambdaAuthorizerConfig = {
|
|
11326
11433
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-logconfig.html}
|
11327
11434
|
*/
|
11328
11435
|
export type AppSyncGraphQLApiLogConfig = {
|
11436
|
+
/**
|
11437
|
+
* The service role that AWS AppSync will assume to publish to Amazon CloudWatch Logs in your account.
|
11438
|
+
*/
|
11329
11439
|
CloudWatchLogsRoleArn?: string;
|
11440
|
+
/**
|
11441
|
+
* Set to TRUE to exclude sections that contain information such as headers, context, and evaluated mapping templates, regardless of logging level.
|
11442
|
+
*/
|
11330
11443
|
ExcludeVerboseContent?: boolean;
|
11444
|
+
/**
|
11445
|
+
* The field logging level. Values can be NONE, ERROR, INFO, DEBUG, or ALL.
|
11446
|
+
*/
|
11331
11447
|
FieldLogLevel?: string;
|
11332
11448
|
};
|
11333
11449
|
/**
|
@@ -11335,9 +11451,23 @@ export type AppSyncGraphQLApiLogConfig = {
|
|
11335
11451
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-openidconnectconfig.html}
|
11336
11452
|
*/
|
11337
11453
|
export type AppSyncGraphQLApiOpenIDConnectConfig = {
|
11454
|
+
/**
|
11455
|
+
* The number of milliseconds that a token is valid after being authenticated.
|
11456
|
+
*/
|
11338
11457
|
AuthTTL?: number;
|
11458
|
+
/**
|
11459
|
+
* The client identifier of the Relying party at the OpenID identity provider.
|
11460
|
+
*/
|
11339
11461
|
ClientId?: string;
|
11462
|
+
/**
|
11463
|
+
* The number of milliseconds that a token is valid after it's issued to a user.
|
11464
|
+
|
11465
|
+
|
11466
|
+
*/
|
11340
11467
|
IatTTL?: number;
|
11468
|
+
/**
|
11469
|
+
* The issuer for the OIDC configuration.
|
11470
|
+
*/
|
11341
11471
|
Issuer?: string;
|
11342
11472
|
};
|
11343
11473
|
/**
|
@@ -11353,9 +11483,21 @@ export type AppSyncGraphQLApiTag = {
|
|
11353
11483
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-graphqlapi-userpoolconfig.html}
|
11354
11484
|
*/
|
11355
11485
|
export type AppSyncGraphQLApiUserPoolConfig = {
|
11486
|
+
/**
|
11487
|
+
* A regular expression for validating the incoming Amazon Cognito user pool app client ID.
|
11488
|
+
*/
|
11356
11489
|
AppIdClientRegex?: string;
|
11490
|
+
/**
|
11491
|
+
* The AWS Region in which the user pool was created.
|
11492
|
+
*/
|
11357
11493
|
AwsRegion?: string;
|
11494
|
+
/**
|
11495
|
+
* The action that you want your GraphQL API to take when a request that uses Amazon Cognito user pool authentication doesn't match the Amazon Cognito user pool configuration.
|
11496
|
+
*/
|
11358
11497
|
DefaultAction?: string;
|
11498
|
+
/**
|
11499
|
+
* The user pool ID.
|
11500
|
+
*/
|
11359
11501
|
UserPoolId?: string;
|
11360
11502
|
};
|
11361
11503
|
/**
|
@@ -13174,7 +13316,7 @@ export type AutoScalingAutoScalingGroupProps = {
|
|
13174
13316
|
HealthCheckGracePeriod?: number;
|
13175
13317
|
/**
|
13176
13318
|
* A comma-separated value string of one or more health check types.
|
13177
|
-
The valid values are ``EC2``, ``ELB``, and ``VPC_LATTICE``. ``EC2`` is the default health check and cannot be disabled. For more information, see [Health checks for instances in an Auto Scaling group](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-health-checks.html) in the *Amazon EC2 Auto Scaling User Guide*.
|
13319
|
+
The valid values are ``EC2``, ``EBS``, ``ELB``, and ``VPC_LATTICE``. ``EC2`` is the default health check and cannot be disabled. For more information, see [Health checks for instances in an Auto Scaling group](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-health-checks.html) in the *Amazon EC2 Auto Scaling User Guide*.
|
13178
13320
|
Only specify ``EC2`` if you must clear a value that was previously set.
|
13179
13321
|
*/
|
13180
13322
|
HealthCheckType?: string;
|
@@ -13266,6 +13408,7 @@ export type AutoScalingAutoScalingGroupProps = {
|
|
13266
13408
|
Valid values: ``Default`` | ``AllocationStrategy`` | ``ClosestToNextInstanceHour`` | ``NewestInstance`` | ``OldestInstance`` | ``OldestLaunchConfiguration`` | ``OldestLaunchTemplate`` | ``arn:aws:lambda:region:account-id:function:my-function:my-alias``
|
13267
13409
|
*/
|
13268
13410
|
TerminationPolicies?: string[];
|
13411
|
+
TrafficSources?: AutoScalingAutoScalingGroupTrafficSourceIdentifier[];
|
13269
13412
|
/**
|
13270
13413
|
* A list of subnet IDs for a virtual private cloud (VPC) where instances in the Auto Scaling group can be created.
|
13271
13414
|
If this resource specifies public subnets and is also in a VPC that is defined in the same stack template, you must use the [DependsOn attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html) to declare a dependency on the [VPC-gateway attachment](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-gateway-attachment.html).
|
@@ -13863,6 +14006,14 @@ export type AutoScalingAutoScalingGroupTotalLocalStorageGBRequest = {
|
|
13863
14006
|
*/
|
13864
14007
|
Min?: number;
|
13865
14008
|
};
|
14009
|
+
/**
|
14010
|
+
* Type definition for `AWS::AutoScaling::AutoScalingGroup.TrafficSourceIdentifier`.
|
14011
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-trafficsourceidentifier.html}
|
14012
|
+
*/
|
14013
|
+
export type AutoScalingAutoScalingGroupTrafficSourceIdentifier = {
|
14014
|
+
Identifier: string;
|
14015
|
+
Type: string;
|
14016
|
+
};
|
13866
14017
|
/**
|
13867
14018
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.VCpuCountRequest`.
|
13868
14019
|
* ``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.
|
@@ -15356,6 +15507,39 @@ export type BackupFrameworkTag = {
|
|
15356
15507
|
*/
|
15357
15508
|
Value?: string;
|
15358
15509
|
};
|
15510
|
+
/**
|
15511
|
+
* Resource Type definition for AWS::Backup::LogicallyAirGappedBackupVault
|
15512
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html}
|
15513
|
+
*/
|
15514
|
+
export type BackupLogicallyAirGappedBackupVaultProps = {
|
15515
|
+
AccessPolicy?: Record<string, any> | string;
|
15516
|
+
/**
|
15517
|
+
* @pattern `^[a-zA-Z0-9\-\_]{2,50}$`
|
15518
|
+
*/
|
15519
|
+
BackupVaultName: string;
|
15520
|
+
BackupVaultTags?: Record<string, string>;
|
15521
|
+
MaxRetentionDays: number;
|
15522
|
+
MinRetentionDays: number;
|
15523
|
+
Notifications?: BackupLogicallyAirGappedBackupVaultNotificationObjectType;
|
15524
|
+
VaultState?: string;
|
15525
|
+
VaultType?: string;
|
15526
|
+
};
|
15527
|
+
/**
|
15528
|
+
* Attribute type definition for `AWS::Backup::LogicallyAirGappedBackupVault`.
|
15529
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html#aws-resource-backup-logicallyairgappedbackupvault-return-values}
|
15530
|
+
*/
|
15531
|
+
export type BackupLogicallyAirGappedBackupVaultAttributes = {
|
15532
|
+
BackupVaultArn: string;
|
15533
|
+
EncryptionKeyArn: string;
|
15534
|
+
};
|
15535
|
+
/**
|
15536
|
+
* Type definition for `AWS::Backup::LogicallyAirGappedBackupVault.NotificationObjectType`.
|
15537
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-logicallyairgappedbackupvault-notificationobjecttype.html}
|
15538
|
+
*/
|
15539
|
+
export type BackupLogicallyAirGappedBackupVaultNotificationObjectType = {
|
15540
|
+
BackupVaultEvents: string[];
|
15541
|
+
SNSTopicArn: string;
|
15542
|
+
};
|
15359
15543
|
/**
|
15360
15544
|
* Resource type definition for `AWS::Backup::ReportPlan`.
|
15361
15545
|
* Contains detailed information about a report plan in AWS Backup Audit Manager.
|
@@ -16463,7 +16647,7 @@ export type BedrockAgentProps = {
|
|
16463
16647
|
* ARN or name of a Bedrock model.
|
16464
16648
|
* @minLength `1`
|
16465
16649
|
* @maxLength `2048`
|
16466
|
-
* @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}(([:][a-z0-9-]{1,63}){0,2})?/[a-z0-9]{12})|(:foundation-model/([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})))|(([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2}))|(([0-9a-zA-Z][_-]?)+)$`
|
16650
|
+
* @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}(([:][a-z0-9-]{1,63}){0,2})?/[a-z0-9]{12})|(:foundation-model/([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2}))|([0-9]{12}:(inference-profile|application-inference-profile)/[a-zA-Z0-9-:.]+))|(([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2}))|(([0-9a-zA-Z][_-]?)+)$`
|
16467
16651
|
*/
|
16468
16652
|
FoundationModel?: string;
|
16469
16653
|
/**
|
@@ -16575,7 +16759,7 @@ export type BedrockAgentActionGroupExecutor = {
|
|
16575
16759
|
* Action Group Signature for a BuiltIn Action
|
16576
16760
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-actiongroupsignature.html}
|
16577
16761
|
*/
|
16578
|
-
export type BedrockAgentActionGroupSignature = "AMAZON.UserInput";
|
16762
|
+
export type BedrockAgentActionGroupSignature = "AMAZON.UserInput" | "AMAZON.CodeInterpreter";
|
16579
16763
|
/**
|
16580
16764
|
* Type definition for `AWS::Bedrock::Agent.ActionGroupState`.
|
16581
16765
|
* State of the action group
|
@@ -29693,20 +29877,13 @@ export type CognitoUserPoolGroupProps = {
|
|
29693
29877
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html}
|
29694
29878
|
*/
|
29695
29879
|
export type CognitoUserPoolIdentityProviderProps = {
|
29696
|
-
AttributeMapping?: Record<string,
|
29880
|
+
AttributeMapping?: Record<string, string>;
|
29697
29881
|
IdpIdentifiers?: string[];
|
29698
|
-
ProviderDetails
|
29882
|
+
ProviderDetails: Record<string, string>;
|
29699
29883
|
ProviderName: string;
|
29700
29884
|
ProviderType: string;
|
29701
29885
|
UserPoolId: string;
|
29702
29886
|
};
|
29703
|
-
/**
|
29704
|
-
* Attribute type definition for `AWS::Cognito::UserPoolIdentityProvider`.
|
29705
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolidentityprovider.html#aws-resource-cognito-userpoolidentityprovider-return-values}
|
29706
|
-
*/
|
29707
|
-
export type CognitoUserPoolIdentityProviderAttributes = {
|
29708
|
-
Id: string;
|
29709
|
-
};
|
29710
29887
|
/**
|
29711
29888
|
* Resource Type definition for AWS::Cognito::UserPoolResourceServer
|
29712
29889
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html}
|
@@ -50710,7 +50887,8 @@ export type EC2VPCDHCPOptionsAssociationProps = {
|
|
50710
50887
|
export type EC2VPCEndpointProps = {
|
50711
50888
|
/**
|
50712
50889
|
* An endpoint policy, which controls access to the service from the VPC. The default endpoint policy allows full access to the service. Endpoint policies are supported only for gateway and interface endpoints.
|
50713
|
-
For CloudFormation templates in YAML, you can provide the policy in JSON or YAML format. CFNlong converts
|
50890
|
+
For CloudFormation templates in YAML, you can provide the policy in JSON or YAML format. For example, if you have a JSON policy, you can convert it to YAML before including it in the YAML template, and CFNlong converts the policy to JSON format before calling the API actions for privatelink. Alternatively, you can include the JSON directly in the YAML, as shown in the following ``Properties`` section:
|
50891
|
+
``Properties: VpcEndpointType: 'Interface' ServiceName: !Sub 'com.amazonaws.${AWS::Region}.logs' PolicyDocument: '{ "Version":"2012-10-17", "Statement": [{ "Effect":"Allow", "Principal":"*", "Action":["logs:Describe*","logs:Get*","logs:List*","logs:FilterLogEvents"], "Resource":"*" }] }'``
|
50714
50892
|
*/
|
50715
50893
|
PolicyDocument?: string | Record<string, any>;
|
50716
50894
|
/**
|
@@ -50982,60 +51160,100 @@ export type EC2VPNConnectionAttributes = {
|
|
50982
51160
|
};
|
50983
51161
|
/**
|
50984
51162
|
* Type definition for `AWS::EC2::VPNConnection.CloudwatchLogOptionsSpecification`.
|
51163
|
+
* Options for sending VPN tunnel logs to CloudWatch.
|
50985
51164
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-cloudwatchlogoptionsspecification.html}
|
50986
51165
|
*/
|
50987
51166
|
export type EC2VPNConnectionCloudwatchLogOptionsSpecification = {
|
51167
|
+
/**
|
51168
|
+
* Enable or disable VPN tunnel logging feature. Default value is ``False``.
|
51169
|
+
Valid values: ``True`` | ``False``
|
51170
|
+
*/
|
50988
51171
|
LogEnabled?: boolean;
|
51172
|
+
/**
|
51173
|
+
* The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.
|
51174
|
+
*/
|
50989
51175
|
LogGroupArn?: string;
|
51176
|
+
/**
|
51177
|
+
* Set log format. Default format is ``json``.
|
51178
|
+
Valid values: ``json`` | ``text``
|
51179
|
+
*/
|
50990
51180
|
LogOutputFormat?: "json" | "text";
|
50991
51181
|
};
|
50992
51182
|
/**
|
50993
51183
|
* Type definition for `AWS::EC2::VPNConnection.IKEVersionsRequestListValue`.
|
51184
|
+
* The IKE version that is permitted for the VPN tunnel.
|
50994
51185
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-ikeversionsrequestlistvalue.html}
|
50995
51186
|
*/
|
50996
51187
|
export type EC2VPNConnectionIKEVersionsRequestListValue = {
|
51188
|
+
/**
|
51189
|
+
* The IKE version.
|
51190
|
+
*/
|
50997
51191
|
Value?: "ikev1" | "ikev2";
|
50998
51192
|
};
|
50999
51193
|
/**
|
51000
51194
|
* Type definition for `AWS::EC2::VPNConnection.Phase1DHGroupNumbersRequestListValue`.
|
51195
|
+
* Specifies a Diffie-Hellman group number for the VPN tunnel for phase 1 IKE negotiations.
|
51001
51196
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-phase1dhgroupnumbersrequestlistvalue.html}
|
51002
51197
|
*/
|
51003
51198
|
export type EC2VPNConnectionPhase1DHGroupNumbersRequestListValue = {
|
51199
|
+
/**
|
51200
|
+
* The Diffie-Hellmann group number.
|
51201
|
+
*/
|
51004
51202
|
Value?: 2 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24;
|
51005
51203
|
};
|
51006
51204
|
/**
|
51007
51205
|
* Type definition for `AWS::EC2::VPNConnection.Phase1EncryptionAlgorithmsRequestListValue`.
|
51206
|
+
* Specifies the encryption algorithm for the VPN tunnel for phase 1 IKE negotiations.
|
51008
51207
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-phase1encryptionalgorithmsrequestlistvalue.html}
|
51009
51208
|
*/
|
51010
51209
|
export type EC2VPNConnectionPhase1EncryptionAlgorithmsRequestListValue = {
|
51210
|
+
/**
|
51211
|
+
* The value for the encryption algorithm.
|
51212
|
+
*/
|
51011
51213
|
Value?: "AES128" | "AES256" | "AES128-GCM-16" | "AES256-GCM-16";
|
51012
51214
|
};
|
51013
51215
|
/**
|
51014
51216
|
* Type definition for `AWS::EC2::VPNConnection.Phase1IntegrityAlgorithmsRequestListValue`.
|
51217
|
+
* Specifies the integrity algorithm for the VPN tunnel for phase 1 IKE negotiations.
|
51015
51218
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-phase1integrityalgorithmsrequestlistvalue.html}
|
51016
51219
|
*/
|
51017
51220
|
export type EC2VPNConnectionPhase1IntegrityAlgorithmsRequestListValue = {
|
51221
|
+
/**
|
51222
|
+
* The value for the integrity algorithm.
|
51223
|
+
*/
|
51018
51224
|
Value?: "SHA1" | "SHA2-256" | "SHA2-384" | "SHA2-512";
|
51019
51225
|
};
|
51020
51226
|
/**
|
51021
51227
|
* Type definition for `AWS::EC2::VPNConnection.Phase2DHGroupNumbersRequestListValue`.
|
51228
|
+
* Specifies a Diffie-Hellman group number for the VPN tunnel for phase 2 IKE negotiations.
|
51022
51229
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-phase2dhgroupnumbersrequestlistvalue.html}
|
51023
51230
|
*/
|
51024
51231
|
export type EC2VPNConnectionPhase2DHGroupNumbersRequestListValue = {
|
51232
|
+
/**
|
51233
|
+
* The Diffie-Hellmann group number.
|
51234
|
+
*/
|
51025
51235
|
Value?: 2 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24;
|
51026
51236
|
};
|
51027
51237
|
/**
|
51028
51238
|
* Type definition for `AWS::EC2::VPNConnection.Phase2EncryptionAlgorithmsRequestListValue`.
|
51239
|
+
* Specifies the encryption algorithm for the VPN tunnel for phase 2 IKE negotiations.
|
51029
51240
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-phase2encryptionalgorithmsrequestlistvalue.html}
|
51030
51241
|
*/
|
51031
51242
|
export type EC2VPNConnectionPhase2EncryptionAlgorithmsRequestListValue = {
|
51243
|
+
/**
|
51244
|
+
* The encryption algorithm.
|
51245
|
+
*/
|
51032
51246
|
Value?: "AES128" | "AES256" | "AES128-GCM-16" | "AES256-GCM-16";
|
51033
51247
|
};
|
51034
51248
|
/**
|
51035
51249
|
* Type definition for `AWS::EC2::VPNConnection.Phase2IntegrityAlgorithmsRequestListValue`.
|
51250
|
+
* Specifies the integrity algorithm for the VPN tunnel for phase 2 IKE negotiations.
|
51036
51251
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-phase2integrityalgorithmsrequestlistvalue.html}
|
51037
51252
|
*/
|
51038
51253
|
export type EC2VPNConnectionPhase2IntegrityAlgorithmsRequestListValue = {
|
51254
|
+
/**
|
51255
|
+
* The integrity algorithm.
|
51256
|
+
*/
|
51039
51257
|
Value?: "SHA1" | "SHA2-256" | "SHA2-384" | "SHA2-512";
|
51040
51258
|
};
|
51041
51259
|
/**
|
@@ -51055,9 +51273,13 @@ export type EC2VPNConnectionTag = {
|
|
51055
51273
|
};
|
51056
51274
|
/**
|
51057
51275
|
* Type definition for `AWS::EC2::VPNConnection.VpnTunnelLogOptionsSpecification`.
|
51276
|
+
* Options for logging VPN tunnel activity.
|
51058
51277
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-vpntunnellogoptionsspecification.html}
|
51059
51278
|
*/
|
51060
51279
|
export type EC2VPNConnectionVpnTunnelLogOptionsSpecification = {
|
51280
|
+
/**
|
51281
|
+
* Options for sending VPN tunnel logs to CloudWatch.
|
51282
|
+
*/
|
51061
51283
|
CloudwatchLogOptions?: EC2VPNConnectionCloudwatchLogOptionsSpecification;
|
51062
51284
|
};
|
51063
51285
|
/**
|
@@ -51066,29 +51288,77 @@ export type EC2VPNConnectionVpnTunnelLogOptionsSpecification = {
|
|
51066
51288
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-vpntunneloptionsspecification.html}
|
51067
51289
|
*/
|
51068
51290
|
export type EC2VPNConnectionVpnTunnelOptionsSpecification = {
|
51291
|
+
/**
|
51292
|
+
* The action to take after DPD timeout occurs. Specify ``restart`` to restart the IKE initiation. Specify ``clear`` to end the IKE session.
|
51293
|
+
Valid Values: ``clear`` | ``none`` | ``restart``
|
51294
|
+
Default: ``clear``
|
51295
|
+
*/
|
51069
51296
|
DPDTimeoutAction?: "clear" | "none" | "restart";
|
51070
51297
|
/**
|
51071
|
-
|
51072
|
-
|
51298
|
+
* The number of seconds after which a DPD timeout occurs.
|
51299
|
+
Constraints: A value greater than or equal to 30.
|
51300
|
+
Default: ``30``
|
51301
|
+
* @min `30`
|
51302
|
+
*/
|
51073
51303
|
DPDTimeoutSeconds?: number;
|
51304
|
+
/**
|
51305
|
+
* Turn on or off tunnel endpoint lifecycle control feature.
|
51306
|
+
*/
|
51074
51307
|
EnableTunnelLifecycleControl?: boolean;
|
51308
|
+
/**
|
51309
|
+
* The IKE versions that are permitted for the VPN tunnel.
|
51310
|
+
Valid values: ``ikev1`` | ``ikev2``
|
51311
|
+
*/
|
51075
51312
|
IKEVersions?: EC2VPNConnectionIKEVersionsRequestListValue[];
|
51313
|
+
/**
|
51314
|
+
* Options for logging VPN tunnel activity.
|
51315
|
+
*/
|
51076
51316
|
LogOptions?: EC2VPNConnectionVpnTunnelLogOptionsSpecification;
|
51317
|
+
/**
|
51318
|
+
* One or more Diffie-Hellman group numbers that are permitted for the VPN tunnel for phase 1 IKE negotiations.
|
51319
|
+
Valid values: ``2`` | ``14`` | ``15`` | ``16`` | ``17`` | ``18`` | ``19`` | ``20`` | ``21`` | ``22`` | ``23`` | ``24``
|
51320
|
+
*/
|
51077
51321
|
Phase1DHGroupNumbers?: EC2VPNConnectionPhase1DHGroupNumbersRequestListValue[];
|
51322
|
+
/**
|
51323
|
+
* One or more encryption algorithms that are permitted for the VPN tunnel for phase 1 IKE negotiations.
|
51324
|
+
Valid values: ``AES128`` | ``AES256`` | ``AES128-GCM-16`` | ``AES256-GCM-16``
|
51325
|
+
*/
|
51078
51326
|
Phase1EncryptionAlgorithms?: EC2VPNConnectionPhase1EncryptionAlgorithmsRequestListValue[];
|
51327
|
+
/**
|
51328
|
+
* One or more integrity algorithms that are permitted for the VPN tunnel for phase 1 IKE negotiations.
|
51329
|
+
Valid values: ``SHA1`` | ``SHA2-256`` | ``SHA2-384`` | ``SHA2-512``
|
51330
|
+
*/
|
51079
51331
|
Phase1IntegrityAlgorithms?: EC2VPNConnectionPhase1IntegrityAlgorithmsRequestListValue[];
|
51080
51332
|
/**
|
51081
|
-
|
51082
|
-
|
51083
|
-
|
51333
|
+
* The lifetime for phase 1 of the IKE negotiation, in seconds.
|
51334
|
+
Constraints: A value between 900 and 28,800.
|
51335
|
+
Default: ``28800``
|
51336
|
+
* @min `900`
|
51337
|
+
* @max `28800`
|
51338
|
+
*/
|
51084
51339
|
Phase1LifetimeSeconds?: number;
|
51340
|
+
/**
|
51341
|
+
* One or more Diffie-Hellman group numbers that are permitted for the VPN tunnel for phase 2 IKE negotiations.
|
51342
|
+
Valid values: ``2`` | ``5`` | ``14`` | ``15`` | ``16`` | ``17`` | ``18`` | ``19`` | ``20`` | ``21`` | ``22`` | ``23`` | ``24``
|
51343
|
+
*/
|
51085
51344
|
Phase2DHGroupNumbers?: EC2VPNConnectionPhase2DHGroupNumbersRequestListValue[];
|
51345
|
+
/**
|
51346
|
+
* One or more encryption algorithms that are permitted for the VPN tunnel for phase 2 IKE negotiations.
|
51347
|
+
Valid values: ``AES128`` | ``AES256`` | ``AES128-GCM-16`` | ``AES256-GCM-16``
|
51348
|
+
*/
|
51086
51349
|
Phase2EncryptionAlgorithms?: EC2VPNConnectionPhase2EncryptionAlgorithmsRequestListValue[];
|
51350
|
+
/**
|
51351
|
+
* One or more integrity algorithms that are permitted for the VPN tunnel for phase 2 IKE negotiations.
|
51352
|
+
Valid values: ``SHA1`` | ``SHA2-256`` | ``SHA2-384`` | ``SHA2-512``
|
51353
|
+
*/
|
51087
51354
|
Phase2IntegrityAlgorithms?: EC2VPNConnectionPhase2IntegrityAlgorithmsRequestListValue[];
|
51088
51355
|
/**
|
51089
|
-
|
51090
|
-
|
51091
|
-
|
51356
|
+
* The lifetime for phase 2 of the IKE negotiation, in seconds.
|
51357
|
+
Constraints: A value between 900 and 3,600. The value must be less than the value for ``Phase1LifetimeSeconds``.
|
51358
|
+
Default: ``3600``
|
51359
|
+
* @min `900`
|
51360
|
+
* @max `3600`
|
51361
|
+
*/
|
51092
51362
|
Phase2LifetimeSeconds?: number;
|
51093
51363
|
/**
|
51094
51364
|
* The pre-shared key (PSK) to establish initial authentication between the virtual private gateway and customer gateway.
|
@@ -51096,19 +51366,33 @@ export type EC2VPNConnectionVpnTunnelOptionsSpecification = {
|
|
51096
51366
|
*/
|
51097
51367
|
PreSharedKey?: string;
|
51098
51368
|
/**
|
51099
|
-
|
51100
|
-
|
51101
|
-
|
51369
|
+
* The percentage of the rekey window (determined by ``RekeyMarginTimeSeconds``) during which the rekey time is randomly selected.
|
51370
|
+
Constraints: A value between 0 and 100.
|
51371
|
+
Default: ``100``
|
51372
|
+
* @min `0`
|
51373
|
+
* @max `100`
|
51374
|
+
*/
|
51102
51375
|
RekeyFuzzPercentage?: number;
|
51103
51376
|
/**
|
51104
|
-
|
51105
|
-
|
51377
|
+
* The margin time, in seconds, before the phase 2 lifetime expires, during which the AWS side of the VPN connection performs an IKE rekey. The exact time of the rekey is randomly selected based on the value for ``RekeyFuzzPercentage``.
|
51378
|
+
Constraints: A value between 60 and half of ``Phase2LifetimeSeconds``.
|
51379
|
+
Default: ``270``
|
51380
|
+
* @min `60`
|
51381
|
+
*/
|
51106
51382
|
RekeyMarginTimeSeconds?: number;
|
51107
51383
|
/**
|
51108
|
-
|
51109
|
-
|
51110
|
-
|
51384
|
+
* The number of packets in an IKE replay window.
|
51385
|
+
Constraints: A value between 64 and 2048.
|
51386
|
+
Default: ``1024``
|
51387
|
+
* @min `64`
|
51388
|
+
* @max `2048`
|
51389
|
+
*/
|
51111
51390
|
ReplayWindowSize?: number;
|
51391
|
+
/**
|
51392
|
+
* The action to take when the establishing the tunnel for the VPN connection. By default, your customer gateway device must initiate the IKE negotiation and bring up the tunnel. Specify ``start`` for AWS to initiate the IKE negotiation.
|
51393
|
+
Valid Values: ``add`` | ``start``
|
51394
|
+
Default: ``add``
|
51395
|
+
*/
|
51112
51396
|
StartupAction?: "add" | "start";
|
51113
51397
|
/**
|
51114
51398
|
* The range of inside IP addresses for the tunnel. Any specified CIDR blocks must be unique across all VPN connections that use the same virtual private gateway.
|
@@ -51122,6 +51406,10 @@ export type EC2VPNConnectionVpnTunnelOptionsSpecification = {
|
|
51122
51406
|
+ ``169.254.169.252/30``
|
51123
51407
|
*/
|
51124
51408
|
TunnelInsideCidr?: string;
|
51409
|
+
/**
|
51410
|
+
* The range of inside IPv6 addresses for the tunnel. Any specified CIDR blocks must be unique across all VPN connections that use the same transit gateway.
|
51411
|
+
Constraints: A size /126 CIDR block from the local ``fd00::/8`` range.
|
51412
|
+
*/
|
51125
51413
|
TunnelInsideIpv6Cidr?: string;
|
51126
51414
|
};
|
51127
51415
|
/**
|
@@ -55339,6 +55627,10 @@ export type ElastiCacheGlobalReplicationGroupProps = {
|
|
55339
55627
|
* Cache parameter group name to use for the new engine version. This parameter cannot be modified independently.
|
55340
55628
|
*/
|
55341
55629
|
CacheParameterGroupName?: string;
|
55630
|
+
/**
|
55631
|
+
* The engine of the Global Datastore.
|
55632
|
+
*/
|
55633
|
+
Engine?: string;
|
55342
55634
|
/**
|
55343
55635
|
* The engine version of the Global Datastore.
|
55344
55636
|
*/
|
@@ -70442,7 +70734,7 @@ export type ImageBuilderComponentProps = {
|
|
70442
70734
|
/**
|
70443
70735
|
* The platform of the component.
|
70444
70736
|
*/
|
70445
|
-
Platform: "Windows" | "Linux";
|
70737
|
+
Platform: "Windows" | "Linux" | "macOS";
|
70446
70738
|
/**
|
70447
70739
|
* The operating system (OS) version supported by the component.
|
70448
70740
|
*/
|
@@ -71419,6 +71711,10 @@ export type ImageBuilderInfrastructureConfigurationProps = {
|
|
71419
71711
|
* The name of the infrastructure configuration.
|
71420
71712
|
*/
|
71421
71713
|
Name: string;
|
71714
|
+
/**
|
71715
|
+
* The placement option settings for the infrastructure configuration.
|
71716
|
+
*/
|
71717
|
+
Placement?: ImageBuilderInfrastructureConfigurationPlacement;
|
71422
71718
|
/**
|
71423
71719
|
* The tags attached to the resource created by Image Builder.
|
71424
71720
|
*/
|
@@ -71480,6 +71776,29 @@ export type ImageBuilderInfrastructureConfigurationLogging = {
|
|
71480
71776
|
*/
|
71481
71777
|
S3Logs?: ImageBuilderInfrastructureConfigurationS3Logs;
|
71482
71778
|
};
|
71779
|
+
/**
|
71780
|
+
* Type definition for `AWS::ImageBuilder::InfrastructureConfiguration.Placement`.
|
71781
|
+
* The placement options
|
71782
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-infrastructureconfiguration-placement.html}
|
71783
|
+
*/
|
71784
|
+
export type ImageBuilderInfrastructureConfigurationPlacement = {
|
71785
|
+
/**
|
71786
|
+
* AvailabilityZone
|
71787
|
+
*/
|
71788
|
+
AvailabilityZone?: string;
|
71789
|
+
/**
|
71790
|
+
* HostId
|
71791
|
+
*/
|
71792
|
+
HostId?: string;
|
71793
|
+
/**
|
71794
|
+
* HostResourceGroupArn
|
71795
|
+
*/
|
71796
|
+
HostResourceGroupArn?: string;
|
71797
|
+
/**
|
71798
|
+
* Tenancy
|
71799
|
+
*/
|
71800
|
+
Tenancy?: "default" | "dedicated" | "host";
|
71801
|
+
};
|
71483
71802
|
/**
|
71484
71803
|
* Type definition for `AWS::ImageBuilder::InfrastructureConfiguration.S3Logs`.
|
71485
71804
|
* The S3 path in which to store the logs.
|
@@ -81444,14 +81763,14 @@ export type IVSEncoderConfigurationProps = {
|
|
81444
81763
|
*/
|
81445
81764
|
Framerate?: number;
|
81446
81765
|
/**
|
81447
|
-
* 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.
|
81448
|
-
* @min `
|
81766
|
+
* 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.
|
81767
|
+
* @min `2`
|
81449
81768
|
* @max `1920`
|
81450
81769
|
*/
|
81451
81770
|
Height?: number;
|
81452
81771
|
/**
|
81453
|
-
* 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.
|
81454
|
-
* @min `
|
81772
|
+
* 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.
|
81773
|
+
* @min `2`
|
81455
81774
|
* @max `1920`
|
81456
81775
|
*/
|
81457
81776
|
Width?: number;
|
@@ -144490,8 +144809,8 @@ export type RefactorSpacesEnvironmentProps = {
|
|
144490
144809
|
* @maxLength `63`
|
144491
144810
|
* @pattern `^(?!env-)[a-zA-Z0-9]+[a-zA-Z0-9-_ ]+$`
|
144492
144811
|
*/
|
144493
|
-
Name
|
144494
|
-
NetworkFabricType
|
144812
|
+
Name?: string;
|
144813
|
+
NetworkFabricType?: RefactorSpacesEnvironmentNetworkFabricType;
|
144495
144814
|
/**
|
144496
144815
|
* Metadata that you can assign to help organize the frameworks that you create. Each tag is a key-value pair.
|
144497
144816
|
*/
|
@@ -149618,32 +149937,41 @@ export type S3BucketS3KeyFilter = {
|
|
149618
149937
|
};
|
149619
149938
|
/**
|
149620
149939
|
* Type definition for `AWS::S3::Bucket.ServerSideEncryptionByDefault`.
|
149621
|
-
* 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.
|
149622
|
-
|
149940
|
+
* 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).
|
149941
|
+
+ *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.
|
149942
|
+
+ *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.
|
149943
|
+
+ *Directory buckets* - For directory buckets, there are only two supported options for server-side encryption: SSE-S3 and SSE-KMS.
|
149623
149944
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionbydefault.html}
|
149624
149945
|
*/
|
149625
149946
|
export type S3BucketServerSideEncryptionByDefault = {
|
149626
149947
|
/**
|
149627
|
-
* AWS Key Management Service (KMS) customer
|
149628
|
-
|
149948
|
+
* AWS Key Management Service (KMS) customer managed key ID to use for the default encryption.
|
149949
|
+
+ *General purpose buckets* - This parameter is allowed if and only if ``SSEAlgorithm`` is set to ``aws:kms`` or ``aws:kms:dsse``.
|
149950
|
+
+ *Directory buckets* - This parameter is allowed if and only if ``SSEAlgorithm`` is set to ``aws:kms``.
|
149951
|
+
|
149952
|
+
You can specify the key ID, key alias, or the Amazon Resource Name (ARN) of the KMS key.
|
149629
149953
|
+ Key ID: ``1234abcd-12ab-34cd-56ef-1234567890ab``
|
149630
149954
|
+ Key ARN: ``arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab``
|
149631
149955
|
+ Key Alias: ``alias/alias-name``
|
149632
149956
|
|
149633
|
-
If you
|
149634
|
-
|
149635
|
-
|
149957
|
+
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).
|
149958
|
+
+ *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.
|
149959
|
+
+ *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.
|
149960
|
+
|
149961
|
+
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*.
|
149636
149962
|
*/
|
149637
149963
|
KMSMasterKeyID?: string;
|
149638
149964
|
/**
|
149639
|
-
|
149640
|
-
|
149965
|
+
* Server-side encryption algorithm to use for the default encryption.
|
149966
|
+
For directory buckets, there are only two supported values for server-side encryption: ``AES256`` and ``aws:kms``.
|
149967
|
+
*/
|
149641
149968
|
SSEAlgorithm: "aws:kms" | "AES256" | "aws:kms:dsse";
|
149642
149969
|
};
|
149643
149970
|
/**
|
149644
149971
|
* Type definition for `AWS::S3::Bucket.ServerSideEncryptionRule`.
|
149645
149972
|
* Specifies the default server-side encryption configuration.
|
149646
|
-
|
149973
|
+
+ *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.
|
149974
|
+
+ *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.
|
149647
149975
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionrule.html}
|
149648
149976
|
*/
|
149649
149977
|
export type S3BucketServerSideEncryptionRule = {
|
@@ -176077,6 +176405,7 @@ export interface ResourceTypes {
|
|
176077
176405
|
"AWS::Backup::BackupSelection": BackupBackupSelectionProps;
|
176078
176406
|
"AWS::Backup::BackupVault": BackupBackupVaultProps;
|
176079
176407
|
"AWS::Backup::Framework": BackupFrameworkProps;
|
176408
|
+
"AWS::Backup::LogicallyAirGappedBackupVault": BackupLogicallyAirGappedBackupVaultProps;
|
176080
176409
|
"AWS::Backup::ReportPlan": BackupReportPlanProps;
|
176081
176410
|
"AWS::Backup::RestoreTestingPlan": BackupRestoreTestingPlanProps;
|
176082
176411
|
"AWS::Backup::RestoreTestingSelection": BackupRestoreTestingSelectionProps;
|
@@ -177376,6 +177705,7 @@ export interface AttributeTypes {
|
|
177376
177705
|
"AWS::Backup::BackupSelection": BackupBackupSelectionAttributes;
|
177377
177706
|
"AWS::Backup::BackupVault": BackupBackupVaultAttributes;
|
177378
177707
|
"AWS::Backup::Framework": BackupFrameworkAttributes;
|
177708
|
+
"AWS::Backup::LogicallyAirGappedBackupVault": BackupLogicallyAirGappedBackupVaultAttributes;
|
177379
177709
|
"AWS::Backup::ReportPlan": BackupReportPlanAttributes;
|
177380
177710
|
"AWS::Backup::RestoreTestingPlan": BackupRestoreTestingPlanAttributes;
|
177381
177711
|
"AWS::BackupGateway::Hypervisor": BackupGatewayHypervisorAttributes;
|
@@ -177480,7 +177810,6 @@ export interface AttributeTypes {
|
|
177480
177810
|
"AWS::Cognito::UserPool": CognitoUserPoolAttributes;
|
177481
177811
|
"AWS::Cognito::UserPoolClient": CognitoUserPoolClientAttributes;
|
177482
177812
|
"AWS::Cognito::UserPoolDomain": CognitoUserPoolDomainAttributes;
|
177483
|
-
"AWS::Cognito::UserPoolIdentityProvider": CognitoUserPoolIdentityProviderAttributes;
|
177484
177813
|
"AWS::Comprehend::DocumentClassifier": ComprehendDocumentClassifierAttributes;
|
177485
177814
|
"AWS::Comprehend::Flywheel": ComprehendFlywheelAttributes;
|
177486
177815
|
"AWS::Config::AggregationAuthorization": ConfigAggregationAuthorizationAttributes;
|
@@ -178562,6 +178891,7 @@ export declare const ResourceType: {
|
|
178562
178891
|
readonly BackupBackupSelection: "AWS::Backup::BackupSelection";
|
178563
178892
|
readonly BackupBackupVault: "AWS::Backup::BackupVault";
|
178564
178893
|
readonly BackupFramework: "AWS::Backup::Framework";
|
178894
|
+
readonly BackupLogicallyAirGappedBackupVault: "AWS::Backup::LogicallyAirGappedBackupVault";
|
178565
178895
|
readonly BackupReportPlan: "AWS::Backup::ReportPlan";
|
178566
178896
|
readonly BackupRestoreTestingPlan: "AWS::Backup::RestoreTestingPlan";
|
178567
178897
|
readonly BackupRestoreTestingSelection: "AWS::Backup::RestoreTestingSelection";
|