@awboost/cfntypes 0.100.295 → 0.100.297

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.
@@ -8484,6 +8484,47 @@ export type ApplicationSignalsDiscoveryAttributes = {
8484
8484
  */
8485
8485
  AccountId: string;
8486
8486
  };
8487
+ /**
8488
+ * Resource Type definition for AWS::ApplicationSignals::GroupingConfiguration
8489
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-groupingconfiguration.html}
8490
+ */
8491
+ export type ApplicationSignalsGroupingConfigurationProps = {
8492
+ GroupingAttributeDefinitions: ApplicationSignalsGroupingConfigurationGroupingAttributeDefinition[];
8493
+ };
8494
+ /**
8495
+ * Attribute type definition for `AWS::ApplicationSignals::GroupingConfiguration`.
8496
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-groupingconfiguration.html#aws-resource-applicationsignals-groupingconfiguration-return-values}
8497
+ */
8498
+ export type ApplicationSignalsGroupingConfigurationAttributes = {
8499
+ /**
8500
+ * The identifier for the specified AWS account.
8501
+ * @minLength `12`
8502
+ * @maxLength `12`
8503
+ * @pattern `^[0-9]{12}$`
8504
+ */
8505
+ AccountId: string;
8506
+ UpdatedAt: string;
8507
+ };
8508
+ /**
8509
+ * Type definition for `AWS::ApplicationSignals::GroupingConfiguration.GroupingAttributeDefinition`.
8510
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-groupingconfiguration-groupingattributedefinition.html}
8511
+ */
8512
+ export type ApplicationSignalsGroupingConfigurationGroupingAttributeDefinition = {
8513
+ /**
8514
+ * @minLength `1`
8515
+ * @maxLength `128`
8516
+ */
8517
+ DefaultGroupingValue?: string;
8518
+ /**
8519
+ * @minLength `1`
8520
+ * @maxLength `128`
8521
+ */
8522
+ GroupingName: string;
8523
+ /**
8524
+ * @minLength `1`
8525
+ */
8526
+ GroupingSourceKeys: string[];
8527
+ };
8487
8528
  /**
8488
8529
  * Resource Type definition for AWS::ApplicationSignals::ServiceLevelObjective
8489
8530
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-servicelevelobjective.html}
@@ -13634,6 +13675,7 @@ export type ARCRegionSwitchPlanAttributes = {
13634
13675
  * @pattern `^\d{12}$`
13635
13676
  */
13636
13677
  Owner: string;
