@awboost/cfntypes 0.100.26 → 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
- EnvironmentVariables?: Record<string, any>;
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
- Id: string;
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, any>;
29880
+ AttributeMapping?: Record<string, string>;
29697
29881
  IdpIdentifiers?: string[];
29698
- ProviderDetails?: Record<string, any>;
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}
@@ -42996,6 +43173,7 @@ export type EC2CapacityReservationProps = {
42996
43173
  PlacementGroupArn?: string;
42997
43174
  TagSpecifications?: EC2CapacityReservationTagSpecification[];
42998
43175
  Tenancy?: string;
43176
+ UnusedReservationBillingOwnerId?: string;
42999
43177
  };
43000
43178
  /**
43001
43179
  * Attribute type definition for `AWS::EC2::CapacityReservation`.
@@ -50709,7 +50887,8 @@ export type EC2VPCDHCPOptionsAssociationProps = {
50709
50887
  export type EC2VPCEndpointProps = {
50710
50888
  /**
50711
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.
50712
- For CloudFormation templates in YAML, you can provide the policy in JSON or YAML format. CFNlong converts YAML policies to JSON format before calling the API to create or modify the VPC endpoint.
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":"*" }] }'``
50713
50892
  */
50714
50893
  PolicyDocument?: string | Record<string, any>;
50715
50894
  /**
@@ -50981,60 +51160,100 @@ export type EC2VPNConnectionAttributes = {
50981
51160
  };
50982
51161
  /**
50983
51162
  * Type definition for `AWS::EC2::VPNConnection.CloudwatchLogOptionsSpecification`.
51163
+ * Options for sending VPN tunnel logs to CloudWatch.
50984
51164
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-cloudwatchlogoptionsspecification.html}
50985
51165
  */
50986
51166
  export type EC2VPNConnectionCloudwatchLogOptionsSpecification = {
51167
+ /**
51168
+ * Enable or disable VPN tunnel logging feature. Default value is ``False``.
51169
+ Valid values: ``True`` | ``False``
51170
+ */
50987
51171
  LogEnabled?: boolean;
51172
+ /**
51173
+ * The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.
51174
+ */
50988
51175
  LogGroupArn?: string;
51176
+ /**
51177
+ * Set log format. Default format is ``json``.
51178
+ Valid values: ``json`` | ``text``
51179
+ */
50989
51180
  LogOutputFormat?: "json" | "text";
50990
51181
  };
50991
51182
  /**
50992
51183
  * Type definition for `AWS::EC2::VPNConnection.IKEVersionsRequestListValue`.
51184
+ * The IKE version that is permitted for the VPN tunnel.
50993
51185
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-ikeversionsrequestlistvalue.html}
50994
51186
  */
50995
51187
  export type EC2VPNConnectionIKEVersionsRequestListValue = {
51188
+ /**
51189
+ * The IKE version.
51190
+ */
50996
51191
  Value?: "ikev1" | "ikev2";
50997
51192
  };
50998
51193
  /**
50999
51194
  * Type definition for `AWS::EC2::VPNConnection.Phase1DHGroupNumbersRequestListValue`.
51195
+ * Specifies a Diffie-Hellman group number for the VPN tunnel for phase 1 IKE negotiations.
51000
51196
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-phase1dhgroupnumbersrequestlistvalue.html}
51001
51197
  */
51002
51198
  export type EC2VPNConnectionPhase1DHGroupNumbersRequestListValue = {
51199
+ /**
51200
+ * The Diffie-Hellmann group number.
51201
+ */
51003
51202
  Value?: 2 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24;
51004
51203
  };
51005
51204
  /**
51006
51205
  * Type definition for `AWS::EC2::VPNConnection.Phase1EncryptionAlgorithmsRequestListValue`.
51206
+ * Specifies the encryption algorithm for the VPN tunnel for phase 1 IKE negotiations.
51007
51207
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-phase1encryptionalgorithmsrequestlistvalue.html}
51008
51208
  */
