@aws-sdk/client-bedrock-agentcore-control 3.1056.0 → 3.1057.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +5 -0
- package/dist-cjs/schemas/schemas_0.js +85 -64
- package/dist-es/models/enums.js +4 -0
- package/dist-es/schemas/schemas_0.js +77 -56
- package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +8 -1
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +53 -18
- package/dist-types/commands/CreatePaymentCredentialProviderCommand.d.ts +32 -4
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +1 -2
- package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +2 -0
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +2 -0
- package/dist-types/commands/GetPaymentCredentialProviderCommand.d.ts +8 -0
- package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +8 -1
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +53 -18
- package/dist-types/commands/UpdatePaymentCredentialProviderCommand.d.ts +32 -4
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +69 -19
- package/dist-types/models/models_1.d.ts +234 -28
- package/dist-types/models/models_2.d.ts +10 -0
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -7
- package/dist-types/ts3.4/models/models_1.d.ts +60 -18
- package/dist-types/ts3.4/models/models_2.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1,5 +1,21 @@
|
|
|
1
|
-
import type { ActorTokenContentType, ClientAuthenticationMethodType, ContentLevel, ContentType, CredentialProviderVendorType, DescriptorType, FilterOperator, FindingType, MemoryStatus, MemoryStrategyStatus, MemoryStrategyType, MemoryView, MetadataValueType, OnBehalfOfTokenExchangeGrantTypeType, OnlineEvaluationConfigStatus, OnlineEvaluationExecutionStatus, OverrideType, PaymentConnectorStatus, PaymentConnectorType, PaymentCredentialProviderVendorType, PaymentManagerStatus, PaymentsAuthorizerType, PolicyEngineStatus, PolicyGenerationStatus, PolicyStatus, PolicyValidationMode, RegistryAuthorizerType, RegistryRecordCredentialProviderType, RegistryRecordOAuthGrantType, RegistryRecordStatus, RegistryStatus, Status, SynchronizationType } from "./enums";
|
|
2
|
-
import type { A2aDescriptor, AgentSkillsDescriptor, AuthorizerConfiguration,
|
|
1
|
+
import type { ActorTokenContentType, ClientAuthenticationMethodType, ContentLevel, ContentType, CredentialProviderVendorType, DescriptorType, FilterOperator, FindingType, MemoryStatus, MemoryStrategyStatus, MemoryStrategyType, MemoryView, MetadataValueType, OnBehalfOfTokenExchangeGrantTypeType, OnlineEvaluationConfigStatus, OnlineEvaluationExecutionStatus, OverrideType, PaymentConnectorStatus, PaymentConnectorType, PaymentCredentialProviderVendorType, PaymentManagerStatus, PaymentsAuthorizerType, PolicyEngineStatus, PolicyGenerationStatus, PolicyStatus, PolicyValidationMode, RegistryAuthorizerType, RegistryRecordCredentialProviderType, RegistryRecordOAuthGrantType, RegistryRecordStatus, RegistryStatus, SecretSourceType, Status, SynchronizationType } from "./enums";
|
|
2
|
+
import type { A2aDescriptor, AgentSkillsDescriptor, AuthorizerConfiguration, KmsConfiguration, PrivateEndpoint, PrivateEndpointOverride, Secret, SecretReference, SkillDefinition, SkillMdDefinition, UpdatedAuthorizerConfiguration, WorkloadIdentityDetails } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>A metadata key indexed for filtering.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface IndexedKey {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The metadata key name to index.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
key: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The data type of the indexed key.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
type: MetadataValueType | undefined;
|
|
18
|
+
}
|
|
3
19
|
/**
|
|
4
20
|
* <p>Configurations for overriding the consolidation step of the episodic memory strategy.</p>
|
|
5
21
|
* @public
|
|
@@ -2392,7 +2408,17 @@ export interface AtlassianOauth2ProviderConfigInput {
|
|
|
2392
2408
|
* <p>The client secret for the Atlassian OAuth2 provider. This secret is assigned by Atlassian and used along with the client ID to authenticate your application.</p>
|
|
2393
2409
|
* @public
|
|
2394
2410
|
*/
|
|
2395
|
-
clientSecret
|
|
2411
|
+
clientSecret?: string | undefined;
|
|
2412
|
+
/**
|
|
2413
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2414
|
+
* @public
|
|
2415
|
+
*/
|
|
2416
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2417
|
+
/**
|
|
2418
|
+
* <p>The source type of the client secret for the Atlassian OAuth2 provider. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2419
|
+
* @public
|
|
2420
|
+
*/
|
|
2421
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2396
2422
|
}
|
|
2397
2423
|
/**
|
|
2398
2424
|
* <p>Contains the authorization server metadata for an OAuth2 provider.</p>
|
|
@@ -2523,15 +2549,15 @@ export interface CustomOauth2ProviderConfigInput {
|
|
|
2523
2549
|
*/
|
|
2524
2550
|
clientSecret?: string | undefined;
|
|
2525
2551
|
/**
|
|
2526
|
-
* <p>
|
|
2552
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2527
2553
|
* @public
|
|
2528
2554
|
*/
|
|
2529
|
-
|
|
2555
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2530
2556
|
/**
|
|
2531
|
-
* <p>The
|
|
2557
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2532
2558
|
* @public
|
|
2533
2559
|
*/
|
|
2534
|
-
|
|
2560
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2535
2561
|
/**
|
|
2536
2562
|
* <p>The configuration for on-behalf-of token exchange. This enables authentication flows that use RFC 8693 token exchange or RFC 7523 JWT authorization grants.</p>
|
|
2537
2563
|
* @public
|
|
@@ -2542,6 +2568,16 @@ export interface CustomOauth2ProviderConfigInput {
|
|
|
2542
2568
|
* @public
|
|
2543
2569
|
*/
|
|
2544
2570
|
clientAuthenticationMethod?: ClientAuthenticationMethodType | undefined;
|
|
2571
|
+
/**
|
|
2572
|
+
* <p>The default private endpoint for the custom OAuth2 provider, enabling secure connectivity through a VPC Lattice resource configuration.</p>
|
|
2573
|
+
* @public
|
|
2574
|
+
*/
|
|
2575
|
+
privateEndpoint?: PrivateEndpoint | undefined;
|
|
2576
|
+
/**
|
|
2577
|
+
* <p>The private endpoint overrides for the custom OAuth2 provider configuration.</p>
|
|
2578
|
+
* @public
|
|
2579
|
+
*/
|
|
2580
|
+
privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
|
|
2545
2581
|
}
|
|
2546
2582
|
/**
|
|
2547
2583
|
* <p>Input configuration for a GitHub OAuth2 provider.</p>
|
|
@@ -2557,7 +2593,17 @@ export interface GithubOauth2ProviderConfigInput {
|
|
|
2557
2593
|
* <p>The client secret for the GitHub OAuth2 provider.</p>
|
|
2558
2594
|
* @public
|
|
2559
2595
|
*/
|
|
2560
|
-
clientSecret
|
|
2596
|
+
clientSecret?: string | undefined;
|
|
2597
|
+
/**
|
|
2598
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2599
|
+
* @public
|
|
2600
|
+
*/
|
|
2601
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2602
|
+
/**
|
|
2603
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2604
|
+
* @public
|
|
2605
|
+
*/
|
|
2606
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2561
2607
|
}
|
|
2562
2608
|
/**
|
|
2563
2609
|
* <p>Input configuration for a Google OAuth2 provider.</p>
|
|
@@ -2573,7 +2619,17 @@ export interface GoogleOauth2ProviderConfigInput {
|
|
|
2573
2619
|
* <p>The client secret for the Google OAuth2 provider.</p>
|
|
2574
2620
|
* @public
|
|
2575
2621
|
*/
|
|
2576
|
-
clientSecret
|
|
2622
|
+
clientSecret?: string | undefined;
|
|
2623
|
+
/**
|
|
2624
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2625
|
+
* @public
|
|
2626
|
+
*/
|
|
2627
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2628
|
+
/**
|
|
2629
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2630
|
+
* @public
|
|
2631
|
+
*/
|
|
2632
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2577
2633
|
}
|
|
2578
2634
|
/**
|
|
2579
2635
|
* <p>Configuration settings for connecting to a supported OAuth2 provider. This includes client credentials and OAuth2 discovery information for providers that have built-in support.</p>
|
|
@@ -2589,7 +2645,17 @@ export interface IncludedOauth2ProviderConfigInput {
|
|
|
2589
2645
|
* <p>The client secret for the supported OAuth2 provider. This secret is assigned by the OAuth2 provider and used along with the client ID to authenticate your application.</p>
|
|
2590
2646
|
* @public
|
|
2591
2647
|
*/
|
|
2592
|
-
clientSecret
|
|
2648
|
+
clientSecret?: string | undefined;
|
|
2649
|
+
/**
|
|
2650
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2651
|
+
* @public
|
|
2652
|
+
*/
|
|
2653
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2654
|
+
/**
|
|
2655
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2656
|
+
* @public
|
|
2657
|
+
*/
|
|
2658
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2593
2659
|
/**
|
|
2594
2660
|
* <p>Token issuer of your isolated OAuth2 application tenant. This URL identifies the authorization server that issues tokens for this provider.</p>
|
|
2595
2661
|
* @public
|
|
@@ -2620,7 +2686,17 @@ export interface LinkedinOauth2ProviderConfigInput {
|
|
|
2620
2686
|
* <p>The client secret for the LinkedIn OAuth2 provider. This secret is assigned by LinkedIn and used along with the client ID to authenticate your application.</p>
|
|
2621
2687
|
* @public
|
|
2622
2688
|
*/
|
|
2623
|
-
clientSecret
|
|
2689
|
+
clientSecret?: string | undefined;
|
|
2690
|
+
/**
|
|
2691
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2692
|
+
* @public
|
|
2693
|
+
*/
|
|
2694
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2695
|
+
/**
|
|
2696
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2697
|
+
* @public
|
|
2698
|
+
*/
|
|
2699
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2624
2700
|
}
|
|
2625
2701
|
/**
|
|
2626
2702
|
* <p>Input configuration for a Microsoft OAuth2 provider.</p>
|
|
@@ -2636,7 +2712,17 @@ export interface MicrosoftOauth2ProviderConfigInput {
|
|
|
2636
2712
|
* <p>The client secret for the Microsoft OAuth2 provider.</p>
|
|
2637
2713
|
* @public
|
|
2638
2714
|
*/
|
|
2639
|
-
clientSecret
|
|
2715
|
+
clientSecret?: string | undefined;
|
|
2716
|
+
/**
|
|
2717
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2718
|
+
* @public
|
|
2719
|
+
*/
|
|
2720
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2721
|
+
/**
|
|
2722
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2723
|
+
* @public
|
|
2724
|
+
*/
|
|
2725
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2640
2726
|
/**
|
|
2641
2727
|
* <p>The Microsoft Entra ID (formerly Azure AD) tenant ID for your organization. This identifies the specific tenant within Microsoft's identity platform where your application is registered.</p>
|
|
2642
2728
|
* @public
|
|
@@ -2657,7 +2743,17 @@ export interface SalesforceOauth2ProviderConfigInput {
|
|
|
2657
2743
|
* <p>The client secret for the Salesforce OAuth2 provider.</p>
|
|
2658
2744
|
* @public
|
|
2659
2745
|
*/
|
|
2660
|
-
clientSecret
|
|
2746
|
+
clientSecret?: string | undefined;
|
|
2747
|
+
/**
|
|
2748
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2749
|
+
* @public
|
|
2750
|
+
*/
|
|
2751
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2752
|
+
/**
|
|
2753
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2754
|
+
* @public
|
|
2755
|
+
*/
|
|
2756
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2661
2757
|
}
|
|
2662
2758
|
/**
|
|
2663
2759
|
* <p>Input configuration for a Slack OAuth2 provider.</p>
|
|
@@ -2673,7 +2769,17 @@ export interface SlackOauth2ProviderConfigInput {
|
|
|
2673
2769
|
* <p>The client secret for the Slack OAuth2 provider.</p>
|
|
2674
2770
|
* @public
|
|
2675
2771
|
*/
|
|
2676
|
-
clientSecret
|
|
2772
|
+
clientSecret?: string | undefined;
|
|
2773
|
+
/**
|
|
2774
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2775
|
+
* @public
|
|
2776
|
+
*/
|
|
2777
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2778
|
+
/**
|
|
2779
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2780
|
+
* @public
|
|
2781
|
+
*/
|
|
2782
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2677
2783
|
}
|
|
2678
2784
|
/**
|
|
2679
2785
|
* <p>Contains the input configuration for an OAuth2 provider.</p>
|
|
@@ -3243,6 +3349,16 @@ export interface CreateOauth2CredentialProviderResponse {
|
|
|
3243
3349
|
* @public
|
|
3244
3350
|
*/
|
|
3245
3351
|
clientSecretArn: Secret | undefined;
|
|
3352
|
+
/**
|
|
3353
|
+
* <p>The JSON key used to extract the client secret value from the AWS Secrets Manager secret.</p>
|
|
3354
|
+
* @public
|
|
3355
|
+
*/
|
|
3356
|
+
clientSecretJsonKey?: string | undefined;
|
|
3357
|
+
/**
|
|
3358
|
+
* <p>The source type of the client secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
3359
|
+
* @public
|
|
3360
|
+
*/
|
|
3361
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
3246
3362
|
/**
|
|
3247
3363
|
* <p>The name of the OAuth2 credential provider.</p>
|
|
3248
3364
|
* @public
|
|
@@ -3303,6 +3419,16 @@ export interface GetOauth2CredentialProviderResponse {
|
|
|
3303
3419
|
* @public
|
|
3304
3420
|
*/
|
|
3305
3421
|
clientSecretArn: Secret | undefined;
|
|
3422
|
+
/**
|
|
3423
|
+
* <p>The JSON key used to extract the client secret value from the AWS Secrets Manager secret.</p>
|
|
3424
|
+
* @public
|
|
3425
|
+
*/
|
|
3426
|
+
clientSecretJsonKey?: string | undefined;
|
|
3427
|
+
/**
|
|
3428
|
+
* <p>The source type of the client secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
3429
|
+
* @public
|
|
3430
|
+
*/
|
|
3431
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
3306
3432
|
/**
|
|
3307
3433
|
* <p>The name of the OAuth2 credential provider.</p>
|
|
3308
3434
|
* @public
|
|
@@ -3439,6 +3565,16 @@ export interface UpdateOauth2CredentialProviderResponse {
|
|
|
3439
3565
|
* @public
|
|
3440
3566
|
*/
|
|
3441
3567
|
clientSecretArn: Secret | undefined;
|
|
3568
|
+
/**
|
|
3569
|
+
* <p>The JSON key used to extract the client secret value from the AWS Secrets Manager secret.</p>
|
|
3570
|
+
* @public
|
|
3571
|
+
*/
|
|
3572
|
+
clientSecretJsonKey?: string | undefined;
|
|
3573
|
+
/**
|
|
3574
|
+
* <p>The source type of the client secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
3575
|
+
* @public
|
|
3576
|
+
*/
|
|
3577
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
3442
3578
|
/**
|
|
3443
3579
|
* <p>The name of the OAuth2 credential provider.</p>
|
|
3444
3580
|
* @public
|
|
@@ -4087,12 +4223,32 @@ export interface CoinbaseCdpConfigurationInput {
|
|
|
4087
4223
|
* <p>The API key secret provided by Coinbase Developer Platform.</p>
|
|
4088
4224
|
* @public
|
|
4089
4225
|
*/
|
|
4090
|
-
apiKeySecret
|
|
4226
|
+
apiKeySecret?: string | undefined;
|
|
4227
|
+
/**
|
|
4228
|
+
* <p>The source type of the API key secret for the Coinbase Developer Platform. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
4229
|
+
* @public
|
|
4230
|
+
*/
|
|
4231
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
4232
|
+
/**
|
|
4233
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the API key secret. This includes the secret ID and the JSON key used to extract the API key secret value from the secret. Required when <code>apiKeySecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
4234
|
+
* @public
|
|
4235
|
+
*/
|
|
4236
|
+
apiKeySecretConfig?: SecretReference | undefined;
|
|
4091
4237
|
/**
|
|
4092
4238
|
* <p>The wallet secret provided by Coinbase Developer Platform.</p>
|
|
4093
4239
|
* @public
|
|
4094
4240
|
*/
|
|
4095
|
-
walletSecret
|
|
4241
|
+
walletSecret?: string | undefined;
|
|
4242
|
+
/**
|
|
4243
|
+
* <p>The source type of the wallet secret for the Coinbase Developer Platform. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
4244
|
+
* @public
|
|
4245
|
+
*/
|
|
4246
|
+
walletSecretSource?: SecretSourceType | undefined;
|
|
4247
|
+
/**
|
|
4248
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the wallet secret. This includes the secret ID and the JSON key used to extract the wallet secret value from the secret. Required when <code>walletSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
4249
|
+
* @public
|
|
4250
|
+
*/
|
|
4251
|
+
walletSecretConfig?: SecretReference | undefined;
|
|
4096
4252
|
}
|
|
4097
4253
|
/**
|
|
4098
4254
|
* <p>Stripe Privy configuration — credentials provided by Stripe and Privy.</p>
|
|
@@ -4108,12 +4264,32 @@ export interface StripePrivyConfigurationInput {
|
|
|
4108
4264
|
* <p>The app secret provided by Privy.</p>
|
|
4109
4265
|
* @public
|
|
4110
4266
|
*/
|
|
4111
|
-
appSecret
|
|
4267
|
+
appSecret?: string | undefined;
|
|
4268
|
+
/**
|
|
4269
|
+
* <p>The source type of the app secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
4270
|
+
* @public
|
|
4271
|
+
*/
|
|
4272
|
+
appSecretSource?: SecretSourceType | undefined;
|
|
4273
|
+
/**
|
|
4274
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the app secret. This includes the secret ID and the JSON key used to extract the app secret value from the secret. Required when <code>appSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
4275
|
+
* @public
|
|
4276
|
+
*/
|
|
4277
|
+
appSecretConfig?: SecretReference | undefined;
|
|
4112
4278
|
/**
|
|
4113
4279
|
* <p>The authorization private key for the Stripe Privy integration.</p>
|
|
4114
4280
|
* @public
|
|
4115
4281
|
*/
|
|
4116
|
-
authorizationPrivateKey
|
|
4282
|
+
authorizationPrivateKey?: string | undefined;
|
|
4283
|
+
/**
|
|
4284
|
+
* <p>The source type of the authorization private key. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
4285
|
+
* @public
|
|
4286
|
+
*/
|
|
4287
|
+
authorizationPrivateKeySource?: SecretSourceType | undefined;
|
|
4288
|
+
/**
|
|
4289
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the authorization private key. This includes the secret ID and the JSON key used to extract the authorization private key value from the secret. Required when <code>authorizationPrivateKeySource</code> is set to <code>EXTERNAL</code>.</p>
|
|
4290
|
+
* @public
|
|
4291
|
+
*/
|
|
4292
|
+
authorizationPrivateKeyConfig?: SecretReference | undefined;
|
|
4117
4293
|
/**
|
|
4118
4294
|
* <p>The authorization ID for the Stripe Privy integration.</p>
|
|
4119
4295
|
* @public
|
|
@@ -4205,11 +4381,31 @@ export interface CoinbaseCdpConfigurationOutput {
|
|
|
4205
4381
|
* @public
|
|
4206
4382
|
*/
|
|
4207
4383
|
apiKeySecretArn: Secret | undefined;
|
|
4384
|
+
/**
|
|
4385
|
+
* <p>The JSON key used to extract the API key secret value from the AWS Secrets Manager secret.</p>
|
|
4386
|
+
* @public
|
|
4387
|
+
*/
|
|
4388
|
+
apiKeySecretJsonKey?: string | undefined;
|
|
4389
|
+
/**
|
|
4390
|
+
* <p>The source type of the API key secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
4391
|
+
* @public
|
|
4392
|
+
*/
|
|
4393
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
4208
4394
|
/**
|
|
4209
4395
|
* <p>Contains information about a secret in AWS Secrets Manager.</p>
|
|
4210
4396
|
* @public
|
|
4211
4397
|
*/
|
|
4212
4398
|
walletSecretArn: Secret | undefined;
|
|
4399
|
+
/**
|
|
4400
|
+
* <p>The JSON key used to extract the wallet secret value from the AWS Secrets Manager secret.</p>
|
|
4401
|
+
* @public
|
|
4402
|
+
*/
|
|
4403
|
+
walletSecretJsonKey?: string | undefined;
|
|
4404
|
+
/**
|
|
4405
|
+
* <p>The source type of the wallet secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
4406
|
+
* @public
|
|
4407
|
+
*/
|
|
4408
|
+
walletSecretSource?: SecretSourceType | undefined;
|
|
4213
4409
|
}
|
|
4214
4410
|
/**
|
|
4215
4411
|
* <p>Stripe Privy configuration output with secret ARNs.</p>
|
|
@@ -4226,11 +4422,31 @@ export interface StripePrivyConfigurationOutput {
|
|
|
4226
4422
|
* @public
|
|
4227
4423
|
*/
|
|
4228
4424
|
appSecretArn: Secret | undefined;
|
|
4425
|
+
/**
|
|
4426
|
+
* <p>The JSON key used to extract the app secret value from the AWS Secrets Manager secret.</p>
|
|
4427
|
+
* @public
|
|
4428
|
+
*/
|
|
4429
|
+
appSecretJsonKey?: string | undefined;
|
|
4430
|
+
/**
|
|
4431
|
+
* <p>The source type of the app secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
4432
|
+
* @public
|
|
4433
|
+
*/
|
|
4434
|
+
appSecretSource?: SecretSourceType | undefined;
|
|
4229
4435
|
/**
|
|
4230
4436
|
* <p>Contains information about a secret in AWS Secrets Manager.</p>
|
|
4231
4437
|
* @public
|
|
4232
4438
|
*/
|
|
4233
4439
|
authorizationPrivateKeyArn: Secret | undefined;
|
|
4440
|
+
/**
|
|
4441
|
+
* <p>The JSON key used to extract the authorization private key value from the AWS Secrets Manager secret.</p>
|
|
4442
|
+
* @public
|
|
4443
|
+
*/
|
|
4444
|
+
authorizationPrivateKeyJsonKey?: string | undefined;
|
|
4445
|
+
/**
|
|
4446
|
+
* <p>The source type of the authorization private key. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
4447
|
+
* @public
|
|
4448
|
+
*/
|
|
4449
|
+
authorizationPrivateKeySource?: SecretSourceType | undefined;
|
|
4234
4450
|
/**
|
|
4235
4451
|
* <p>The authorization ID for the Stripe Privy integration.</p>
|
|
4236
4452
|
* @public
|
|
@@ -8251,13 +8467,3 @@ export interface CreateWorkloadIdentityResponse {
|
|
|
8251
8467
|
*/
|
|
8252
8468
|
allowedResourceOauth2ReturnUrls?: string[] | undefined;
|
|
8253
8469
|
}
|
|
8254
|
-
/**
|
|
8255
|
-
* @public
|
|
8256
|
-
*/
|
|
8257
|
-
export interface DeleteWorkloadIdentityRequest {
|
|
8258
|
-
/**
|
|
8259
|
-
* <p>The name of the workload identity to delete.</p>
|
|
8260
|
-
* @public
|
|
8261
|
-
*/
|
|
8262
|
-
name: string | undefined;
|
|
8263
|
-
}
|
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
import type { SchemaType, TargetProtocolType, TargetStatus } from "./enums";
|
|
2
2
|
import type { ApiGatewayTargetConfiguration, ApiSchemaConfiguration, AuthorizationData, CredentialProviderConfiguration, HttpTargetConfiguration, ManagedResourceDetails, McpServerTargetConfiguration, MetadataConfiguration, PrivateEndpoint, S3Configuration } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface DeleteWorkloadIdentityRequest {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The name of the workload identity to delete.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
name: string | undefined;
|
|
12
|
+
}
|
|
3
13
|
/**
|
|
4
14
|
* @public
|
|
5
15
|
*/
|
|
@@ -436,6 +436,7 @@ export declare var SalesforceOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
|
436
436
|
export declare var SamplingConfig$: StaticStructureSchema;
|
|
437
437
|
export declare var SchemaDefinition$: StaticStructureSchema;
|
|
438
438
|
export declare var Secret$: StaticStructureSchema;
|
|
439
|
+
export declare var SecretReference$: StaticStructureSchema;
|
|
439
440
|
export declare var SecretsManagerLocation$: StaticStructureSchema;
|
|
440
441
|
export declare var SelfManagedConfiguration$: StaticStructureSchema;
|
|
441
442
|
export declare var SelfManagedConfigurationInput$: StaticStructureSchema;
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../BedrockAgentCoreControlClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
DeleteWorkloadIdentityRequest,
|
|
10
|
+
DeleteWorkloadIdentityResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface DeleteWorkloadIdentityCommandInput
|
|
@@ -86,6 +86,12 @@ export declare const AgentRuntimeStatus: {
|
|
|
86
86
|
};
|
|
87
87
|
export type AgentRuntimeStatus =
|
|
88
88
|
(typeof AgentRuntimeStatus)[keyof typeof AgentRuntimeStatus];
|
|
89
|
+
export declare const SecretSourceType: {
|
|
90
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
91
|
+
readonly MANAGED: "MANAGED";
|
|
92
|
+
};
|
|
93
|
+
export type SecretSourceType =
|
|
94
|
+
(typeof SecretSourceType)[keyof typeof SecretSourceType];
|
|
89
95
|
export declare const BrowserProfileStatus: {
|
|
90
96
|
readonly DELETED: "DELETED";
|
|
91
97
|
readonly DELETING: "DELETING";
|
|
@@ -36,13 +36,13 @@ import {
|
|
|
36
36
|
IncludedData,
|
|
37
37
|
KeyType,
|
|
38
38
|
ListingMode,
|
|
39
|
-
MetadataValueType,
|
|
40
39
|
NetworkMode,
|
|
41
40
|
OAuthGrantType,
|
|
42
41
|
PrincipalMatchOperator,
|
|
43
42
|
ResourceType,
|
|
44
43
|
RestApiMethod,
|
|
45
44
|
SearchType,
|
|
45
|
+
SecretSourceType,
|
|
46
46
|
ServerProtocol,
|
|
47
47
|
TargetStatus,
|
|
48
48
|
} from "./enums";
|
|
@@ -667,9 +667,15 @@ export interface AgentSkillsDescriptor {
|
|
|
667
667
|
skillMd?: SkillMdDefinition | undefined;
|
|
668
668
|
skillDefinition?: SkillDefinition | undefined;
|
|
669
669
|
}
|
|
670
|
+
export interface SecretReference {
|
|
671
|
+
secretId: string | undefined;
|
|
672
|
+
jsonKey: string | undefined;
|
|
673
|
+
}
|
|
670
674
|
export interface CreateApiKeyCredentialProviderRequest {
|
|
671
675
|
name: string | undefined;
|
|
672
|
-
apiKey
|
|
676
|
+
apiKey?: string | undefined;
|
|
677
|
+
apiKeySecretConfig?: SecretReference | undefined;
|
|
678
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
673
679
|
tags?: Record<string, string> | undefined;
|
|
674
680
|
}
|
|
675
681
|
export interface Secret {
|
|
@@ -677,6 +683,8 @@ export interface Secret {
|
|
|
677
683
|
}
|
|
678
684
|
export interface CreateApiKeyCredentialProviderResponse {
|
|
679
685
|
apiKeySecretArn: Secret | undefined;
|
|
686
|
+
apiKeySecretJsonKey?: string | undefined;
|
|
687
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
680
688
|
name: string | undefined;
|
|
681
689
|
credentialProviderArn: string | undefined;
|
|
682
690
|
}
|
|
@@ -689,6 +697,8 @@ export interface GetApiKeyCredentialProviderRequest {
|
|
|
689
697
|
}
|
|
690
698
|
export interface GetApiKeyCredentialProviderResponse {
|
|
691
699
|
apiKeySecretArn: Secret | undefined;
|
|
700
|
+
apiKeySecretJsonKey?: string | undefined;
|
|
701
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
692
702
|
name: string | undefined;
|
|
693
703
|
credentialProviderArn: string | undefined;
|
|
694
704
|
createdTime: Date | undefined;
|
|
@@ -710,10 +720,14 @@ export interface ListApiKeyCredentialProvidersResponse {
|
|
|
710
720
|
}
|
|
711
721
|
export interface UpdateApiKeyCredentialProviderRequest {
|
|
712
722
|
name: string | undefined;
|
|
713
|
-
apiKey
|
|
723
|
+
apiKey?: string | undefined;
|
|
724
|
+
apiKeySecretConfig?: SecretReference | undefined;
|
|
725
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
714
726
|
}
|
|
715
727
|
export interface UpdateApiKeyCredentialProviderResponse {
|
|
716
728
|
apiKeySecretArn: Secret | undefined;
|
|
729
|
+
apiKeySecretJsonKey?: string | undefined;
|
|
730
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
717
731
|
name: string | undefined;
|
|
718
732
|
credentialProviderArn: string | undefined;
|
|
719
733
|
createdTime: Date | undefined;
|
|
@@ -2513,7 +2527,3 @@ export interface ListTagsForResourceRequest {
|
|
|
2513
2527
|
export interface ListTagsForResourceResponse {
|
|
2514
2528
|
tags?: Record<string, string> | undefined;
|
|
2515
2529
|
}
|
|
2516
|
-
export interface IndexedKey {
|
|
2517
|
-
key: string | undefined;
|
|
2518
|
-
type: MetadataValueType | undefined;
|
|
2519
|
-
}
|