13678
+ PlanHealthChecks: string[];
13637
13679
  Route53HealthChecks: {
13638
13680
  HealthCheckIds: string[];
13639
13681
  HostedZoneIds: string[];
@@ -26215,6 +26257,10 @@ export type BedrockAgentCoreBrowserCustomAttributes = {
26215
26257
  * Timestamp when the browser was created.
26216
26258
  */
26217
26259
  CreatedAt: string;
26260
+ /**
26261
+ * The reason for failure if the browser creation or operation failed.
26262
+ */
26263
+ FailureReason: string;
26218
26264
  /**
26219
26265
  * Timestamp when the browser was last updated.
26220
26266
  */
@@ -26234,13 +26280,17 @@ export type BedrockAgentCoreBrowserCustomBrowserNetworkConfiguration = {
26234
26280
  * Network modes supported by browser
26235
26281
  */
26236
26282
  NetworkMode: BedrockAgentCoreBrowserCustomBrowserNetworkMode;
26283
+ /**
26284
+ * Network mode configuration for VPC
26285
+ */
26286
+ VpcConfig?: BedrockAgentCoreBrowserCustomVpcConfig;
26237
26287
  };
26238
26288
  /**
26239
26289
  * Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserNetworkMode`.
26240
26290
  * Network modes supported by browser
26241
26291
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-browsernetworkmode.html}
26242
26292
  */
26243
- export type BedrockAgentCoreBrowserCustomBrowserNetworkMode = "PUBLIC";
26293
+ export type BedrockAgentCoreBrowserCustomBrowserNetworkMode = "PUBLIC" | "VPC";
26244
26294
  /**
26245
26295
  * Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserStatus`.
26246
26296
  * Status of browser
@@ -26280,6 +26330,25 @@ export type BedrockAgentCoreBrowserCustomS3Location = {
26280
26330
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-tagsmap.html}
26281
26331
  */
26282
26332
  export type BedrockAgentCoreBrowserCustomTagsMap = Record<string, string>;
26333
+ /**
26334
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.VpcConfig`.
26335
+ * Network mode configuration for VPC
26336
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-vpcconfig.html}
26337
+ */
26338
+ export type BedrockAgentCoreBrowserCustomVpcConfig = {
26339
+ /**
26340
+ * Security groups for VPC
26341
+ * @minLength `1`
26342
+ * @maxLength `16`
26343
+ */
26344
+ SecurityGroups: string[];
26345
+ /**
26346
+ * Subnets for VPC
26347
+ * @minLength `1`
26348
+ * @maxLength `16`
26349
+ */
26350
+ Subnets: string[];
26351
+ };
26283
26352
  /**
26284
26353
  * Resource definition for AWS::BedrockAgentCore::CodeInterpreterCustom
26285
26354
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html}
@@ -26326,6 +26395,10 @@ export type BedrockAgentCoreCodeInterpreterCustomAttributes = {
26326
26395
  * Timestamp when the code interpreter was created.
26327
26396
  */
26328
26397
  CreatedAt: string;
26398
+ /**
26399
+ * The reason for failure if the code interpreter creation or operation failed.
26400
+ */
26401
+ FailureReason: string;
26329
26402
  /**
26330
26403
  * Timestamp when the code interpreter was last updated.
26331
26404
  */
@@ -26345,13 +26418,17 @@ export type BedrockAgentCoreCodeInterpreterCustomCodeInterpreterNetworkConfigura
26345
26418
  * Network modes supported by code interpreter
26346
26419
  */
26347
26420
  NetworkMode: BedrockAgentCoreCodeInterpreterCustomCodeInterpreterNetworkMode;
26421
+ /**
26422
+ * Network mode configuration for VPC
26423
+ */
26424
+ VpcConfig?: BedrockAgentCoreCodeInterpreterCustomVpcConfig;
26348
26425
  };
26349
26426
  /**
26350
26427
  * Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.CodeInterpreterNetworkMode`.
26351
26428
  * Network modes supported by code interpreter
26352
26429
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-codeinterpreternetworkmode.html}
26353
26430
  */
26354
- export type BedrockAgentCoreCodeInterpreterCustomCodeInterpreterNetworkMode = "PUBLIC" | "SANDBOX";
26431
+ export type BedrockAgentCoreCodeInterpreterCustomCodeInterpreterNetworkMode = "PUBLIC" | "SANDBOX" | "VPC";
26355
26432
  /**
26356
26433
  * Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.CodeInterpreterStatus`.
26357
26434
  * Status of Code interpreter
@@ -26364,6 +26441,390 @@ export type BedrockAgentCoreCodeInterpreterCustomCodeInterpreterStatus = "CREATI
26364
26441
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-tagsmap.html}
26365
26442
  */
26366
26443
  export type BedrockAgentCoreCodeInterpreterCustomTagsMap = Record<string, string>;
26444
+ /**
26445
+ * Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.VpcConfig`.
26446
+ * Network mode configuration for VPC
26447
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-vpcconfig.html}
26448
+ */
26449
+ export type BedrockAgentCoreCodeInterpreterCustomVpcConfig = {
26450
+ /**
26451
+ * Security groups for VPC
26452
+ * @minLength `1`
26453
+ * @maxLength `16`
26454
+ */
26455
+ SecurityGroups: string[];
26456
+ /**
26457
+ * Subnets for VPC
26458
+ * @minLength `1`
26459
+ * @maxLength `16`
26460
+ */
26461
+ Subnets: string[];
26462
+ };
26463
+ /**
26464
+ * Definition of AWS::BedrockAgentCore::Gateway Resource Type
26465
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gateway.html}
26466
+ */
26467
+ export type BedrockAgentCoreGatewayProps = {
26468
+ AuthorizerConfiguration?: BedrockAgentCoreGatewayAuthorizerConfiguration;
26469
+ AuthorizerType: BedrockAgentCoreGatewayAuthorizerType;
26470
+ /**
26471
+ * @minLength `1`
26472
+ * @maxLength `200`
26473
+ */
26474
+ Description?: string;
26475
+ ExceptionLevel?: BedrockAgentCoreGatewayExceptionLevel;
26476
+ /**
26477
+ * @minLength `1`
26478
+ * @maxLength `2048`
26479
+ * @pattern `^arn:aws(|-cn|-us-gov):kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}$`
26480
+ */
26481
+ KmsKeyArn?: string;
26482
+ /**
26483
+ * @pattern `^([0-9a-zA-Z][-]?){1,100}$`
26484
+ */
26485
+ Name: string;
26486
+ ProtocolConfiguration?: BedrockAgentCoreGatewayGatewayProtocolConfiguration;
26487
+ ProtocolType: BedrockAgentCoreGatewayGatewayProtocolType;
26488
+ /**
26489
+ * @minLength `1`
26490
+ * @maxLength `2048`
26491
+ * @pattern `^arn:aws(-[^:]+)?:iam::([0-9]{12})?:role/.+$`
26492
+ */
26493
+ RoleArn: string;
26494
+ Tags?: BedrockAgentCoreGatewayTagsMap;
26495
+ };
26496
+ /**
26497
+ * Attribute type definition for `AWS::BedrockAgentCore::Gateway`.
26498
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gateway.html#aws-resource-bedrockagentcore-gateway-return-values}
26499
+ */
26500
+ export type BedrockAgentCoreGatewayAttributes = {
26501
+ CreatedAt: string;
26502
+ /**
26503
+ * @pattern `^arn:aws(|-cn|-us-gov):bedrock-agentcore:[a-z0-9-]{1,20}:[0-9]{12}:gateway/([0-9a-z][-]?){1,100}-[a-z0-9]{10}$`
26504
+ */
26505
+ GatewayArn: string;
26506
+ /**
26507
+ * @pattern `^([0-9a-z][-]?){1,100}-[0-9a-z]{10}$`
26508
+ */
26509
+ GatewayIdentifier: string;
26510
+ /**
26511
+ * @minLength `1`
26512
+ * @maxLength `1024`
26513
+ */
26514
+ GatewayUrl: string;
26515
+ Status: BedrockAgentCoreGatewayGatewayStatus;
26516
+ /**
26517
+ * @maxLength `100`
26518
+ */
26519
+ StatusReasons: string[];
26520
+ UpdatedAt: string;
26521
+ WorkloadIdentityDetails: {
26522
+ /**
26523
+ * @minLength `1`
26524
+ * @maxLength `1024`
26525
+ */
26526
+ WorkloadIdentityArn: string;
26527
+ };
26528
+ };
26529
+ /**
26530
+ * Type definition for `AWS::BedrockAgentCore::Gateway.AuthorizerConfiguration`.
26531
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-authorizerconfiguration.html}
26532
+ */
26533
+ export type BedrockAgentCoreGatewayAuthorizerConfiguration = {
26534
+ CustomJWTAuthorizer: BedrockAgentCoreGatewayCustomJWTAuthorizerConfiguration;
26535
+ };
26536
+ /**
26537
+ * Type definition for `AWS::BedrockAgentCore::Gateway.AuthorizerType`.
26538
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-authorizertype.html}
26539
+ */
26540
+ export type BedrockAgentCoreGatewayAuthorizerType = "CUSTOM_JWT" | "AWS_IAM";
26541
+ /**
26542
+ * Type definition for `AWS::BedrockAgentCore::Gateway.CustomJWTAuthorizerConfiguration`.
26543
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customjwtauthorizerconfiguration.html}
26544
+ */
26545
+ export type BedrockAgentCoreGatewayCustomJWTAuthorizerConfiguration = {
26546
+ /**
26547
+ * @minLength `1`
26548
+ */
26549
+ AllowedAudience?: string[];
26550
+ /**
26551
+ * @minLength `1`
26552
+ */
26553
+ AllowedClients?: string[];
26554
+ /**
26555
+ * @pattern `^.+/\.well-known/openid-configuration$`
26556
+ */
26557
+ DiscoveryUrl: string;
26558
+ };
26559
+ /**
26560
+ * Type definition for `AWS::BedrockAgentCore::Gateway.ExceptionLevel`.
26561
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-exceptionlevel.html}
26562
+ */
26563
+ export type BedrockAgentCoreGatewayExceptionLevel = "DEBUG";
26564
+ /**
26565
+ * Type definition for `AWS::BedrockAgentCore::Gateway.GatewayProtocolConfiguration`.
26566
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayprotocolconfiguration.html}
26567
+ */
26568
+ export type BedrockAgentCoreGatewayGatewayProtocolConfiguration = {
26569
+ Mcp: BedrockAgentCoreGatewayMCPGatewayConfiguration;
26570
+ };
26571
+ /**
26572
+ * Type definition for `AWS::BedrockAgentCore::Gateway.GatewayProtocolType`.
26573
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayprotocoltype.html}
26574
+ */
26575
+ export type BedrockAgentCoreGatewayGatewayProtocolType = "MCP";
26576
+ /**
26577
+ * Type definition for `AWS::BedrockAgentCore::Gateway.GatewayStatus`.
26578
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewaystatus.html}
26579
+ */
26580
+ export type BedrockAgentCoreGatewayGatewayStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED";
26581
+ /**
26582
+ * Type definition for `AWS::BedrockAgentCore::Gateway.MCPGatewayConfiguration`.
26583
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-mcpgatewayconfiguration.html}
26584
+ */
26585
+ export type BedrockAgentCoreGatewayMCPGatewayConfiguration = {
26586
+ /**
26587
+ * @minLength `1`
26588
+ * @maxLength `2048`
26589
+ */
26590
+ Instructions?: string;
26591
+ SearchType?: BedrockAgentCoreGatewaySearchType;
26592
+ SupportedVersions?: string[];
26593
+ };
26594
+ /**
26595
+ * Type definition for `AWS::BedrockAgentCore::Gateway.SearchType`.
26596
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-searchtype.html}
26597
+ */
26598
+ export type BedrockAgentCoreGatewaySearchType = "SEMANTIC";
26599
+ /**
26600
+ * Type definition for `AWS::BedrockAgentCore::Gateway.TagsMap`.
26601
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-tagsmap.html}
26602
+ */
26603
+ export type BedrockAgentCoreGatewayTagsMap = Record<string, string>;
26604
+ /**
26605
+ * Type definition for `AWS::BedrockAgentCore::Gateway.WorkloadIdentityDetails`.
26606
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-workloadidentitydetails.html}
26607
+ */
26608
+ export type BedrockAgentCoreGatewayWorkloadIdentityDetails = {
26609
+ /**
26610
+ * @minLength `1`
26611
+ * @maxLength `1024`
26612
+ */
26613
+ WorkloadIdentityArn: string;
26614
+ };
26615
+ /**
26616
+ * Definition of AWS::BedrockAgentCore::GatewayTarget Resource Type
26617
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gatewaytarget.html}
26618
+ */
26619
+ export type BedrockAgentCoreGatewayTargetProps = {
26620
+ /**
26621
+ * @minLength `1`
26622
+ * @maxLength `1`
26623
+ */
26624
+ CredentialProviderConfigurations: BedrockAgentCoreGatewayTargetCredentialProviderConfiguration[];
26625
+ /**
26626
+ * @minLength `1`
26627
+ * @maxLength `200`
26628
+ */
26629
+ Description?: string;
26630
+ /**
26631
+ * @pattern `^([0-9a-z][-]?){1,100}-[0-9a-z]{10}$`
26632
+ */
26633
+ GatewayIdentifier?: string;
26634
+ /**
26635
+ * @pattern `^([0-9a-zA-Z][-]?){1,100}$`
26636
+ */
26637
+ Name: string;
26638
+ TargetConfiguration: BedrockAgentCoreGatewayTargetTargetConfiguration;
26639
+ };
26640
+ /**
26641
+ * Attribute type definition for `AWS::BedrockAgentCore::GatewayTarget`.
26642
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gatewaytarget.html#aws-resource-bedrockagentcore-gatewaytarget-return-values}
26643
+ */
26644
+ export type BedrockAgentCoreGatewayTargetAttributes = {
26645
+ CreatedAt: string;
26646
+ /**
26647
+ * @pattern `^arn:aws(|-cn|-us-gov):bedrock-agentcore:[a-z0-9-]{1,20}:[0-9]{12}:gateway/([0-9a-z][-]?){1,100}-[a-z0-9]{10}$`
26648
+ */
26649
+ GatewayArn: string;
26650
+ Status: BedrockAgentCoreGatewayTargetTargetStatus;
26651
+ /**
26652
+ * @maxLength `100`
26653
+ */
26654
+ StatusReasons: string[];
26655
+ /**
26656
+ * @pattern `^[0-9a-zA-Z]{10}$`
26657
+ */
26658
+ TargetId: string;
26659
+ UpdatedAt: string;
26660
+ };
26661
+ /**
26662
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiKeyCredentialLocation`.
26663
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apikeycredentiallocation.html}
26664
+ */
26665
+ export type BedrockAgentCoreGatewayTargetApiKeyCredentialLocation = "HEADER" | "QUERY_PARAMETER";
26666
+ /**
26667
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiKeyCredentialProvider`.
26668
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apikeycredentialprovider.html}
26669
+ */
26670
+ export type BedrockAgentCoreGatewayTargetApiKeyCredentialProvider = {
26671
+ CredentialLocation?: BedrockAgentCoreGatewayTargetApiKeyCredentialLocation;
26672
+ /**
26673
+ * @minLength `1`
26674
+ * @maxLength `64`
26675
+ */
26676
+ CredentialParameterName?: string;
26677
+ /**
26678
+ * @minLength `1`
26679
+ * @maxLength `64`
26680
+ */
26681
+ CredentialPrefix?: string;
26682
+ /**
26683
+ * @pattern `^arn:([^:]*):([^:]*):([^:]*):([0-9]{12})?:(.+)$`
26684
+ */
26685
+ ProviderArn: string;
26686
+ };
26687
+ /**
26688
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiSchemaConfiguration`.
26689
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apischemaconfiguration.html}
26690
+ */
26691
+ export type BedrockAgentCoreGatewayTargetApiSchemaConfiguration = {
26692
+ S3: BedrockAgentCoreGatewayTargetS3Configuration;
26693
+ } | {
26694
+ InlinePayload: string;
26695
+ };
26696
+ /**
26697
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.CredentialProvider`.
26698
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-credentialprovider.html}
26699
+ */
26700
+ export type BedrockAgentCoreGatewayTargetCredentialProvider = {
26701
+ OauthCredentialProvider: BedrockAgentCoreGatewayTargetOAuthCredentialProvider;
26702
+ } | {
26703
+ ApiKeyCredentialProvider: BedrockAgentCoreGatewayTargetApiKeyCredentialProvider;
26704
+ };
26705
+ /**
26706
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.CredentialProviderConfiguration`.
26707
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-credentialproviderconfiguration.html}
26708
+ */
26709
+ export type BedrockAgentCoreGatewayTargetCredentialProviderConfiguration = {
26710
+ CredentialProvider?: BedrockAgentCoreGatewayTargetCredentialProvider;
26711
+ CredentialProviderType: BedrockAgentCoreGatewayTargetCredentialProviderType;
26712
+ };
26713
+ /**
26714
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.CredentialProviderType`.
26715
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-credentialprovidertype.html}
26716
+ */
26717
+ export type BedrockAgentCoreGatewayTargetCredentialProviderType = "GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY";
26718
+ /**
26719
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.McpLambdaTargetConfiguration`.
26720
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-mcplambdatargetconfiguration.html}
26721
+ */
26722
+ export type BedrockAgentCoreGatewayTargetMcpLambdaTargetConfiguration = {
26723
+ /**
26724
+ * @minLength `1`
26725
+ * @maxLength `170`
26726
+ * @pattern `^arn:(aws[a-zA-Z-]*)?:lambda:([a-z]{2}(-gov)?-[a-z]+-\d{1}):(\d{12}):function:([a-zA-Z0-9-_.]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
26727
+ */
26728
+ LambdaArn: string;
26729
+ ToolSchema: BedrockAgentCoreGatewayTargetToolSchema;
26730
+ };
26731
+ /**
26732
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.McpTargetConfiguration`.
26733
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-mcptargetconfiguration.html}
26734
+ */
26735
+ export type BedrockAgentCoreGatewayTargetMcpTargetConfiguration = {
26736
+ OpenApiSchema: BedrockAgentCoreGatewayTargetApiSchemaConfiguration;
26737
+ } | {
26738
+ SmithyModel: BedrockAgentCoreGatewayTargetApiSchemaConfiguration;
26739
+ } | {
26740
+ Lambda: BedrockAgentCoreGatewayTargetMcpLambdaTargetConfiguration;
26741
+ };
26742
+ /**
26743
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.OAuthCredentialProvider`.
26744
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-oauthcredentialprovider.html}
26745
+ */
26746
+ export type BedrockAgentCoreGatewayTargetOAuthCredentialProvider = {
26747
+ CustomParameters?: BedrockAgentCoreGatewayTargetOAuthCustomParameters;
26748
+ /**
26749
+ * @pattern `^arn:([^:]*):([^:]*):([^:]*):([0-9]{12})?:(.+)$`
26750
+ */
26751
+ ProviderArn: string;
26752
+ /**
26753
+ * @maxLength `100`
26754
+ */
26755
+ Scopes: string[];
26756
+ };
26757
+ /**
26758
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.OAuthCustomParameters`.
26759
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-oauthcustomparameters.html}
26760
+ */
26761
+ export type BedrockAgentCoreGatewayTargetOAuthCustomParameters = Record<string, string>;
26762
+ /**
26763
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.S3Configuration`.
26764
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-s3configuration.html}
26765
+ */
26766
+ export type BedrockAgentCoreGatewayTargetS3Configuration = {
26767
+ /**
26768
+ * @pattern `^[0-9]{12}$`
26769
+ */
26770
+ BucketOwnerAccountId?: string;
26771
+ /**
26772
+ * @pattern `^s3://.{1,2043}$`
26773
+ */
26774
+ Uri?: string;
26775
+ };
26776
+ /**
26777
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.SchemaDefinition`.
26778
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-schemadefinition.html}
26779
+ */
26780
+ export type BedrockAgentCoreGatewayTargetSchemaDefinition = {
26781
+ Description?: string;
26782
+ Items?: BedrockAgentCoreGatewayTargetSchemaDefinition;
26783
+ Properties?: BedrockAgentCoreGatewayTargetSchemaProperties;
26784
+ Required?: string[];
26785
+ Type: BedrockAgentCoreGatewayTargetSchemaType;
26786
+ };
26787
+ /**
26788
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.SchemaProperties`.
26789
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-schemaproperties.html}
26790
+ */
26791
+ export type BedrockAgentCoreGatewayTargetSchemaProperties = Record<string, BedrockAgentCoreGatewayTargetSchemaDefinition>;
26792
+ /**
26793
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.SchemaType`.
26794
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-schematype.html}
26795
+ */
26796
+ export type BedrockAgentCoreGatewayTargetSchemaType = "string" | "number" | "object" | "array" | "boolean" | "integer";
26797
+ /**
26798
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.TargetConfiguration`.
26799
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-targetconfiguration.html}
26800
+ */
26801
+ export type BedrockAgentCoreGatewayTargetTargetConfiguration = {
26802
+ Mcp: BedrockAgentCoreGatewayTargetMcpTargetConfiguration;
26803
+ };
26804
+ /**
26805
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.TargetStatus`.
26806
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-targetstatus.html}
26807
+ */
26808
+ export type BedrockAgentCoreGatewayTargetTargetStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED";
26809
+ /**
26810
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.ToolDefinition`.
26811
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-tooldefinition.html}
26812
+ */
26813
+ export type BedrockAgentCoreGatewayTargetToolDefinition = {
26814
+ Description: string;
26815
+ InputSchema: BedrockAgentCoreGatewayTargetSchemaDefinition;
26816
+ Name: string;
26817
+ OutputSchema?: BedrockAgentCoreGatewayTargetSchemaDefinition;
26818
+ };
26819
+ /**
26820
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.ToolSchema`.
26821
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-toolschema.html}
26822
+ */
26823
+ export type BedrockAgentCoreGatewayTargetToolSchema = {
26824
+ S3: BedrockAgentCoreGatewayTargetS3Configuration;
26825
+ } | {
26826
+ InlinePayload: BedrockAgentCoreGatewayTargetToolDefinition[];
26827
+ };
26367
26828
  /**
26368
26829
  * Resource Type definition for AWS::BedrockAgentCore::Runtime
26369
26830
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html}
@@ -26530,13 +26991,17 @@ export type BedrockAgentCoreRuntimeNetworkConfiguration = {
26530
26991
  * Network mode configuration type
26531
26992
  */
26532
26993
  NetworkMode: BedrockAgentCoreRuntimeNetworkMode;
26994
+ /**
26995
+ * Network mode configuration for VPC
26996
+ */
26997
+ NetworkModeConfig?: BedrockAgentCoreRuntimeVpcConfig;
26533
26998
  };