51009
51209
  export type EC2VPNConnectionPhase1EncryptionAlgorithmsRequestListValue = {
51210
+ /**
51211
+ * The value for the encryption algorithm.
51212
+ */
51010
51213
  Value?: "AES128" | "AES256" | "AES128-GCM-16" | "AES256-GCM-16";
51011
51214
  };
51012
51215
  /**
51013
51216
  * Type definition for `AWS::EC2::VPNConnection.Phase1IntegrityAlgorithmsRequestListValue`.
51217
+ * Specifies the integrity algorithm for the VPN tunnel for phase 1 IKE negotiations.
51014
51218
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-phase1integrityalgorithmsrequestlistvalue.html}
51015
51219
  */
51016
51220
  export type EC2VPNConnectionPhase1IntegrityAlgorithmsRequestListValue = {
51221
+ /**
51222
+ * The value for the integrity algorithm.
51223
+ */
51017
51224
  Value?: "SHA1" | "SHA2-256" | "SHA2-384" | "SHA2-512";
51018
51225
  };
51019
51226
  /**
51020
51227
  * Type definition for `AWS::EC2::VPNConnection.Phase2DHGroupNumbersRequestListValue`.
51228
+ * Specifies a Diffie-Hellman group number for the VPN tunnel for phase 2 IKE negotiations.
51021
51229
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-phase2dhgroupnumbersrequestlistvalue.html}
51022
51230
  */
51023
51231
  export type EC2VPNConnectionPhase2DHGroupNumbersRequestListValue = {
51232
+ /**
51233
+ * The Diffie-Hellmann group number.
51234
+ */
51024
51235
  Value?: 2 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24;
51025
51236
  };
51026
51237
  /**
51027
51238
  * Type definition for `AWS::EC2::VPNConnection.Phase2EncryptionAlgorithmsRequestListValue`.
51239
+ * Specifies the encryption algorithm for the VPN tunnel for phase 2 IKE negotiations.
51028
51240
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-phase2encryptionalgorithmsrequestlistvalue.html}
51029
51241
  */
51030
51242
  export type EC2VPNConnectionPhase2EncryptionAlgorithmsRequestListValue = {
51243
+ /**
51244
+ * The encryption algorithm.
51245
+ */
51031
51246
  Value?: "AES128" | "AES256" | "AES128-GCM-16" | "AES256-GCM-16";
51032
51247
  };
51033
51248
  /**
51034
51249
  * Type definition for `AWS::EC2::VPNConnection.Phase2IntegrityAlgorithmsRequestListValue`.
51250
+ * Specifies the integrity algorithm for the VPN tunnel for phase 2 IKE negotiations.
51035
51251
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-phase2integrityalgorithmsrequestlistvalue.html}
51036
51252
  */
51037
51253
  export type EC2VPNConnectionPhase2IntegrityAlgorithmsRequestListValue = {
51254
+ /**
51255
+ * The integrity algorithm.
51256
+ */
51038
51257
  Value?: "SHA1" | "SHA2-256" | "SHA2-384" | "SHA2-512";
51039
51258
  };
51040
51259
  /**
@@ -51054,9 +51273,13 @@ export type EC2VPNConnectionTag = {
51054
51273
  };
51055
51274
  /**
51056
51275
  * Type definition for `AWS::EC2::VPNConnection.VpnTunnelLogOptionsSpecification`.
51276
+ * Options for logging VPN tunnel activity.
51057
51277
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-vpntunnellogoptionsspecification.html}
51058
51278
  */
51059
51279
  export type EC2VPNConnectionVpnTunnelLogOptionsSpecification = {
51280
+ /**
51281
+ * Options for sending VPN tunnel logs to CloudWatch.
51282
+ */
51060
51283
  CloudwatchLogOptions?: EC2VPNConnectionCloudwatchLogOptionsSpecification;
51061
51284
  };
51062
51285
  /**
@@ -51065,29 +51288,77 @@ export type EC2VPNConnectionVpnTunnelLogOptionsSpecification = {
51065
51288
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-vpntunneloptionsspecification.html}
51066
51289
  */
51067
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
+ */
51068
51296
  DPDTimeoutAction?: "clear" | "none" | "restart";
51069
51297
  /**
51070
- * @min `30`
51071
- */
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
+ */
51072
51303
  DPDTimeoutSeconds?: number;
