@awboost/cfntypes 0.100.284 → 0.100.286

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.
@@ -26061,6 +26061,493 @@ export type BedrockPromptVersionToolSpecification = {
26061
26061
  */
26062
26062
  Name: string;
26063
26063
  };
26064
+ /**
26065
+ * Resource definition for AWS::BedrockAgentCore::BrowserCustom
26066
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html}
26067
+ */
26068
+ export type BedrockAgentCoreBrowserCustomProps = {
26069
+ /**
26070
+ * The description of the browser.
26071
+ */
26072
+ Description?: string;
26073
+ /**
26074
+ * The Amazon Resource Name (ARN) of the IAM role that the browser uses to access resources.
26075
+ * @pattern `^arn:aws(-[a-z]+)*:iam::[0-9]{12}:role/.+$`
26076
+ */
26077
+ ExecutionRoleArn?: string;
26078
+ /**
26079
+ * The name of the browser.
26080
+ */
26081
+ Name: string;
26082
+ /**
26083
+ * Network configuration for browser.
26084
+ */
26085
+ NetworkConfiguration: BedrockAgentCoreBrowserCustomBrowserNetworkConfiguration;
26086
+ /**
26087
+ * Recording configuration for browser.
26088
+ */
26089
+ RecordingConfig?: BedrockAgentCoreBrowserCustomRecordingConfig;
26090
+ /**
26091
+ * A map of tag keys and values
26092
+ */
26093
+ Tags?: BedrockAgentCoreBrowserCustomTagsMap;
26094
+ };
26095
+ /**
26096
+ * Attribute type definition for `AWS::BedrockAgentCore::BrowserCustom`.
26097
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#aws-resource-bedrockagentcore-browsercustom-return-values}
26098
+ */
26099
+ export type BedrockAgentCoreBrowserCustomAttributes = {
26100
+ /**
26101
+ * The ARN of a Browser resource.
26102
+ * @pattern `^arn:(-[^:]+)?:bedrock-agentcore:[a-z0-9-]+:(aws|[0-9]{12}):browser(-custom)?/(aws\.browser\.v1|[a-zA-Z][a-zA-Z0-9_]{0,47}-[a-zA-Z0-9]{10})$`
26103
+ */
26104
+ BrowserArn: string;
26105
+ /**
26106
+ * The id of the browser.
26107
+ * @pattern `^(aws\.browser\.v1|[a-zA-Z][a-zA-Z0-9_]{0,47}-[a-zA-Z0-9]{10})$`
26108
+ */
26109
+ BrowserId: string;
26110
+ /**
26111
+ * Timestamp when the browser was created.
26112
+ */
26113
+ CreatedAt: string;
26114
+ /**
26115
+ * Timestamp when the browser was last updated.
26116
+ */
26117
+ LastUpdatedAt: string;
26118
+ /**
26119
+ * Status of browser.
26120
+ */
26121
+ Status: BedrockAgentCoreBrowserCustomBrowserStatus;
26122
+ };
26123
+ /**
26124
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserNetworkConfiguration`.
26125
+ * Network configuration for browser
26126
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-browsernetworkconfiguration.html}
26127
+ */
26128
+ export type BedrockAgentCoreBrowserCustomBrowserNetworkConfiguration = {
26129
+ /**
26130
+ * Network modes supported by browser
26131
+ */
26132
+ NetworkMode: BedrockAgentCoreBrowserCustomBrowserNetworkMode;
26133
+ };
26134
+ /**
26135
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserNetworkMode`.
26136
+ * Network modes supported by browser
26137
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-browsernetworkmode.html}
26138
+ */
26139
+ export type BedrockAgentCoreBrowserCustomBrowserNetworkMode = "PUBLIC";
26140
+ /**
26141
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserStatus`.
26142
+ * Status of browser
26143
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-browserstatus.html}
26144
+ */
26145
+ export type BedrockAgentCoreBrowserCustomBrowserStatus = "CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED";
26146
+ /**
26147
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.RecordingConfig`.
26148
+ * Recording configuration for browser
26149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-recordingconfig.html}
26150
+ */
26151
+ export type BedrockAgentCoreBrowserCustomRecordingConfig = {
26152
+ Enabled?: boolean;
26153
+ /**
26154
+ * S3 Location Configuration
26155
+ */
26156
+ S3Location?: BedrockAgentCoreBrowserCustomS3Location;
26157
+ };
26158
+ /**
26159
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.S3Location`.
26160
+ * S3 Location Configuration
26161
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-s3location.html}
26162
+ */
26163
+ export type BedrockAgentCoreBrowserCustomS3Location = {
26164
+ /**
26165
+ * @pattern `^[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$`
26166
+ */
26167
+ Bucket: string;
26168
+ /**
26169
+ * @minLength `1`
26170
+ */
26171
+ Prefix: string;
26172
+ };
26173
+ /**
26174
+ * Type definition for `AWS::BedrockAgentCore::BrowserCustom.TagsMap`.
26175
+ * A map of tag keys and values
26176
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-tagsmap.html}
26177
+ */
26178
+ export type BedrockAgentCoreBrowserCustomTagsMap = Record<string, string>;
26179
+ /**
26180
+ * Resource definition for AWS::BedrockAgentCore::CodeInterpreterCustom
26181
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html}
26182
+ */
26183
+ export type BedrockAgentCoreCodeInterpreterCustomProps = {
26184
+ /**
26185
+ * The description of the code interpreter.
26186
+ */
26187
+ Description?: string;
26188
+ /**
26189
+ * The ARN of the IAM role that the code interpreter uses to access resources.
26190
+ * @pattern `^arn:aws(-[a-z]+)*:iam::[0-9]{12}:role/.+$`
26191
+ */
26192
+ ExecutionRoleArn?: string;
26193
+ /**
26194
+ * The name of the code interpreter.
26195
+ */
26196
+ Name: string;
26197
+ /**
26198
+ * Network configuration for code interpreter.
26199
+ */
26200
+ NetworkConfiguration: BedrockAgentCoreCodeInterpreterCustomCodeInterpreterNetworkConfiguration;
26201
+ /**
26202
+ * A map of tag keys and values
26203
+ */
26204
+ Tags?: BedrockAgentCoreCodeInterpreterCustomTagsMap;
26205
+ };
26206
+ /**
26207
+ * Attribute type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom`.
26208
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html#aws-resource-bedrockagentcore-codeinterpretercustom-return-values}
26209
+ */
26210
+ export type BedrockAgentCoreCodeInterpreterCustomAttributes = {
26211
+ /**
26212
+ * The ARN of a CodeInterpreter resource.
26213
+ * @pattern `^arn:(-[^:]+)?:bedrock-agentcore:[a-z0-9-]+:(aws|[0-9]{12}):code-interpreter(-custom)?/(aws\.codeinterpreter\.v1|[a-zA-Z][a-zA-Z0-9_]{0,47}-[a-zA-Z0-9]{10})$`
26214
+ */
26215
+ CodeInterpreterArn: string;
26216
+ /**
26217
+ * The id of the code interpreter.
26218
+ * @pattern `^(aws\.codeinterpreter\.v1|[a-zA-Z][a-zA-Z0-9_]{0,47}-[a-zA-Z0-9]{10})$`
26219
+ */
26220
+ CodeInterpreterId: string;
26221
+ /**
26222
+ * Timestamp when the code interpreter was created.
26223
+ */
26224
+ CreatedAt: string;
26225
+ /**
26226
+ * Timestamp when the code interpreter was last updated.
26227
+ */
26228
+ LastUpdatedAt: string;
26229
+ /**
26230
+ * Status of code interpreter.
26231
+ */
26232
+ Status: BedrockAgentCoreCodeInterpreterCustomCodeInterpreterStatus;
26233
+ };
26234
+ /**
26235
+ * Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.CodeInterpreterNetworkConfiguration`.
26236
+ * Network configuration for code interpreter
26237
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-codeinterpreternetworkconfiguration.html}
26238
+ */
26239
+ export type BedrockAgentCoreCodeInterpreterCustomCodeInterpreterNetworkConfiguration = {
26240
+ /**
26241
+ * Network modes supported by code interpreter
26242
+ */
26243
+ NetworkMode: BedrockAgentCoreCodeInterpreterCustomCodeInterpreterNetworkMode;
26244
+ };
26245
+ /**
26246
+ * Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.CodeInterpreterNetworkMode`.
26247
+ * Network modes supported by code interpreter
26248
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-codeinterpreternetworkmode.html}
26249
+ */
26250
+ export type BedrockAgentCoreCodeInterpreterCustomCodeInterpreterNetworkMode = "PUBLIC" | "SANDBOX";
26251
+ /**
26252
+ * Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.CodeInterpreterStatus`.
26253
+ * Status of Code interpreter
26254
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-codeinterpreterstatus.html}
26255
+ */
26256
+ export type BedrockAgentCoreCodeInterpreterCustomCodeInterpreterStatus = "CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED";
26257
+ /**
26258
+ * Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.TagsMap`.
26259
+ * A map of tag keys and values
26260
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-tagsmap.html}
26261
+ */
26262
+ export type BedrockAgentCoreCodeInterpreterCustomTagsMap = Record<string, string>;
26263
+ /**
26264
+ * Resource Type definition for AWS::BedrockAgentCore::Runtime
26265
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html}
26266
+ */
26267
+ export type BedrockAgentCoreRuntimeProps = {
26268
+ /**
26269
+ * The artifact of the agent
26270
+ */
26271
+ AgentRuntimeArtifact: BedrockAgentCoreRuntimeAgentRuntimeArtifact;
26272
+ /**
26273
+ * Name for a resource
26274
+ * @pattern `[a-zA-Z][a-zA-Z0-9_]{0,47}`
26275
+ */
26276
+ AgentRuntimeName: string;
26277
+ /**
26278
+ * Authorizer configuration for the agent runtime
26279
+ */
26280
+ AuthorizerConfiguration?: BedrockAgentCoreRuntimeAuthorizerConfiguration;
26281
+ /**
26282
+ * Description of the resource
26283
+ * @minLength `1`
26284
+ * @maxLength `1200`
26285
+ */
26286
+ Description?: string;
26287
+ /**
26288
+ * Environment variables for the agent runtime
26289
+ */
26290
+ EnvironmentVariables?: BedrockAgentCoreRuntimeEnvironmentVariablesMap;
26291
+ /**
26292
+ * Network access configuration for the Agent
26293
+ */
26294
+ NetworkConfiguration: BedrockAgentCoreRuntimeNetworkConfiguration;
26295
+ /**
26296
+ * Protocol configuration for the agent runtime
26297
+ */
26298
+ ProtocolConfiguration?: BedrockAgentCoreRuntimeProtocolConfiguration;
26299
+ /**
26300
+ * Amazon Resource Name (ARN) of an IAM role
26301
+ * @pattern `arn:aws(-[^:]+)?:iam::([0-9]{12})?:role/.+`
26302
+ */
26303
+ RoleArn: string;
26304
+ /**
26305
+ * A map of tag keys and values
26306
+ */
26307
+ Tags?: BedrockAgentCoreRuntimeTagsMap;
26308
+ };
26309
+ /**
26310
+ * Attribute type definition for `AWS::BedrockAgentCore::Runtime`.
26311
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#aws-resource-bedrockagentcore-runtime-return-values}
26312
+ */
26313
+ export type BedrockAgentCoreRuntimeAttributes = {
26314
+ /**
26315
+ * The Amazon Resource Name(ARN) that uniquely identifies the Agent
26316
+ * @maxLength `2048`
26317
+ * @pattern `arn:(-[^:]+)?:bedrock-agentcore:[a-z0-9-]+:[0-9]{12}:agent/[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}:([0-9]{0,4}[1-9][0-9]{0,4})`
26318
+ */
26319
+ AgentRuntimeArn: string;
26320
+ /**
26321
+ * Identifier for a resource
26322
+ * @pattern `[a-zA-Z][a-zA-Z0-9_]{0,99}-[a-zA-Z0-9]{10}`
26323
+ */
26324
+ AgentRuntimeId: string;
26325
+ /**
26326
+ * Version of the Agent
26327
+ * @minLength `1`
26328
+ * @maxLength `5`
26329
+ * @pattern `([1-9][0-9]{0,4})`
26330
+ */
26331
+ AgentRuntimeVersion: string;
26332
+ /**
26333
+ * Timestamp when the Agent was created
26334
+ */
26335
+ CreatedAt: string;
26336
+ /**
26337
+ * When resource was last updated
26338
+ */
26339
+ LastUpdatedAt: string;
26340
+ /**
26341
+ * Current status of the agent
26342
+ */
26343
+ Status: BedrockAgentCoreRuntimeAgentStatus;
26344
+ /**
26345
+ * Workload identity details for the agent
26346
+ */
26347
+ WorkloadIdentityDetails: {
26348
+ /**
26349
+ * ARN of the workload identity
26350
+ * @minLength `1`
26351
+ * @maxLength `1024`
26352
+ */
26353
+ WorkloadIdentityArn: string;
26354
+ };
26355
+ };
26356
+ /**
26357
+ * Type definition for `AWS::BedrockAgentCore::Runtime.AgentRuntimeArtifact`.
26358
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-agentruntimeartifact.html}
26359
+ */
26360
+ export type BedrockAgentCoreRuntimeAgentRuntimeArtifact = {
26361
+ ContainerConfiguration?: BedrockAgentCoreRuntimeContainerConfiguration;
26362
+ };
26363
+ /**
26364
+ * Type definition for `AWS::BedrockAgentCore::Runtime.AgentStatus`.
26365
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-agentstatus.html}
26366
+ */
26367
+ export type BedrockAgentCoreRuntimeAgentStatus = "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING";
26368
+ /**
26369
+ * Type definition for `AWS::BedrockAgentCore::Runtime.AuthorizerConfiguration`.
26370
+ * Configuration for the authorizer
26371
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-authorizerconfiguration.html}
26372
+ */
26373
+ export type BedrockAgentCoreRuntimeAuthorizerConfiguration = {
26374
+ /**
26375
+ * Configuration for custom JWT authorizer
26376
+ */
26377
+ CustomJWTAuthorizer?: BedrockAgentCoreRuntimeCustomJWTAuthorizerConfiguration;
26378
+ };
26379
+ /**
26380
+ * Type definition for `AWS::BedrockAgentCore::Runtime.ContainerConfiguration`.
26381
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-containerconfiguration.html}
26382
+ */
26383
+ export type BedrockAgentCoreRuntimeContainerConfiguration = {
26384
+ /**
26385
+ * The ECR URI of the container
26386
+ * @minLength `1`
26387
+ * @maxLength `1024`
26388
+ * @pattern `^\d{12}\.dkr\.ecr\.([a-z0-9-]+)\.amazonaws\.com/((?:[a-z0-9]+(?:[._-][a-z0-9]+)/‍*)*[a-z0-9]+(?:[._-][a-z0-9]+)*)([:@]\S+)$`
26389
+ */
26390
+ ContainerUri: string;
26391
+ };
26392
+ /**
26393
+ * Type definition for `AWS::BedrockAgentCore::Runtime.CustomJWTAuthorizerConfiguration`.
26394
+ * Configuration for custom JWT authorizer
26395
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-customjwtauthorizerconfiguration.html}
26396
+ */
26397
+ export type BedrockAgentCoreRuntimeCustomJWTAuthorizerConfiguration = {
26398
+ /**
26399
+ * List of allowed audiences
26400
+ * @minLength `1`
26401
+ */
26402
+ AllowedAudience?: string[];
26403
+ /**
26404
+ * List of allowed clients
26405
+ * @minLength `1`
26406
+ */
26407
+ AllowedClients?: string[];
26408
+ /**
26409
+ * OpenID Connect discovery URL
26410
+ * @pattern `^.+/\.well-known/openid-configuration$`
26411
+ */
26412
+ DiscoveryUrl: string;
26413
+ };
26414
+ /**
26415
+ * Type definition for `AWS::BedrockAgentCore::Runtime.EnvironmentVariablesMap`.
26416
+ * Environment variable attributes
26417
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-environmentvariablesmap.html}
26418
+ */
26419
+ export type BedrockAgentCoreRuntimeEnvironmentVariablesMap = Record<string, string>;
26420
+ /**
26421
+ * Type definition for `AWS::BedrockAgentCore::Runtime.NetworkConfiguration`.
26422
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-networkconfiguration.html}
26423
+ */
26424
+ export type BedrockAgentCoreRuntimeNetworkConfiguration = {
26425
+ /**
26426
+ * Network mode configuration type
26427
+ */
26428
+ NetworkMode: BedrockAgentCoreRuntimeNetworkMode;
26429
+ };
26430
+ /**
26431
+ * Type definition for `AWS::BedrockAgentCore::Runtime.NetworkMode`.
26432
+ * Network mode configuration type
26433
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-networkmode.html}
26434
+ */
26435
+ export type BedrockAgentCoreRuntimeNetworkMode = "PUBLIC";
26436
+ /**
26437
+ * Type definition for `AWS::BedrockAgentCore::Runtime.ProtocolConfiguration`.
26438
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-protocolconfiguration.html}
26439
+ */
26440
+ export type BedrockAgentCoreRuntimeProtocolConfiguration = "MCP" | "HTTP";
26441
+ /**
26442
+ * Type definition for `AWS::BedrockAgentCore::Runtime.TagsMap`.
26443
+ * A map of tag keys and values
26444
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-tagsmap.html}
26445
+ */
26446
+ export type BedrockAgentCoreRuntimeTagsMap = Record<string, string>;
26447
+ /**
26448
+ * Type definition for `AWS::BedrockAgentCore::Runtime.WorkloadIdentityDetails`.
26449
+ * Configuration for workload identity
26450
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-workloadidentitydetails.html}
26451
+ */
26452
+ export type BedrockAgentCoreRuntimeWorkloadIdentityDetails = {
26453
+ /**
26454
+ * ARN of the workload identity
26455
+ * @minLength `1`
26456
+ * @maxLength `1024`
26457
+ */
26458
+ WorkloadIdentityArn: string;
26459
+ };
26460
+ /**
26461
+ * Resource definition for AWS::BedrockAgentCore::RuntimeEndpoint
26462
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html}
26463
+ */
26464
+ export type BedrockAgentCoreRuntimeEndpointProps = {
26465
+ /**
26466
+ * The ID of the parent Agent Runtime (required for creation)
26467
+ * @pattern `^[a-zA-Z][a-zA-Z0-9_]{0,99}-[a-zA-Z0-9]{10}$`
26468
+ */
26469
+ AgentRuntimeId: string;
26470
+ /**
26471
+ * The version of the AgentCore Runtime to use for the endpoint.
26472
+ * @pattern `^([1-9][0-9]{0,4})$`
26473
+ */
26474
+ AgentRuntimeVersion?: string;
26475
+ /**
26476
+ * The description of the AgentCore Runtime endpoint.
26477
+ * @minLength `1`
26478
+ * @maxLength `256`
26479
+ */
26480
+ Description?: string;
26481
+ /**
26482
+ * The name of the Agent Runtime Endpoint
26483
+ * @minLength `1`
26484
+ * @maxLength `48`
26485
+ * @pattern `^[a-zA-Z][a-zA-Z0-9_]{0,47}$`
26486
+ */
26487
+ Name: string;
26488
+ /**
26489
+ * A map of tag keys and values
26490
+ */
26491
+ Tags?: BedrockAgentCoreRuntimeEndpointTagsMap;
26492
+ };
26493
+ /**
26494
+ * Attribute type definition for `AWS::BedrockAgentCore::RuntimeEndpoint`.
26495
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#aws-resource-bedrockagentcore-runtimeendpoint-return-values}
26496
+ */
26497
+ export type BedrockAgentCoreRuntimeEndpointAttributes = {
26498
+ /**
26499
+ * The ARN of the Agent Runtime
26500
+ * @pattern `^arn:(-[^:]+)?:bedrock-agentcore:[a-z0-9-]+:[0-9]{12}:agent/[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}:([0-9]{0,4}[1-9][0-9]{0,4})$`
26501
+ */
26502
+ AgentRuntimeArn: string;
26503
+ /**
26504
+ * The Amazon Resource Name (ARN) of the AgentCore Runtime.
26505
+ * @pattern `^arn:aws:bedrock-agentcore:[a-z0-9-]+:[0-9]{12}:runtime/[a-zA-Z0-9_-]+/runtime-endpoint/[a-zA-Z0-9_-]+$`
26506
+ */
26507
+ AgentRuntimeEndpointArn: string;
26508
+ /**
26509
+ * The timestamp when the Agent Runtime Endpoint was created
26510
+ */
26511
+ CreatedAt: string;
26512
+ /**
26513
+ * The reason for failure if the endpoint is in a failed state
26514
+ */
26515
+ FailureReason: string;
26516
+ /**
26517
+ * The unique identifier of the AgentCore Runtime endpoint.
26518
+ * @pattern `^[a-zA-Z0-9_-]+$`
26519
+ */
26520
+ Id: string;
26521
+ /**
26522
+ * The timestamp when the Agent Runtime Endpoint was last updated
26523
+ */
26524
+ LastUpdatedAt: string;
26525
+ /**
26526
+ * The Live version of the Agent Runtime
26527
+ * @pattern `^([1-9][0-9]{0,4})$`
26528
+ */
26529
+ LiveVersion: string;
26530
+ /**
26531
+ * The status of the Agent Runtime Endpoint
26532
+ */
26533
+ Status: BedrockAgentCoreRuntimeEndpointAgentRuntimeEndpointStatus;
26534
+ /**
26535
+ * The target version of the AgentCore Runtime for the endpoint.
26536
+ * @pattern `^([1-9][0-9]{0,4})$`
26537
+ */
26538
+ TargetVersion: string;
26539
+ };
26540
+ /**
26541
+ * Type definition for `AWS::BedrockAgentCore::RuntimeEndpoint.AgentRuntimeEndpointStatus`.
26542
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtimeendpoint-agentruntimeendpointstatus.html}
26543
+ */
26544
+ export type BedrockAgentCoreRuntimeEndpointAgentRuntimeEndpointStatus = "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING";
26545
+ /**
26546
+ * Type definition for `AWS::BedrockAgentCore::RuntimeEndpoint.TagsMap`.
26547
+ * A map of tag keys and values
26548
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtimeendpoint-tagsmap.html}
26549
+ */
26550
+ export type BedrockAgentCoreRuntimeEndpointTagsMap = Record<string, string>;
26064
26551
  /**
26065
26552
  * Resource type definition for `AWS::Billing::BillingView`.
26066
26553
  * A billing view is a container of cost & usage metadata.
@@ -59871,22 +60358,22 @@ export type EC2NetworkInterfaceTag = {
59871
60358
  Value: string;
59872
60359
  };
59873
60360
  /**
59874
- * Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
59875
- * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
60361
+ * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
59876
60362
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
59877
60363
  */