26534
26999
  /**
26535
27000
  * Type definition for `AWS::BedrockAgentCore::Runtime.NetworkMode`.
26536
27001
  * Network mode configuration type
26537
27002
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-networkmode.html}
26538
27003
  */
26539
- export type BedrockAgentCoreRuntimeNetworkMode = "PUBLIC";
27004
+ export type BedrockAgentCoreRuntimeNetworkMode = "PUBLIC" | "VPC";
26540
27005
  /**
26541
27006
  * Type definition for `AWS::BedrockAgentCore::Runtime.ProtocolConfiguration`.
26542
27007
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-protocolconfiguration.html}
@@ -26548,6 +27013,25 @@ export type BedrockAgentCoreRuntimeProtocolConfiguration = "MCP" | "HTTP";
26548
27013
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-tagsmap.html}
26549
27014
  */
26550
27015
  export type BedrockAgentCoreRuntimeTagsMap = Record<string, string>;
27016
+ /**
27017
+ * Type definition for `AWS::BedrockAgentCore::Runtime.VpcConfig`.
27018
+ * Network mode configuration for VPC
27019
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-vpcconfig.html}
27020
+ */
27021
+ export type BedrockAgentCoreRuntimeVpcConfig = {
27022
+ /**
27023
+ * Security groups for VPC
27024
+ * @minLength `1`
27025
+ * @maxLength `16`
27026
+ */
27027
+ SecurityGroups: string[];
27028
+ /**
27029
+ * Subnets for VPC
27030
+ * @minLength `1`
27031
+ * @maxLength `16`
27032
+ */
27033
+ Subnets: string[];
27034
+ };
26551
27035
  /**
26552
27036
  * Type definition for `AWS::BedrockAgentCore::Runtime.WorkloadIdentityDetails`.
26553
27037
  * Configuration for workload identity
@@ -86998,6 +87482,10 @@ export type ImageBuilderImageProps = {
86998
87482
  * The Amazon Resource Name (ARN) of the infrastructure configuration.
86999
87483
  */