51304
+ /**
51305
+ * Turn on or off tunnel endpoint lifecycle control feature.
51306
+ */
51073
51307
  EnableTunnelLifecycleControl?: boolean;
51308
+ /**
51309
+ * The IKE versions that are permitted for the VPN tunnel.
51310
+ Valid values: ``ikev1`` | ``ikev2``
51311
+ */
51074
51312
  IKEVersions?: EC2VPNConnectionIKEVersionsRequestListValue[];
51313
+ /**
51314
+ * Options for logging VPN tunnel activity.
51315
+ */
51075
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
+ */
51076
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
+ */
51077
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
+ */
51078
51331
  Phase1IntegrityAlgorithms?: EC2VPNConnectionPhase1IntegrityAlgorithmsRequestListValue[];
51079
51332
  /**
51080
- * @min `900`
51081
- * @max `28800`
51082
- */
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
+ */
51083
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
+ */
51084
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
+ */
51085
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
+ */
51086
51354
  Phase2IntegrityAlgorithms?: EC2VPNConnectionPhase2IntegrityAlgorithmsRequestListValue[];
51087
51355
  /**
51088
- * @min `900`
51089
- * @max `3600`
51090
- */
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
+ */
51091
51362
  Phase2LifetimeSeconds?: number;
51092
51363
  /**
51093
51364
  * The pre-shared key (PSK) to establish initial authentication between the virtual private gateway and customer gateway.
@@ -51095,19 +51366,33 @@ export type EC2VPNConnectionVpnTunnelOptionsSpecification = {
51095
51366
  */
51096
51367
  PreSharedKey?: string;
51097
51368
  /**
51098
- * @min `0`
51099
- * @max `100`
51100
- */
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
+ */
51101
51375
  RekeyFuzzPercentage?: number;
51102
51376
  /**
51103
- * @min `60`
51104
- */
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
+ */
51105
51382
  RekeyMarginTimeSeconds?: number;
51106
51383
  /**
51107
- * @min `64`
51108
- * @max `2048`
51109
- */
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
+ */
51110
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
+ */
51111
51396
  StartupAction?: "add" | "start";
51112
51397
  /**
51113
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.
@@ -51121,6 +51406,10 @@ export type EC2VPNConnectionVpnTunnelOptionsSpecification = {
51121
51406
  + ``169.254.169.252/30``
51122
51407
  */
51123
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
+ */
51124
51413
  TunnelInsideIpv6Cidr?: string;
51125
51414
  };
51126
51415
  /**
@@ -52345,8 +52634,17 @@ export type ECSServiceLogConfiguration = {
52345
52634
  */
52346
52635
  LogDriver?: string;
52347
52636
  /**
52348
- * The configuration options to send to the log driver. 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}}'``
52349
- */
52637
+ * The configuration options to send to the log driver.
52638
+ 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:
52639
+ + 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.
52640
+ To route logs using the ``splunk`` log router, you need to specify a ``splunk-token`` and a ``splunk-url``.
52641
+ 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.
52642
+ 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``.
52643
+ When you export logs to Amazon Kinesis Data Streams, you can specify an AWS Region with ``region`` and a data stream name with ``stream``.
52644
+ 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``.
52645
+ 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.
52646
+ 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}}'``
52647
+ */
52350
52648
  Options?: Record<string, string>;
52351
52649
  /**
52352
52650
  * The secrets to pass to the log configuration. For more information, see [Specifying sensitive data](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data.html) in the *Amazon Elastic Container Service Developer Guide*.
@@ -55329,6 +55627,10 @@ export type ElastiCacheGlobalReplicationGroupProps = {
55329
55627
  * Cache parameter group name to use for the new engine version. This parameter cannot be modified independently.
55330
55628
  */
55331
55629
  CacheParameterGroupName?: string;
55630
+ /**
55631
+ * The engine of the Global Datastore.
55632
+ */
55633
+ Engine?: string;
55332
55634
  /**
55333
55635
  * The engine version of the Global Datastore.
55334
55636
  */