59878
60364
  export type EC2NetworkInterfaceAttachmentProps = {
59879
60365
  /**
59880
- * Whether to delete the network interface when the instance terminates. By default, this value is set to ``true``.
60366
+ * Whether to delete the network interface when the instance terminates. By default, this value is set to true.
59881
60367
  */
59882
60368
  DeleteOnTermination?: boolean;
59883
60369
  /**
59884
- * The network interface's position in the attachment order. For example, the first attached network interface has a ``DeviceIndex`` of 0.
60370
+ * The network interface's position in the attachment order. For example, the first attached network interface has a DeviceIndex of 0.
59885
60371
  */
59886
60372
  DeviceIndex: string;
59887
60373
  /**
59888
- * Configures ENA Express for the network interface that this action attaches to the instance.
60374
+ * The number of ENA queues to be created with the instance.
59889
60375
  */
60376
+ EnaQueueCount?: number;
59890
60377
  EnaSrdSpecification?: EC2NetworkInterfaceAttachmentEnaSrdSpecification;
59891
60378
  /**
59892
60379
  * The ID of the instance to which you will attach the ENI.
@@ -59902,22 +60389,17 @@ export type EC2NetworkInterfaceAttachmentProps = {
59902
60389
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#aws-resource-ec2-networkinterfaceattachment-return-values}
59903
60390
  */
59904
60391
  export type EC2NetworkInterfaceAttachmentAttributes = {
60392
+ /**
60393
+ * The ID of the network interface attachment.
60394
+ */
59905
60395
  AttachmentId: string;
59906
60396
  };
59907
60397
  /**
59908
60398
  * Type definition for `AWS::EC2::NetworkInterfaceAttachment.EnaSrdSpecification`.
59909
- * ENA Express uses AWS Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.
59910
- To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.
59911
60399
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterfaceattachment-enasrdspecification.html}
59912
60400
  */
59913
60401
  export type EC2NetworkInterfaceAttachmentEnaSrdSpecification = {
59914
- /**
59915
- * Indicates whether ENA Express is enabled for the network interface.
59916
- */
59917
60402
  EnaSrdEnabled?: boolean;
59918
- /**
59919
- * Configures ENA Express for UDP network traffic.
59920
- */
59921
60403
  EnaSrdUdpSpecification?: {
59922
60404
  EnaSrdUdpEnabled?: boolean;
59923
60405
  };
@@ -105520,6 +106002,7 @@ export type LambdaPermissionProps = {
105520
106002
  * The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [Security and auth model for Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
105521
106003
  */
105522
106004
  FunctionUrlAuthType?: "AWS_IAM" | "NONE";
106005
+ InvokedViaFunctionUrl?: boolean;
105523
106006
  /**
105524
106007
  * The AWS-service, AWS-account, IAM user, or IAM role that invokes the function. If you specify a service, use ``SourceArn`` or ``SourceAccount`` to limit who can invoke the function through that service.
105525
106008
  * @minLength `1`
@@ -123532,6 +124015,10 @@ export type NetworkManagerConnectPeerAttributes = {
123532
124015
  * The Connect peer Regions where edges are located.
123533
124016
  */
123534
124017
  EdgeLocation: string;
124018
+ /**
124019
+ * Errors from the last modification of the connect peer.
124020
+ */
124021
+ LastModificationErrors: string[];
123535
124022
  /**
123536
124023
  * State of the connect peer.
123537
124024
  */
@@ -127089,6 +127576,13 @@ export type OmicsWorkflowProps = {
127089
127576
  * @maxLength `64`
127090
127577
  */
127091
127578
  Accelerators?: OmicsWorkflowAccelerators;
127579
+ ContainerRegistryMap?: OmicsWorkflowContainerRegistryMap;
127580
+ /**
127581
+ * @minLength `1`
127582
+ * @maxLength `750`
127583
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
127584
+ */
127585
+ ContainerRegistryMapUri?: string;
127092
127586
  DefinitionRepository?: OmicsWorkflowDefinitionRepository;
127093
127587
  /**
127094
127588
  * @minLength `1`
@@ -127199,6 +127693,14 @@ export type OmicsWorkflowAttributes = {
127199
127693
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-accelerators.html}
127200
127694
  */
127201
127695
  export type OmicsWorkflowAccelerators = "GPU";
127696
+ /**
127697
+ * Type definition for `AWS::Omics::Workflow.ContainerRegistryMap`.
127698
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-containerregistrymap.html}
127699
+ */
127700
+ export type OmicsWorkflowContainerRegistryMap = {
127701
+ ImageMappings?: OmicsWorkflowImageMapping[];
127702
+ RegistryMappings?: OmicsWorkflowRegistryMapping[];
127703
+ };
127202
127704
  /**
127203
127705
  * Type definition for `AWS::Omics::Workflow.DefinitionRepository`.
127204
127706
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-definitionrepository.html}
@@ -127221,6 +127723,54 @@ export type OmicsWorkflowDefinitionRepository = {
127221
127723
  fullRepositoryId?: string;
127222
127724
  sourceReference?: OmicsWorkflowSourceReference;
127223
127725
  };
127726
+ /**
127727
+ * Type definition for `AWS::Omics::Workflow.ImageMapping`.
127728
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-imagemapping.html}
127729
+ */
127730
+ export type OmicsWorkflowImageMapping = {
127731
+ /**
127732
+ * @minLength `1`
127733
+ * @maxLength `750`
127734
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
127735
+ */
127736
+ DestinationImage?: string;
127737
+ /**
127738
+ * @minLength `1`
127739
+ * @maxLength `750`
127740
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
127741
+ */
127742
+ SourceImage?: string;
127743
+ };
127744
+ /**
127745
+ * Type definition for `AWS::Omics::Workflow.RegistryMapping`.
127746
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html}
127747
+ */
127748
+ export type OmicsWorkflowRegistryMapping = {
127749
+ /**
127750
+ * @minLength `12`
127751
+ * @maxLength `12`
127752
+ * @pattern `^[0-9]+$`
127753
+ */
127754
+ EcrAccountId?: string;
127755
+ /**
127756
+ * @minLength `1`
127757
+ * @maxLength `256`
127758
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
127759
+ */
127760
+ EcrRepositoryPrefix?: string;
127761
+ /**
127762
+ * @minLength `1`
127763
+ * @maxLength `750`
127764
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
127765
+ */
127766
+ UpstreamRegistryUrl?: string;
127767
+ /**
127768
+ * @minLength `2`
127769
+ * @maxLength `30`
127770
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
127771
+ */
127772
+ UpstreamRepositoryPrefix?: string;
127773
+ };
127224
127774
  /**
127225
127775
  * Type definition for `AWS::Omics::Workflow.SourceReference`.
127226
127776
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html}
@@ -127283,6 +127833,13 @@ export type OmicsWorkflowVersionProps = {
127283
127833
  * @maxLength `64`
127284
127834
  */
127285
127835
  Accelerators?: OmicsWorkflowVersionAccelerators;
127836
+ ContainerRegistryMap?: OmicsWorkflowVersionContainerRegistryMap;
127837
+ /**
127838
+ * @minLength `1`
127839
+ * @maxLength `750`
127840
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
127841
+ */
127842
+ ContainerRegistryMapUri?: string;
127286
127843
  DefinitionRepository?: OmicsWorkflowVersionDefinitionRepository;
127287
127844
  /**
127288
127845
  * @minLength `1`
@@ -127396,6 +127953,14 @@ export type OmicsWorkflowVersionAttributes = {
127396
127953
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-accelerators.html}
127397
127954
  */
127398
127955
  export type OmicsWorkflowVersionAccelerators = "GPU";
127956
+ /**
127957
+ * Type definition for `AWS::Omics::WorkflowVersion.ContainerRegistryMap`.
127958
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-containerregistrymap.html}
127959
+ */
127960
+ export type OmicsWorkflowVersionContainerRegistryMap = {
127961
+ ImageMappings?: OmicsWorkflowVersionImageMapping[];
127962
+ RegistryMappings?: OmicsWorkflowVersionRegistryMapping[];
127963
+ };
127399
127964
  /**
127400
127965
  * Type definition for `AWS::Omics::WorkflowVersion.DefinitionRepository`.
127401
127966
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html}
@@ -127418,6 +127983,54 @@ export type OmicsWorkflowVersionDefinitionRepository = {
127418
127983
  fullRepositoryId?: string;
127419
127984
  sourceReference?: OmicsWorkflowVersionSourceReference;
127420
127985
  };
127986
+ /**
127987
+ * Type definition for `AWS::Omics::WorkflowVersion.ImageMapping`.
127988
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-imagemapping.html}
127989
+ */
127990
+ export type OmicsWorkflowVersionImageMapping = {
127991
+ /**
127992
+ * @minLength `1`
127993
+ * @maxLength `750`
127994
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
127995
+ */
127996
+ DestinationImage?: string;
127997
+ /**
127998
+ * @minLength `1`
127999
+ * @maxLength `750`
128000
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
128001
+ */
128002
+ SourceImage?: string;
128003
+ };
128004
+ /**
128005
+ * Type definition for `AWS::Omics::WorkflowVersion.RegistryMapping`.
128006
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html}
128007
+ */
128008
+ export type OmicsWorkflowVersionRegistryMapping = {
128009
+ /**
128010
+ * @minLength `12`
128011
+ * @maxLength `12`
128012
+ * @pattern `^[0-9]+$`
128013
+ */
128014
+ EcrAccountId?: string;
128015
+ /**
128016
+ * @minLength `1`
128017
+ * @maxLength `256`
128018
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
128019
+ */
128020
+ EcrRepositoryPrefix?: string;
128021
+ /**
128022
+ * @minLength `1`
128023
+ * @maxLength `750`
128024
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
128025
+ */
128026
+ UpstreamRegistryUrl?: string;
128027
+ /**
128028
+ * @minLength `2`
128029
+ * @maxLength `30`
128030
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
128031
+ */
128032
+ UpstreamRepositoryPrefix?: string;
128033
+ };
127421
128034
  /**
127422
128035
  * Type definition for `AWS::Omics::WorkflowVersion.SourceReference`.
127423
128036
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-sourcereference.html}
@@ -145227,6 +145840,8 @@ export type QuickSightDashboardDashboardPublishOptions = {
145227
145840
  */
145228
145841
  DataPointTooltipOption?: QuickSightDashboardDataPointTooltipOption;
145229
145842
  DataQAEnabledOption?: QuickSightDashboardDataQAEnabledOption;
145843
+ DataStoriesSharingOption?: QuickSightDashboardDataStoriesSharingOption;
145844
+ ExecutiveSummaryOption?: QuickSightDashboardExecutiveSummaryOption;
145230
145845
  /**
145231
145846
  * <p>Export to .csv option.</p>
145232
145847
  */
@@ -145606,6 +146221,13 @@ export type QuickSightDashboardDataSetReference = {
145606
146221
  */
145607
146222
  DataSetPlaceholder: string;
145608
146223
  };
146224
+ /**
146225
+ * Type definition for `AWS::QuickSight::Dashboard.DataStoriesSharingOption`.
146226
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datastoriessharingoption.html}
146227
+ */
146228
+ export type QuickSightDashboardDataStoriesSharingOption = {
146229
+ AvailabilityStatus?: QuickSightDashboardDashboardBehavior;
146230
+ };
145609
146231
  /**
145610
146232
  * Type definition for `AWS::QuickSight::Dashboard.DateAggregationFunction`.
145611
146233
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dateaggregationfunction.html}
@@ -146072,6 +146694,13 @@ export type QuickSightDashboardExcludePeriodConfiguration = {
146072
146694
  Granularity: QuickSightDashboardTimeGranularity;
146073
146695
  Status?: QuickSightDashboardWidgetStatus;
146074
146696
  };
146697
+ /**
146698
+ * Type definition for `AWS::QuickSight::Dashboard.ExecutiveSummaryOption`.
146699
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-executivesummaryoption.html}
146700
+ */
146701
+ export type QuickSightDashboardExecutiveSummaryOption = {
146702
+ AvailabilityStatus?: QuickSightDashboardDashboardBehavior;
146703
+ };
146075
146704
  /**
146076
146705
  * Type definition for `AWS::QuickSight::Dashboard.ExplicitHierarchy`.
146077
146706
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-explicithierarchy.html}
@@ -164877,6 +165506,7 @@ export type RDSDBClusterProps = {
164877
165506
  + Can't manage the master user password with AWS Secrets Manager if ``MasterUserPassword`` is specified.
164878
165507
  */
164879
165508
  ManageMasterUserPassword?: boolean;
165509
+ MasterUserAuthenticationType?: string;
164880
165510
  /**
164881
165511
  * The master password for the DB instance.
164882
165512
  If you specify the ``SourceDBClusterIdentifier``, ``SnapshotIdentifier``, or ``GlobalClusterIdentifier`` property, don't specify this property. The value is inherited from the source DB cluster, the snapshot, or the primary DB cluster for the global database cluster, respectively.
@@ -165866,6 +166496,7 @@ export type RDSDBInstanceProps = {
165866
166496
  + Can't manage the master user password with AWS Secrets Manager if ``MasterUserPassword`` is specified.
165867
166497
  */
165868
166498
  ManageMasterUserPassword?: boolean;
166499
+ MasterUserAuthenticationType?: string;
165869
166500
  /**
165870
166501
  * The password for the master user. The password can include any printable ASCII character except "/", """, or "@".
165871
166502
  *Amazon Aurora*
@@ -189523,18 +190154,23 @@ export type ServiceCatalogPortfolioPrincipalAssociationAttributes = {
189523
190154
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html}
189524
190155
  */
189525
190156
  export type ServiceCatalogPortfolioProductAssociationProps = {
190157
+ /**
190158
+ * The language code.
190159
+ */
189526
190160
  AcceptLanguage?: string;
189527
- PortfolioId: string;
189528
- ProductId: string;
190161
+ /**
190162
+ * The portfolio identifier.
190163
+ */
190164
+ PortfolioId?: string;
190165
+ /**
190166
+ * The product identifier.
190167
+ */
190168
+ ProductId?: string;
190169
+ /**
190170
+ * The identifier of the source portfolio. The source portfolio must be a portfolio imported from a different account than the one creating the association. This account must have previously shared this portfolio with the account creating the association.
190171
+ */
189529
190172
  SourcePortfolioId?: string;
189530
190173
  };
189531
- /**
189532
- * Attribute type definition for `AWS::ServiceCatalog::PortfolioProductAssociation`.
189533
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#aws-resource-servicecatalog-portfolioproductassociation-return-values}
189534
- */
189535
- export type ServiceCatalogPortfolioProductAssociationAttributes = {
189536
- Id: string;
189537
- };
189538
190174
  /**
189539
190175
  * Resource Type definition for AWS::ServiceCatalog::PortfolioShare
189540
190176
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioshare.html}
@@ -207594,6 +208230,10 @@ export interface ResourceTypes {
207594
208230
  "AWS::Bedrock::KnowledgeBase": BedrockKnowledgeBaseProps;
207595
208231
  "AWS::Bedrock::Prompt": BedrockPromptProps;
207596
208232
  "AWS::Bedrock::PromptVersion": BedrockPromptVersionProps;
208233
+ "AWS::BedrockAgentCore::BrowserCustom": BedrockAgentCoreBrowserCustomProps;
208234
+ "AWS::BedrockAgentCore::CodeInterpreterCustom": BedrockAgentCoreCodeInterpreterCustomProps;
208235
+ "AWS::BedrockAgentCore::Runtime": BedrockAgentCoreRuntimeProps;
208236
+ "AWS::BedrockAgentCore::RuntimeEndpoint": BedrockAgentCoreRuntimeEndpointProps;
207597
208237
  "AWS::Billing::BillingView": BillingBillingViewProps;
207598
208238
  "AWS::BillingConductor::BillingGroup": BillingConductorBillingGroupProps;
207599
208239
  "AWS::BillingConductor::CustomLineItem": BillingConductorCustomLineItemProps;
@@ -209029,6 +209669,10 @@ export interface AttributeTypes {
209029
209669
  "AWS::Bedrock::KnowledgeBase": BedrockKnowledgeBaseAttributes;
209030
209670
  "AWS::Bedrock::Prompt": BedrockPromptAttributes;
209031
209671
  "AWS::Bedrock::PromptVersion": BedrockPromptVersionAttributes;
209672
+ "AWS::BedrockAgentCore::BrowserCustom": BedrockAgentCoreBrowserCustomAttributes;
209673
+ "AWS::BedrockAgentCore::CodeInterpreterCustom": BedrockAgentCoreCodeInterpreterCustomAttributes;
209674
+ "AWS::BedrockAgentCore::Runtime": BedrockAgentCoreRuntimeAttributes;
209675
+ "AWS::BedrockAgentCore::RuntimeEndpoint": BedrockAgentCoreRuntimeEndpointAttributes;
209032
209676
  "AWS::Billing::BillingView": BillingBillingViewAttributes;
209033
209677
  "AWS::BillingConductor::BillingGroup": BillingConductorBillingGroupAttributes;
209034
209678
  "AWS::BillingConductor::CustomLineItem": BillingConductorCustomLineItemAttributes;
@@ -210010,7 +210654,6 @@ export interface AttributeTypes {
210010
210654
  "AWS::ServiceCatalog::LaunchTemplateConstraint": ServiceCatalogLaunchTemplateConstraintAttributes;
210011
210655
  "AWS::ServiceCatalog::Portfolio": ServiceCatalogPortfolioAttributes;
210012
210656
  "AWS::ServiceCatalog::PortfolioPrincipalAssociation": ServiceCatalogPortfolioPrincipalAssociationAttributes;
210013
- "AWS::ServiceCatalog::PortfolioProductAssociation": ServiceCatalogPortfolioProductAssociationAttributes;
210014
210657
  "AWS::ServiceCatalog::PortfolioShare": ServiceCatalogPortfolioShareAttributes;
210015
210658
  "AWS::ServiceCatalog::ResourceUpdateConstraint": ServiceCatalogResourceUpdateConstraintAttributes;
210016
210659
  "AWS::ServiceCatalog::ServiceAction": ServiceCatalogServiceActionAttributes;
@@ -210334,6 +210977,10 @@ export declare const ResourceType: {
210334
210977
  readonly BedrockKnowledgeBase: "AWS::Bedrock::KnowledgeBase";
210335
210978
  readonly BedrockPrompt: "AWS::Bedrock::Prompt";
210336
210979
  readonly BedrockPromptVersion: "AWS::Bedrock::PromptVersion";
210980
+ readonly BedrockAgentCoreBrowserCustom: "AWS::BedrockAgentCore::BrowserCustom";
210981
+ readonly BedrockAgentCoreCodeInterpreterCustom: "AWS::BedrockAgentCore::CodeInterpreterCustom";
210982
+ readonly BedrockAgentCoreRuntime: "AWS::BedrockAgentCore::Runtime";
210983
+ readonly BedrockAgentCoreRuntimeEndpoint: "AWS::BedrockAgentCore::RuntimeEndpoint";
210337
210984
  readonly BillingBillingView: "AWS::Billing::BillingView";
210338
210985
  readonly BillingConductorBillingGroup: "AWS::BillingConductor::BillingGroup";
210339
210986
  readonly BillingConductorCustomLineItem: "AWS::BillingConductor::CustomLineItem";