87000
87484
  InfrastructureConfigurationArn?: string;
87485
+ /**
87486
+ * The logging configuration settings for the image.
87487
+ */
87488
+ LoggingConfiguration?: ImageBuilderImageImageLoggingConfiguration;
87001
87489
  /**
87002
87490
  * The tags associated with the image.
87003
87491
  */
@@ -87044,6 +87532,17 @@ export type ImageBuilderImageEcrConfiguration = {
87044
87532
  */
87045
87533
  RepositoryName?: string;
87046
87534
  };
87535
+ /**
87536
+ * Type definition for `AWS::ImageBuilder::Image.ImageLoggingConfiguration`.
87537
+ * The logging configuration settings for the image.
87538
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imageloggingconfiguration.html}
87539
+ */
87540
+ export type ImageBuilderImageImageLoggingConfiguration = {
87541
+ /**
87542
+ * The name of the log group for image build logs.
87543
+ */
87544
+ LogGroupName?: string;
87545
+ };
87047
87546
  /**
87048
87547
  * Type definition for `AWS::ImageBuilder::Image.ImageScanningConfiguration`.
87049
87548
  * Contains settings for Image Builder image resource and container image scans.
@@ -87149,6 +87648,10 @@ export type ImageBuilderImagePipelineProps = {
87149
87648
  * The Amazon Resource Name (ARN) of the infrastructure configuration associated with this image pipeline.
87150
87649
  */
87151
87650
  InfrastructureConfigurationArn?: string;
87651
+ /**
87652
+ * The logging configuration settings for the image pipeline.
87653
+ */
87654
+ LoggingConfiguration?: ImageBuilderImagePipelinePipelineLoggingConfiguration;
87152
87655
  /**
87153
87656
  * The name of the image pipeline.
87154
87657
  */
@@ -87180,6 +87683,18 @@ export type ImageBuilderImagePipelineAttributes = {
87180
87683
  */
87181
87684
  Arn: string;
87182
87685
  };
87686
+ /**
87687
+ * Type definition for `AWS::ImageBuilder::ImagePipeline.AutoDisablePolicy`.
87688
+ * The auto-disable policy configuration for the image pipeline.
87689
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-autodisablepolicy.html}
87690
+ */
87691
+ export type ImageBuilderImagePipelineAutoDisablePolicy = {
87692
+ /**
87693
+ * The number of consecutive failures after which the pipeline should be automatically disabled.
87694
+ * @min `1`
87695
+ */
87696
+ FailureCount: number;
87697
+ };
87183
87698
  /**
87184
87699
  * Type definition for `AWS::ImageBuilder::ImagePipeline.EcrConfiguration`.
87185
87700
  * Settings for Image Builder to configure the ECR repository and output container images that are scanned.
@@ -87227,6 +87742,21 @@ export type ImageBuilderImagePipelineImageTestsConfiguration = {
87227
87742
  */
87228
87743
  TimeoutMinutes?: number;
87229
87744
  };
87745
+ /**
87746
+ * Type definition for `AWS::ImageBuilder::ImagePipeline.PipelineLoggingConfiguration`.
87747
+ * The logging configuration settings for the image pipeline.
87748
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-pipelineloggingconfiguration.html}
87749
+ */
87750
+ export type ImageBuilderImagePipelinePipelineLoggingConfiguration = {
87751
+ /**
87752
+ * The name of the log group for image build logs.
87753
+ */
87754
+ ImageLogGroupName?: string;
87755
+ /**
87756
+ * The name of the log group for pipeline execution logs.
87757
+ */
87758
+ PipelineLogGroupName?: string;
87759
+ };
87230
87760
  /**
87231
87761
  * Type definition for `AWS::ImageBuilder::ImagePipeline.Schedule`.
87232
87762
  * The schedule of the image pipeline.
@@ -87236,7 +87766,7 @@ export type ImageBuilderImagePipelineSchedule = {
87236
87766
  /**
87237
87767
  * The auto-disable policy for the image pipeline.
87238
87768
  */
87239
- AutoDisablePolicy?: any;
87769
+ AutoDisablePolicy?: ImageBuilderImagePipelineAutoDisablePolicy;
87240
87770
  /**
87241
87771
  * The condition configures when the pipeline should trigger a new image build.
87242
87772
  */