@@ -70432,7 +70734,7 @@ export type ImageBuilderComponentProps = {
70432
70734
  /**
70433
70735
  * The platform of the component.
70434
70736
  */
70435
- Platform: "Windows" | "Linux";
70737
+ Platform: "Windows" | "Linux" | "macOS";
70436
70738
  /**
70437
70739
  * The operating system (OS) version supported by the component.
70438
70740
  */
@@ -71409,6 +71711,10 @@ export type ImageBuilderInfrastructureConfigurationProps = {
71409
71711
  * The name of the infrastructure configuration.
71410
71712
  */
71411
71713
  Name: string;
71714
+ /**
71715
+ * The placement option settings for the infrastructure configuration.
71716
+ */
71717
+ Placement?: ImageBuilderInfrastructureConfigurationPlacement;
71412
71718
  /**
71413
71719
  * The tags attached to the resource created by Image Builder.
71414
71720
  */
@@ -71470,6 +71776,29 @@ export type ImageBuilderInfrastructureConfigurationLogging = {
71470
71776
  */
71471
71777
  S3Logs?: ImageBuilderInfrastructureConfigurationS3Logs;
71472
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
+ };
71473
71802
  /**
71474
71803
  * Type definition for `AWS::ImageBuilder::InfrastructureConfiguration.S3Logs`.
71475
71804
  * The S3 path in which to store the logs.
@@ -81434,14 +81763,14 @@ export type IVSEncoderConfigurationProps = {
81434
81763
  */
81435
81764
  Framerate?: number;
81436
81765
  /**
81437
- * 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.
81438
- * @min `1`
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`
81439
81768
  * @max `1920`
81440
81769
  */
81441
81770
  Height?: number;
81442
81771
  /**
81443
- * 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.
81444
- * @min `1`
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`
81445
81774
  * @max `1920`
81446
81775
  */
81447
81776
  Width?: number;
@@ -102238,6 +102567,10 @@ export type MemoryDBClusterProps = {
102238
102567
  * An optional description of the cluster.
102239
102568
  */
102240
102569
  Description?: string;
102570
+ /**
102571
+ * The engine type used by the cluster.
102572
+ */
102573
+ Engine?: string;
102241
102574
  /**
102242
102575
  * The Redis engine version used by the cluster.
102243
102576
  */
@@ -144476,8 +144809,8 @@ export type RefactorSpacesEnvironmentProps = {
144476
144809
  * @maxLength `63`
144477
144810
  * @pattern `^(?!env-)[a-zA-Z0-9]+[a-zA-Z0-9-_ ]+$`
144478
144811
  */
144479
- Name: string;
144480
- NetworkFabricType: RefactorSpacesEnvironmentNetworkFabricType;
144812
+ Name?: string;
144813
+ NetworkFabricType?: RefactorSpacesEnvironmentNetworkFabricType;
144481
144814
  /**
144482
144815
  * Metadata that you can assign to help organize the frameworks that you create. Each tag is a key-value pair.
144483
144816
  */
@@ -149604,32 +149937,41 @@ export type S3BucketS3KeyFilter = {
149604
149937
  };
149605
149938
  /**
149606
149939
  * Type definition for `AWS::S3::Bucket.ServerSideEncryptionByDefault`.
149607
- * 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. If you don't specify a customer managed key at configuration, Amazon S3 automatically creates an AWS KMS key 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. For more information, see [PUT Bucket encryption](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTencryption.html) in the *Amazon S3 API Reference*.
149608
- 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.
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.
149609
149944
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionbydefault.html}
149610
149945
  */
149611
149946
  export type S3BucketServerSideEncryptionByDefault = {
149612
149947
  /**
149613
- * AWS Key Management Service (KMS) customer AWS KMS key ID to use for the default encryption. This parameter is allowed if and only if ``SSEAlgorithm`` is set to ``aws:kms`` or ``aws:kms:dsse``.
149614
- You can specify the key ID, key alias, or the Amazon Resource Name (ARN) of the KMS key.
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.
149615
149953
  + Key ID: ``1234abcd-12ab-34cd-56ef-1234567890ab``
149616
149954
  + Key ARN: ``arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab``
149617
149955
  + Key Alias: ``alias/alias-name``
149618
149956
 
149619
- If you use a key ID, you can run into a LogDestination undeliverable error when creating a VPC flow log.
149620
- 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).
149621
- 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*.
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*.
149622
149962
  */
149623
149963
  KMSMasterKeyID?: string;
149624
149964
  /**
149625
- * Server-side encryption algorithm to use for the default encryption.
149626
- */
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
+ */
149627
149968
  SSEAlgorithm: "aws:kms" | "AES256" | "aws:kms:dsse";
149628
149969
  };
149629
149970
  /**
149630
149971
  * Type definition for `AWS::S3::Bucket.ServerSideEncryptionRule`.
149631
149972
  * Specifies the default server-side encryption configuration.
149632
- 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.
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.
149633
149975
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionrule.html}
149634
149976
  */
149635
149977
  export type S3BucketServerSideEncryptionRule = {
@@ -176063,6 +176405,7 @@ export interface ResourceTypes {
176063
176405
  "AWS::Backup::BackupSelection": BackupBackupSelectionProps;
176064
176406
  "AWS::Backup::BackupVault": BackupBackupVaultProps;
176065
176407
  "AWS::Backup::Framework": BackupFrameworkProps;
176408
+ "AWS::Backup::LogicallyAirGappedBackupVault": BackupLogicallyAirGappedBackupVaultProps;
176066
176409
  "AWS::Backup::ReportPlan": BackupReportPlanProps;
176067
176410
  "AWS::Backup::RestoreTestingPlan": BackupRestoreTestingPlanProps;
176068
176411
  "AWS::Backup::RestoreTestingSelection": BackupRestoreTestingSelectionProps;
@@ -177362,6 +177705,7 @@ export interface AttributeTypes {
177362
177705
  "AWS::Backup::BackupSelection": BackupBackupSelectionAttributes;
177363
177706
  "AWS::Backup::BackupVault": BackupBackupVaultAttributes;
177364
177707
  "AWS::Backup::Framework": BackupFrameworkAttributes;
177708
+ "AWS::Backup::LogicallyAirGappedBackupVault": BackupLogicallyAirGappedBackupVaultAttributes;
177365
177709
  "AWS::Backup::ReportPlan": BackupReportPlanAttributes;
177366
177710
  "AWS::Backup::RestoreTestingPlan": BackupRestoreTestingPlanAttributes;
177367
177711
  "AWS::BackupGateway::Hypervisor": BackupGatewayHypervisorAttributes;
@@ -177466,7 +177810,6 @@ export interface AttributeTypes {
177466
177810
  "AWS::Cognito::UserPool": CognitoUserPoolAttributes;
177467
177811
  "AWS::Cognito::UserPoolClient": CognitoUserPoolClientAttributes;
177468
177812
  "AWS::Cognito::UserPoolDomain": CognitoUserPoolDomainAttributes;
177469
- "AWS::Cognito::UserPoolIdentityProvider": CognitoUserPoolIdentityProviderAttributes;
177470
177813
  "AWS::Comprehend::DocumentClassifier": ComprehendDocumentClassifierAttributes;
177471
177814
  "AWS::Comprehend::Flywheel": ComprehendFlywheelAttributes;
177472
177815
  "AWS::Config::AggregationAuthorization": ConfigAggregationAuthorizationAttributes;
@@ -178548,6 +178891,7 @@ export declare const ResourceType: {
178548
178891
  readonly BackupBackupSelection: "AWS::Backup::BackupSelection";
178549
178892
  readonly BackupBackupVault: "AWS::Backup::BackupVault";
178550
178893
  readonly BackupFramework: "AWS::Backup::Framework";
178894
+ readonly BackupLogicallyAirGappedBackupVault: "AWS::Backup::LogicallyAirGappedBackupVault";
178551
178895
  readonly BackupReportPlan: "AWS::Backup::ReportPlan";
178552
178896
  readonly BackupRestoreTestingPlan: "AWS::Backup::RestoreTestingPlan";
178553
178897
  readonly BackupRestoreTestingSelection: "AWS::Backup::RestoreTestingSelection";