@@ -87287,6 +87817,10 @@ export type ImageBuilderImageRecipeProps = {
87287
87817
  * Specify additional settings and launch scripts for your build instances.
87288
87818
  */
87289
87819
  AdditionalInstanceConfiguration?: ImageBuilderImageRecipeAdditionalInstanceConfiguration;
87820
+ /**
87821
+ * The tags to apply to the AMI created by this image recipe.
87822
+ */
87823
+ AmiTags?: Record<string, string>;
87290
87824
  /**
87291
87825
  * The block device mappings to apply when creating images from this recipe.
87292
87826
  */
@@ -115444,6 +115978,7 @@ export type MediaLiveChannelAv1Settings = {
115444
115978
  Level?: string;
115445
115979
  LookAheadRateControl?: string;
115446
115980
  MaxBitrate?: number;
115981
+ MinBitrate?: number;
115447
115982
  MinIInterval?: number;
115448
115983
  ParDenominator?: number;
115449
115984
  ParNumerator?: number;
@@ -115984,6 +116519,7 @@ export type MediaLiveChannelH264Settings = {
115984
116519
  Level?: string;
115985
116520
  LookAheadRateControl?: string;
115986
116521
  MaxBitrate?: number;
116522
+ MinBitrate?: number;
115987
116523
  MinIInterval?: number;
115988
116524
  MinQp?: number;
115989
116525
  NumRefFrames?: number;
@@ -116042,12 +116578,15 @@ export type MediaLiveChannelH265Settings = {
116042
116578
  FlickerAq?: string;
116043
116579
  FramerateDenominator?: number;
116044
116580
  FramerateNumerator?: number;
116581
+ GopBReference?: string;
116045
116582
  GopClosedCadence?: number;
116583
+ GopNumBFrames?: number;
116046
116584
  GopSize?: number;
116047
116585
  GopSizeUnits?: string;
116048
116586
  Level?: string;
116049
116587
  LookAheadRateControl?: string;
116050
116588
  MaxBitrate?: number;
116589
+ MinBitrate?: number;
116051
116590
  MinIInterval?: number;
116052
116591
  MinQp?: number;
116053
116592
  MvOverPictureBoundaries?: string;
@@ -116060,6 +116599,7 @@ export type MediaLiveChannelH265Settings = {
116060
116599
  ScanType?: string;
116061
116600
  SceneChangeDetect?: string;
116062
116601
  Slices?: number;
116602
+ SubgopLength?: string;
116063
116603
  Tier?: string;
116064
116604
  TileHeight?: number;
116065
116605
  TilePadding?: string;
@@ -123331,18 +123871,44 @@ export type NeptuneDBSubnetGroupTag = {
123331
123871
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html}
123332
123872
  */
123333
123873
  export type NeptuneEventSubscriptionProps = {
123874
+ /**
123875
+ * A Boolean value; set to true to activate the subscription, set to false to create the subscription but not active it.
123876
+ */
123334
123877
  Enabled?: boolean;
123878
+ /**
123879
+ * A list of event categories for a SourceType that you want to subscribe to. You can see a list of the categories for a given SourceType in the Events topic in the Amazon Neptune User Guide or by using the DescribeEventCategories action.
123880
+ */
123335
123881
  EventCategories?: string[];
123336
- SnsTopicArn?: string;
123882
+ /**
123883
+ * The Amazon Resource Name (ARN) of the SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it.
123884
+ */
123885
+ SnsTopicArn: string;
123886
+ /**
123887
+ * The list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it cannot end with a hyphen or contain two consecutive hyphens.
123888
+ */
123337
123889
  SourceIds?: string[];
123890
+ /**
123891
+ * The type of source that will be generating the events. For example, if you want to be notified of events generated by a DB instance, you would set this parameter to db-instance. if this value is not specified, all events are returned.
123892
+ */
123338
123893
  SourceType?: string;
123894
+ /**
123895
+ * The name of the subscription.
123896
+ * @maxLength `255`
123897
+ */
123898
+ SubscriptionName?: string;
123899
+ /**
123900
+ * An array of key-value pairs to apply to this resource.
123901
+ */
123902
+ Tags?: NeptuneEventSubscriptionTag[];
123339
123903
  };
123340
123904
  /**
123341
- * Attribute type definition for `AWS::Neptune::EventSubscription`.
123342
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html#aws-resource-neptune-eventsubscription-return-values}
123905
+ * Type definition for `AWS::Neptune::EventSubscription.Tag`.
123906
+ * A key-value pair to associate with a resource.
123907
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-eventsubscription-tag.html}
123343
123908
  */
123344
- export type NeptuneEventSubscriptionAttributes = {
123345
- Id: string;
123909
+ export type NeptuneEventSubscriptionTag = {
123910
+ Key: string;
123911
+ Value: string;
123346
123912
  };
123347
123913
  /**
123348
123914
  * The AWS::NeptuneGraph::Graph resource creates an Amazon NeptuneGraph Graph.
@@ -126310,6 +126876,146 @@ export type OamSinkAttributes = {
126310
126876
  */
126311
126877
  Arn: string;
126312
126878
  };
126879
+ /**
126880
+ * Resource type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule`.
126881
+ * Resource schema for AWS:ObservabilityAdmin:OrganizationCentralizationRule
126882
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationcentralizationrule.html}
126883
+ */
126884
+ export type ObservabilityAdminOrganizationCentralizationRuleProps = {
126885
+ Rule: ObservabilityAdminOrganizationCentralizationRuleCentralizationRule;
126886
+ /**
126887
+ * @minLength `1`
126888
+ * @maxLength `100`
126889
+ * @pattern `^[0-9A-Za-z-]+$`
126890
+ */
126891
+ RuleName: string;
126892
+ /**
126893
+ * An array of key-value pairs to apply to this resource.
126894
+ */
126895
+ Tags?: ObservabilityAdminOrganizationCentralizationRuleTag[];
126896
+ };
126897
+ /**
126898
+ * Attribute type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule`.
126899
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationcentralizationrule.html#aws-resource-observabilityadmin-organizationcentralizationrule-return-values}
126900
+ */
126901
+ export type ObservabilityAdminOrganizationCentralizationRuleAttributes = {
126902
+ /**
126903
+ * @minLength `1`
126904
+ * @maxLength `1011`
126905
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
126906
+ */
126907
+ RuleArn: string;
126908
+ };
126909
+ /**
126910
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.CentralizationRule`.
126911
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-centralizationrule.html}
126912
+ */
126913
+ export type ObservabilityAdminOrganizationCentralizationRuleCentralizationRule = {
126914
+ Destination: ObservabilityAdminOrganizationCentralizationRuleCentralizationRuleDestination;
126915
+ Source: ObservabilityAdminOrganizationCentralizationRuleCentralizationRuleSource;
126916
+ };
126917
+ /**
126918
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.CentralizationRuleDestination`.
126919
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-centralizationruledestination.html}
126920
+ */
126921
+ export type ObservabilityAdminOrganizationCentralizationRuleCentralizationRuleDestination = {
126922
+ /**
126923
+ * @minLength `12`
126924
+ * @maxLength `12`
126925
+ * @pattern `^[0-9]{12}$`
126926
+ */
126927
+ Account?: string;
126928
+ DestinationLogsConfiguration?: ObservabilityAdminOrganizationCentralizationRuleDestinationLogsConfiguration;
126929
+ /**
126930
+ * @minLength `1`
126931
+ */
126932
+ Region: string;
126933
+ };
126934
+ /**
126935
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.CentralizationRuleSource`.
126936
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-centralizationrulesource.html}
126937
+ */
126938
+ export type ObservabilityAdminOrganizationCentralizationRuleCentralizationRuleSource = {
126939
+ /**
126940
+ * @minLength `1`
126941
+ */
126942
+ Regions: string[];
126943
+ /**
126944
+ * @minLength `1`
126945
+ * @maxLength `2000`
126946
+ */
126947
+ Scope?: string;
126948
+ SourceLogsConfiguration?: ObservabilityAdminOrganizationCentralizationRuleSourceLogsConfiguration;
126949
+ };
126950
+ /**
126951
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.DestinationLogsConfiguration`.
126952
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-destinationlogsconfiguration.html}
126953
+ */
126954
+ export type ObservabilityAdminOrganizationCentralizationRuleDestinationLogsConfiguration = {
126955
+ BackupConfiguration?: ObservabilityAdminOrganizationCentralizationRuleLogsBackupConfiguration;
126956
+ LogsEncryptionConfiguration?: ObservabilityAdminOrganizationCentralizationRuleLogsEncryptionConfiguration;
126957
+ };
126958
+ /**
126959
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.LogsBackupConfiguration`.
126960
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-logsbackupconfiguration.html}
126961
+ */
126962
+ export type ObservabilityAdminOrganizationCentralizationRuleLogsBackupConfiguration = {
126963
+ /**
126964
+ * @minLength `1`
126965
+ * @maxLength `1011`
126966
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
126967
+ */
126968
+ KmsKeyArn?: string;
126969
+ /**
126970
+ * @minLength `1`
126971
+ */
126972
+ Region: string;
126973
+ };
126974
+ /**
126975
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.LogsEncryptionConfiguration`.
126976
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-logsencryptionconfiguration.html}
126977
+ */
126978
+ export type ObservabilityAdminOrganizationCentralizationRuleLogsEncryptionConfiguration = {
126979
+ EncryptionConflictResolutionStrategy?: "ALLOW" | "SKIP";
126980
+ EncryptionStrategy: "CUSTOMER_MANAGED" | "AWS_OWNED";
126981
+ /**
126982
+ * @minLength `1`
126983
+ * @maxLength `1011`
126984
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
126985
+ */
126986
+ KmsKeyArn?: string;
126987
+ };
126988
+ /**
126989
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.SourceLogsConfiguration`.
126990
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-sourcelogsconfiguration.html}
126991
+ */
126992
+ export type ObservabilityAdminOrganizationCentralizationRuleSourceLogsConfiguration = {
126993
+ EncryptedLogGroupStrategy: "ALLOW" | "SKIP";
126994
+ /**
126995
+ * @minLength `1`
126996
+ * @maxLength `2000`
126997
+ */
126998
+ LogGroupSelectionCriteria: string;
126999
+ };
127000
+ /**
127001
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.Tag`.
127002
+ * A key-value pair to associate with a resource.
127003
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-tag.html}
127004
+ */
127005
+ export type ObservabilityAdminOrganizationCentralizationRuleTag = {
127006
+ /**
127007
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
127008
+ * @minLength `1`
127009
+ * @maxLength `128`
127010
+ */
127011
+ Key: string;
127012
+ /**
127013
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
127014
+ * @minLength `0`
127015
+ * @maxLength `256`
127016
+ */
127017
+ Value: string;
127018
+ };
126313
127019
  /**
126314
127020
  * The AWS::ObservabilityAdmin::OrganizationTelemetryRule resource defines a CloudWatch Observability Admin Organization Telemetry Rule.
126315
127021
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html}
@@ -132158,6 +132864,15 @@ export type PCSQueueProps = {
132158
132864
  * The name that identifies the queue.
132159
132865
  */
132160
132866
  Name?: string;
132867
+ /**
132868
+ * The Slurm configuration for the queue.
132869
+ */
132870
+ SlurmConfiguration?: {
132871
+ /**
132872
+ * Custom Slurm parameters that directly map to Slurm configuration settings.
132873
+ */
132874
+ SlurmCustomSettings?: PCSQueueSlurmCustomSetting[];
132875
+ };
132161
132876
  /**
132162
132877
  * 1 or more tags added to the resource. Each tag consists of a tag key and tag value. The tag value is optional and can be an empty string.
132163
132878
  */
@@ -132221,6 +132936,21 @@ export type PCSQueueErrorInfo = {
132221
132936
  */
132222
132937
  Message?: string;
132223
132938
  };
132939
+ /**
132940
+ * Type definition for `AWS::PCS::Queue.SlurmCustomSetting`.
132941
+ * Additional settings that directly map to Slurm settings.
132942
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-queue-slurmcustomsetting.html}
132943
+ */
132944
+ export type PCSQueueSlurmCustomSetting = {
132945
+ /**
132946
+ * AWS PCS supports configuration of the Slurm parameters for queues:.
132947
+ */
132948
+ ParameterName: string;
132949
+ /**
132950
+ * The value for the configured Slurm setting.
132951
+ */
132952
+ ParameterValue: string;
132953
+ };
132224
132954
  /**
132225
132955
  * Resource schema for AWS::Personalize::Dataset.
132226
132956
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-dataset.html}
@@ -174374,7 +175104,7 @@ export type S3BucketProps = {
174374
175104
  */
174375
175105
  IntelligentTieringConfigurations?: S3BucketIntelligentTieringConfiguration[];
174376
175106
  /**
174377
- * Specifies the inventory configuration for an Amazon S3 bucket. For more information, see [GET Bucket inventory](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html) in the *Amazon S3 API Reference*.
175107
+ * Specifies the S3 Inventory configuration for an Amazon S3 bucket. For more information, see [GET Bucket inventory](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html) in the *Amazon S3 API Reference*.
174378
175108
  */
174379
175109
  InventoryConfigurations?: S3BucketInventoryConfiguration[];
174380
175110
  /**
@@ -174385,6 +175115,9 @@ export type S3BucketProps = {
174385
175115
  * Settings that define where logs are stored.
174386
175116
  */
174387
175117
  LoggingConfiguration?: S3BucketLoggingConfiguration;
175118
+ /**
175119
+ * The S3 Metadata configuration for a general purpose bucket.
175120
+ */
174388
175121
  MetadataConfiguration?: S3BucketMetadataConfiguration;
174389
175122
  /**
174390
175123
  * The metadata table configuration of an S3 general purpose bucket.
@@ -174404,6 +175137,8 @@ export type S3BucketProps = {
174404
175137
  + The ``DefaultRetention`` settings require both a mode and a period.
174405
175138
  + The ``DefaultRetention`` period can be either ``Days`` or ``Years`` but you must select one. You cannot specify ``Days`` and ``Years`` at the same time.
174406
175139
  + You can enable Object Lock for new or existing buckets. For more information, see [Configuring Object Lock](https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lock-configure.html).
175140
+
175141
+ You must URL encode any signed header values that contain spaces. For example, if your header value is ``my file.txt``, containing two spaces after ``my``, you must URL encode this value to ``my%20%20file.txt``.
174407
175142
  */
174408
175143
  ObjectLockConfiguration?: S3BucketObjectLockConfiguration;
174409
175144
  /**
@@ -174448,30 +175183,33 @@ export type S3BucketAttributes = {
174448
175183
  Arn: string;
174449
175184
  DomainName: string;
174450
175185
  DualStackDomainName: string;
175186
+ /**
175187
+ * The S3 Metadata configuration for a general purpose bucket.
175188
+ */
174451
175189
  MetadataConfiguration: {
174452
175190
  /**
174453
- * The destination information for the metadata configuration.
175191
+ * The destination information for the S3 Metadata configuration.
174454
175192
  */
174455
175193
  Destination: {
174456
175194
  /**
174457
- * The ARN of the table bucket.
175195
+ * The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
174458
175196
  */
174459
175197
  TableBucketArn: string;
174460
175198
  /**
174461
- * The type of the table bucket.
175199
+ * The type of the table bucket where the metadata configuration is stored. The ``aws`` value indicates an AWS managed table bucket, and the ``customer`` value indicates a customer-managed table bucket. V2 metadata configurations are stored in AWS managed table buckets, and V1 metadata configurations are stored in customer-managed table buckets.
174462
175200
  */
174463
175201
  TableBucketType: "aws" | "customer";
174464
175202
  /**
174465
- * The namespace of the table.
175203
+ * The namespace in the table bucket where the metadata tables for a metadata configuration are stored.
174466
175204
  */
174467
175205
  TableNamespace: string;
174468
175206
  };
174469
175207
  /**
174470
- * The configuration for the inventory table.
175208
+ * The inventory table configuration for a metadata configuration.
174471
175209
  */
174472
175210
  InventoryTableConfiguration: {
174473
175211
  /**
174474
- * The ARN of the inventory table.
175212
+ * The Amazon Resource Name (ARN) for the inventory table.
174475
175213
  */
174476
175214
  TableArn: string;
174477
175215
  /**
@@ -174480,11 +175218,11 @@ export type S3BucketAttributes = {
174480
175218
  TableName: string;
174481
175219
  };
174482
175220
  /**
174483
- * The configuration for the journal table.
175221
+ * The journal table configuration for a metadata configuration.
174484
175222
  */
174485
175223
  JournalTableConfiguration: {
174486
175224
  /**
174487
- * The ARN of the journal table.
175225
+ * The Amazon Resource Name (ARN) for the journal table.
174488
175226
  */
174489
175227
  TableArn: string;
174490
175228
  /**
@@ -174773,7 +175511,7 @@ export type S3BucketIntelligentTieringConfiguration = {
174773
175511
  };
174774
175512
  /**
174775
175513
  * Type definition for `AWS::S3::Bucket.InventoryConfiguration`.
174776
- * Specifies the inventory configuration for an Amazon S3 bucket. For more information, see [GET Bucket inventory](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html) in the *Amazon S3 API Reference*.
175514
+ * Specifies the S3 Inventory configuration for an Amazon S3 bucket. For more information, see [GET Bucket inventory](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html) in the *Amazon S3 API Reference*.
174777
175515
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventoryconfiguration.html}
174778
175516
  */
174779
175517
  export type S3BucketInventoryConfiguration = {
@@ -174808,11 +175546,12 @@ export type S3BucketInventoryConfiguration = {
174808
175546
  };
174809
175547
  /**
174810
175548
  * Type definition for `AWS::S3::Bucket.InventoryTableConfiguration`.
175549
+ * The inventory table configuration for an S3 Metadata configuration.
174811
175550
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventorytableconfiguration.html}
174812
175551
  */
174813
175552
  export type S3BucketInventoryTableConfiguration = {
174814
175553
  /**
174815
- * Specifies whether inventory table configuration is enabled or disabled.
175554
+ * The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.
174816
175555
  */
174817
175556
  ConfigurationState: "ENABLED" | "DISABLED";
174818
175557
  /**
@@ -174822,6 +175561,7 @@ export type S3BucketInventoryTableConfiguration = {
174822
175561
  };
174823
175562
  /**
174824
175563
  * Type definition for `AWS::S3::Bucket.JournalTableConfiguration`.
175564
+ * The journal table configuration for an S3 Metadata configuration.
174825
175565
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-journaltableconfiguration.html}
174826
175566
  */
174827
175567
  export type S3BucketJournalTableConfiguration = {
@@ -174829,6 +175569,9 @@ export type S3BucketJournalTableConfiguration = {
174829
175569
  * The encryption configuration for the journal table.
174830
175570
  */
174831
175571
  EncryptionConfiguration?: S3BucketMetadataTableEncryptionConfiguration;
175572
+ /**
175573
+ * The journal table record expiration settings for the journal table.
175574
+ */
174832
175575
  RecordExpiration: S3BucketRecordExpiration;
174833
175576
  };
174834
175577
  /**
@@ -174892,39 +175635,43 @@ export type S3BucketLoggingConfiguration = {
174892
175635
  };
174893
175636
  /**
174894
175637
  * Type definition for `AWS::S3::Bucket.MetadataConfiguration`.
175638
+ * Creates a V2 S3 Metadata configuration of a general purpose bucket. For more information, see [Accelerating data discovery with S3 Metadata](https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html) in the *Amazon S3 User Guide*.
174895
175639
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadataconfiguration.html}
174896
175640
  */
174897
175641
  export type S3BucketMetadataConfiguration = {
174898
175642
  /**
174899
- * The configuration for the inventory table.
175643
+ * The inventory table configuration for a metadata configuration.
174900
175644
  */
174901
175645
  InventoryTableConfiguration?: S3BucketInventoryTableConfiguration;
174902
175646
  /**
174903
- * The configuration for the journal table.
175647
+ * The journal table configuration for a metadata configuration.
174904
175648
  */
174905
175649
  JournalTableConfiguration: S3BucketJournalTableConfiguration;
174906
175650
  };
174907
175651
  /**
174908
175652
  * Type definition for `AWS::S3::Bucket.MetadataDestination`.
175653
+ * The destination information for the S3 Metadata configuration.
174909
175654
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatadestination.html}
174910
175655
  */
174911
175656
  export type S3BucketMetadataDestination = {
174912
175657
  /**
174913
- * The ARN of the table bucket.
175658
+ * The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
174914
175659
  */
174915
175660
  TableBucketArn?: string;
174916
175661
  /**
174917
- * The type of the table bucket.
175662
+ * The type of the table bucket where the metadata configuration is stored. The ``aws`` value indicates an AWS managed table bucket, and the ``customer`` value indicates a customer-managed table bucket. V2 metadata configurations are stored in AWS managed table buckets, and V1 metadata configurations are stored in customer-managed table buckets.
174918
175663
  */
174919
175664
  TableBucketType: "aws" | "customer";
174920
175665
  /**
174921
- * The namespace of the table.
175666
+ * The namespace in the table bucket where the metadata tables for a metadata configuration are stored.
174922
175667
  */
174923
175668
  TableNamespace?: string;
174924
175669
  };
174925
175670
  /**
174926
175671
  * Type definition for `AWS::S3::Bucket.MetadataTableConfiguration`.
174927
- * The metadata table configuration of an S3 general purpose bucket. For more information, see [Accelerating data discovery with S3 Metadata](https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html) and [Setting up permissions for configuring metadata tables](https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-permissions.html).
175672
+ * We recommend that you create your S3 Metadata configurations by using the V2 [MetadataConfiguration](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-s3-bucket-metadataconfiguration.html) resource type. We no longer recommend using the V1 ``MetadataTableConfiguration`` resource type.
175673
+ If you created your S3 Metadata configuration before July 15, 2025, we recommend that you delete and re-create your configuration by using the [MetadataConfiguration](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-s3-bucket-metadataconfiguration.html) resource type so that you can expire journal table records and create a live inventory table.
175674
+ Creates a V1 S3 Metadata configuration for a general purpose bucket. For more information, see [Accelerating data discovery with S3 Metadata](https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html) in the *Amazon S3 User Guide*.
174928
175675
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableconfiguration.html}
174929
175676
  */
174930
175677
  export type S3BucketMetadataTableConfiguration = {
@@ -174935,15 +175682,16 @@ export type S3BucketMetadataTableConfiguration = {
174935
175682
  };
174936
175683
  /**
174937
175684
  * Type definition for `AWS::S3::Bucket.MetadataTableEncryptionConfiguration`.
175685
+ * The encryption settings for an S3 Metadata journal table or inventory table configuration.
174938
175686
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableencryptionconfiguration.html}
174939
175687
  */
174940
175688
  export type S3BucketMetadataTableEncryptionConfiguration = {
174941
175689
  /**
174942
- * The ARN of the KMS key. Required if SseAlgorithm is aws:kms.
175690
+ * If server-side encryption with KMSlong (KMS) keys (SSE-KMS) is specified, you must also specify the KMS key Amazon Resource Name (ARN). You must specify a customer-managed KMS key that's located in the same Region as the general purpose bucket that corresponds to the metadata table configuration.
174943
175691
  */
174944
175692
  KmsKeyArn?: string;
174945
175693
  /**
174946
- * Specifies the server-side encryption algorithm to use for encrypting tables.
175694
+ * The encryption type specified for a metadata table. To specify server-side encryption with KMSlong (KMS) keys (SSE-KMS), use the ``aws:kms`` value. To specify server-side encryption with Amazon S3 managed keys (SSE-S3), use the ``AES256`` value.
174947
175695
  */
174948
175696
  SseAlgorithm: "aws:kms" | "AES256";
174949
175697
  };
@@ -175174,15 +175922,16 @@ export type S3BucketQueueConfiguration = {
175174
175922
  };
175175
175923
  /**
175176
175924
  * Type definition for `AWS::S3::Bucket.RecordExpiration`.
175925
+ * The journal table record expiration settings for a journal table in an S3 Metadata configuration.
175177
175926
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-recordexpiration.html}
175178
175927
  */
175179
175928
  export type S3BucketRecordExpiration = {
175180
175929
  /**
175181
- * The number of days after which records expire. Required if Expiration is ENABLED.
175930
+ * If you enable journal table record expiration, you can set the number of days to retain your journal table records. Journal table records must be retained for a minimum of 7 days. To set this value, specify any whole number from ``7`` to ``2147483647``. For example, to retain your journal table records for one year, set this value to ``365``.
175182
175931
  */
175183
175932
  Days?: number;
175184
175933
  /**
175185
- * Specifies whether record expiration is enabled or disabled.
175934
+ * Specifies whether journal table record expiration is enabled or disabled.
175186
175935
  */
175187
175936
  Expiration: "ENABLED" | "DISABLED";
175188
175937
  };
@@ -175291,6 +176040,7 @@ export type S3BucketReplicationDestination = {
175291
176040
  /**
175292
176041
  * The storage class to use when replicating objects, such as S3 Standard or reduced redundancy. By default, Amazon S3 uses the storage class of the source object to create the object replica.
175293
176042
  For valid values, see the ``StorageClass`` element of the [PUT Bucket replication](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTreplication.html) action in the *Amazon S3 API Reference*.
176043
+ ``FSX_OPENZFS`` is not an accepted value when replicating objects.
175294
176044
  */
175295
176045
  StorageClass?: "DEEP_ARCHIVE" | "GLACIER" | "GLACIER_IR" | "INTELLIGENT_TIERING" | "ONEZONE_IA" | "REDUCED_REDUNDANCY" | "STANDARD" | "STANDARD_IA";
175296
176046
  };
@@ -175533,7 +176283,7 @@ export type S3BucketS3KeyFilter = {
175533
176283
  };
175534
176284
  /**
175535
176285
  * Type definition for `AWS::S3::Bucket.S3TablesDestination`.
175536
- * The destination information for the metadata table configuration. The destination table bucket must be in the same Region and AWS-account as the general purpose bucket. The specified metadata table name must be unique within the ``aws_s3_metadata`` namespace in the destination table bucket.
176286
+ * The destination information for a V1 S3 Metadata configuration. The destination table bucket must be in the same Region and AWS-account as the general purpose bucket. The specified metadata table name must be unique within the ``aws_s3_metadata`` namespace in the destination table bucket.
175537
176287
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-s3tablesdestination.html}
175538
176288
  */
175539
176289
  export type S3BucketS3TablesDestination = {
@@ -190847,18 +191597,24 @@ export type ServiceCatalogPortfolioProductAssociationProps = {
190847
191597
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html}
190848
191598
  */
190849
191599
  export type ServiceCatalogPortfolioShareProps = {
191600
+ /**
191601
+ * The language code.
191602
+ */
190850
191603
  AcceptLanguage?: string;
191604
+ /**
191605
+ * The AWS account ID.
191606
+ * @pattern `^[0-9]{12}$`
191607
+ */
190851
191608
  AccountId: string;
191609
+ /**
191610
+ * The portfolio identifier.
191611
+ */
190852
191612
  PortfolioId: string;
191613
+ /**
191614
+ * Enables or disables TagOptions sharing when creating the portfolio share.
191615
+ */
190853
191616
  ShareTagOptions?: boolean;
190854
191617
  };
190855
- /**
190856
- * Attribute type definition for `AWS::ServiceCatalog::PortfolioShare`.
190857
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html#aws-resource-servicecatalog-portfolioshare-return-values}
190858
- */
190859
- export type ServiceCatalogPortfolioShareAttributes = {
190860
- Id: string;
190861
- };
190862
191618
  /**
190863
191619
  * Resource Type definition for AWS::ServiceCatalog::ResourceUpdateConstraint
190864
191620
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html}
@@ -208805,6 +209561,7 @@ export interface ResourceTypes {
208805
209561
  "AWS::ApplicationAutoScaling::ScalingPolicy": ApplicationAutoScalingScalingPolicyProps;
208806
209562
  "AWS::ApplicationInsights::Application": ApplicationInsightsApplicationProps;
208807
209563
  "AWS::ApplicationSignals::Discovery": ApplicationSignalsDiscoveryProps;
209564
+ "AWS::ApplicationSignals::GroupingConfiguration": ApplicationSignalsGroupingConfigurationProps;
208808
209565
  "AWS::ApplicationSignals::ServiceLevelObjective": ApplicationSignalsServiceLevelObjectiveProps;
208809
209566
  "AWS::AppMesh::GatewayRoute": AppMeshGatewayRouteProps;
208810
209567
  "AWS::AppMesh::Mesh": AppMeshMeshProps;
@@ -208903,6 +209660,8 @@ export interface ResourceTypes {
208903
209660
  "AWS::Bedrock::PromptVersion": BedrockPromptVersionProps;
208904
209661
  "AWS::BedrockAgentCore::BrowserCustom": BedrockAgentCoreBrowserCustomProps;
208905
209662
  "AWS::BedrockAgentCore::CodeInterpreterCustom": BedrockAgentCoreCodeInterpreterCustomProps;
209663
+ "AWS::BedrockAgentCore::Gateway": BedrockAgentCoreGatewayProps;
209664
+ "AWS::BedrockAgentCore::GatewayTarget": BedrockAgentCoreGatewayTargetProps;
208906
209665
  "AWS::BedrockAgentCore::Runtime": BedrockAgentCoreRuntimeProps;
208907
209666
  "AWS::BedrockAgentCore::RuntimeEndpoint": BedrockAgentCoreRuntimeEndpointProps;
208908
209667
  "AWS::Billing::BillingView": BillingBillingViewProps;
@@ -209737,6 +210496,7 @@ export interface ResourceTypes {
209737
210496
  "AWS::NotificationsContacts::EmailContact": NotificationsContactsEmailContactProps;
209738
210497
  "AWS::Oam::Link": OamLinkProps;
209739
210498
  "AWS::Oam::Sink": OamSinkProps;
210499
+ "AWS::ObservabilityAdmin::OrganizationCentralizationRule": ObservabilityAdminOrganizationCentralizationRuleProps;
209740
210500
  "AWS::ObservabilityAdmin::OrganizationTelemetryRule": ObservabilityAdminOrganizationTelemetryRuleProps;
209741
210501
  "AWS::ObservabilityAdmin::TelemetryRule": ObservabilityAdminTelemetryRuleProps;
209742
210502
  "AWS::ODB::CloudAutonomousVmCluster": ODBCloudAutonomousVmClusterProps;
@@ -210258,6 +211018,7 @@ export interface AttributeTypes {
210258
211018
  "AWS::ApplicationAutoScaling::ScalingPolicy": ApplicationAutoScalingScalingPolicyAttributes;
210259
211019
  "AWS::ApplicationInsights::Application": ApplicationInsightsApplicationAttributes;
210260
211020
  "AWS::ApplicationSignals::Discovery": ApplicationSignalsDiscoveryAttributes;
211021
+ "AWS::ApplicationSignals::GroupingConfiguration": ApplicationSignalsGroupingConfigurationAttributes;
210261
211022
  "AWS::ApplicationSignals::ServiceLevelObjective": ApplicationSignalsServiceLevelObjectiveAttributes;
210262
211023
  "AWS::AppMesh::GatewayRoute": AppMeshGatewayRouteAttributes;
210263
211024
  "AWS::AppMesh::Mesh": AppMeshMeshAttributes;
@@ -210345,6 +211106,8 @@ export interface AttributeTypes {
210345
211106
  "AWS::Bedrock::PromptVersion": BedrockPromptVersionAttributes;
210346
211107
  "AWS::BedrockAgentCore::BrowserCustom": BedrockAgentCoreBrowserCustomAttributes;
210347
211108
  "AWS::BedrockAgentCore::CodeInterpreterCustom": BedrockAgentCoreCodeInterpreterCustomAttributes;
211109
+ "AWS::BedrockAgentCore::Gateway": BedrockAgentCoreGatewayAttributes;
211110
+ "AWS::BedrockAgentCore::GatewayTarget": BedrockAgentCoreGatewayTargetAttributes;
210348
211111
  "AWS::BedrockAgentCore::Runtime": BedrockAgentCoreRuntimeAttributes;
210349
211112
  "AWS::BedrockAgentCore::RuntimeEndpoint": BedrockAgentCoreRuntimeEndpointAttributes;
210350
211113
  "AWS::Billing::BillingView": BillingBillingViewAttributes;
@@ -211055,7 +211818,6 @@ export interface AttributeTypes {
211055
211818
  "AWS::MWAA::Environment": MWAAEnvironmentAttributes;
211056
211819
  "AWS::Neptune::DBCluster": NeptuneDBClusterAttributes;
211057
211820
  "AWS::Neptune::DBInstance": NeptuneDBInstanceAttributes;
211058
- "AWS::Neptune::EventSubscription": NeptuneEventSubscriptionAttributes;
211059
211821
  "AWS::NeptuneGraph::Graph": NeptuneGraphGraphAttributes;
211060
211822
  "AWS::NeptuneGraph::PrivateGraphEndpoint": NeptuneGraphPrivateGraphEndpointAttributes;
211061
211823
  "AWS::NetworkFirewall::Firewall": NetworkFirewallFirewallAttributes;
@@ -211081,6 +211843,7 @@ export interface AttributeTypes {
211081
211843
  "AWS::NotificationsContacts::EmailContact": NotificationsContactsEmailContactAttributes;
211082
211844
  "AWS::Oam::Link": OamLinkAttributes;
211083
211845
  "AWS::Oam::Sink": OamSinkAttributes;
211846
+ "AWS::ObservabilityAdmin::OrganizationCentralizationRule": ObservabilityAdminOrganizationCentralizationRuleAttributes;
211084
211847
  "AWS::ObservabilityAdmin::OrganizationTelemetryRule": ObservabilityAdminOrganizationTelemetryRuleAttributes;
211085
211848
  "AWS::ObservabilityAdmin::TelemetryRule": ObservabilityAdminTelemetryRuleAttributes;
211086
211849
  "AWS::ODB::CloudAutonomousVmCluster": ODBCloudAutonomousVmClusterAttributes;
@@ -211333,7 +212096,6 @@ export interface AttributeTypes {
211333
212096
  "AWS::ServiceCatalog::LaunchTemplateConstraint": ServiceCatalogLaunchTemplateConstraintAttributes;
211334
212097
  "AWS::ServiceCatalog::Portfolio": ServiceCatalogPortfolioAttributes;
211335
212098
  "AWS::ServiceCatalog::PortfolioPrincipalAssociation": ServiceCatalogPortfolioPrincipalAssociationAttributes;
211336
- "AWS::ServiceCatalog::PortfolioShare": ServiceCatalogPortfolioShareAttributes;
211337
212099
  "AWS::ServiceCatalog::ResourceUpdateConstraint": ServiceCatalogResourceUpdateConstraintAttributes;
211338
212100
  "AWS::ServiceCatalog::ServiceAction": ServiceCatalogServiceActionAttributes;
211339
212101
  "AWS::ServiceCatalog::StackSetConstraint": ServiceCatalogStackSetConstraintAttributes;
@@ -211560,6 +212322,7 @@ export declare const ResourceType: {
211560
212322
  readonly ApplicationAutoScalingScalingPolicy: "AWS::ApplicationAutoScaling::ScalingPolicy";
211561
212323
  readonly ApplicationInsightsApplication: "AWS::ApplicationInsights::Application";
211562
212324
  readonly ApplicationSignalsDiscovery: "AWS::ApplicationSignals::Discovery";
212325
+ readonly ApplicationSignalsGroupingConfiguration: "AWS::ApplicationSignals::GroupingConfiguration";
211563
212326
  readonly ApplicationSignalsServiceLevelObjective: "AWS::ApplicationSignals::ServiceLevelObjective";
211564
212327
  readonly AppMeshGatewayRoute: "AWS::AppMesh::GatewayRoute";
211565
212328
  readonly AppMeshMesh: "AWS::AppMesh::Mesh";
@@ -211658,6 +212421,8 @@ export declare const ResourceType: {
211658
212421
  readonly BedrockPromptVersion: "AWS::Bedrock::PromptVersion";
211659
212422
  readonly BedrockAgentCoreBrowserCustom: "AWS::BedrockAgentCore::BrowserCustom";
211660
212423
  readonly BedrockAgentCoreCodeInterpreterCustom: "AWS::BedrockAgentCore::CodeInterpreterCustom";
212424
+ readonly BedrockAgentCoreGateway: "AWS::BedrockAgentCore::Gateway";
212425
+ readonly BedrockAgentCoreGatewayTarget: "AWS::BedrockAgentCore::GatewayTarget";
211661
212426
  readonly BedrockAgentCoreRuntime: "AWS::BedrockAgentCore::Runtime";
211662
212427
  readonly BedrockAgentCoreRuntimeEndpoint: "AWS::BedrockAgentCore::RuntimeEndpoint";
211663
212428
  readonly BillingBillingView: "AWS::Billing::BillingView";
@@ -212492,6 +213257,7 @@ export declare const ResourceType: {
212492
213257
  readonly NotificationsContactsEmailContact: "AWS::NotificationsContacts::EmailContact";
212493
213258
  readonly OamLink: "AWS::Oam::Link";
212494
213259
  readonly OamSink: "AWS::Oam::Sink";
213260
+ readonly ObservabilityAdminOrganizationCentralizationRule: "AWS::ObservabilityAdmin::OrganizationCentralizationRule";
212495
213261
  readonly ObservabilityAdminOrganizationTelemetryRule: "AWS::ObservabilityAdmin::OrganizationTelemetryRule";
212496
213262
  readonly ObservabilityAdminTelemetryRule: "AWS::ObservabilityAdmin::TelemetryRule";
212497
213263
  readonly ODBCloudAutonomousVmCluster: "AWS::ODB::CloudAutonomousVmCluster";