aws-sdk-bedrockagentcorecontrol 1.44.0 → 1.46.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.
@@ -639,7 +639,8 @@ module Aws::BedrockAgentCoreControl
639
639
  # @return [String]
640
640
  #
641
641
  # @!attribute [rw] vpc_config
642
- # VpcConfig for the Agent.
642
+ # The VPC configuration for the browser. This configuration is
643
+ # required when the network mode is set to `VPC`.
643
644
  # @return [Types::VpcConfig]
644
645
  #
645
646
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/BrowserNetworkConfiguration AWS API Documentation
@@ -1039,7 +1040,8 @@ module Aws::BedrockAgentCoreControl
1039
1040
  # @return [String]
1040
1041
  #
1041
1042
  # @!attribute [rw] vpc_config
1042
- # VpcConfig for the Agent.
1043
+ # The VPC configuration for the code interpreter. This configuration
1044
+ # is required when the network mode is set to `VPC`.
1043
1045
  # @return [Types::VpcConfig]
1044
1046
  #
1045
1047
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CodeInterpreterNetworkConfiguration AWS API Documentation
@@ -1096,6 +1098,55 @@ module Aws::BedrockAgentCoreControl
1096
1098
  include Aws::Structure
1097
1099
  end
1098
1100
 
1101
+ # Coinbase CDP configuration — credentials provided by Coinbase
1102
+ # Developer Platform.
1103
+ #
1104
+ # @!attribute [rw] api_key_id
1105
+ # The API key identifier provided by Coinbase Developer Platform.
1106
+ # @return [String]
1107
+ #
1108
+ # @!attribute [rw] api_key_secret
1109
+ # The API key secret provided by Coinbase Developer Platform.
1110
+ # @return [String]
1111
+ #
1112
+ # @!attribute [rw] wallet_secret
1113
+ # The wallet secret provided by Coinbase Developer Platform.
1114
+ # @return [String]
1115
+ #
1116
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CoinbaseCdpConfigurationInput AWS API Documentation
1117
+ #
1118
+ class CoinbaseCdpConfigurationInput < Struct.new(
1119
+ :api_key_id,
1120
+ :api_key_secret,
1121
+ :wallet_secret)
1122
+ SENSITIVE = [:api_key_secret, :wallet_secret]
1123
+ include Aws::Structure
1124
+ end
1125
+
1126
+ # Coinbase CDP configuration output with secret ARNs.
1127
+ #
1128
+ # @!attribute [rw] api_key_id
1129
+ # The API key identifier provided by Coinbase Developer Platform.
1130
+ # @return [String]
1131
+ #
1132
+ # @!attribute [rw] api_key_secret_arn
1133
+ # Contains information about a secret in AWS Secrets Manager.
1134
+ # @return [Types::Secret]
1135
+ #
1136
+ # @!attribute [rw] wallet_secret_arn
1137
+ # Contains information about a secret in AWS Secrets Manager.
1138
+ # @return [Types::Secret]
1139
+ #
1140
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CoinbaseCdpConfigurationOutput AWS API Documentation
1141
+ #
1142
+ class CoinbaseCdpConfigurationOutput < Struct.new(
1143
+ :api_key_id,
1144
+ :api_key_secret_arn,
1145
+ :wallet_secret_arn)
1146
+ SENSITIVE = []
1147
+ include Aws::Structure
1148
+ end
1149
+
1099
1150
  # The configuration for a component within a configuration bundle. The
1100
1151
  # component type is inferred from the component identifier ARN.
1101
1152
  #
@@ -2958,6 +3009,282 @@ module Aws::BedrockAgentCoreControl
2958
3009
  include Aws::Structure
2959
3010
  end
2960
3011
 
3012
+ # @!attribute [rw] payment_manager_id
3013
+ # The unique identifier of the payment manager to create the connector
3014
+ # for.
3015
+ # @return [String]
3016
+ #
3017
+ # @!attribute [rw] name
3018
+ # The name of the payment connector.
3019
+ # @return [String]
3020
+ #
3021
+ # @!attribute [rw] description
3022
+ # A description of the payment connector.
3023
+ # @return [String]
3024
+ #
3025
+ # @!attribute [rw] type
3026
+ # The type of payment connector, which determines the payment provider
3027
+ # integration.
3028
+ # @return [String]
3029
+ #
3030
+ # @!attribute [rw] credential_provider_configurations
3031
+ # The credential provider configurations for the payment connector.
3032
+ # These configurations specify how the connector authenticates with
3033
+ # the payment provider.
3034
+ # @return [Array<Types::CredentialsProviderConfiguration>]
3035
+ #
3036
+ # @!attribute [rw] client_token
3037
+ # A unique, case-sensitive identifier to ensure that the API request
3038
+ # completes no more than one time. If you don't specify this field, a
3039
+ # value is randomly generated for you. If this token matches a
3040
+ # previous request, the service ignores the request, but doesn't
3041
+ # return an error. For more information, see [Ensuring
3042
+ # idempotency][1].
3043
+ #
3044
+ # **A suitable default value is auto-generated.** You should normally
3045
+ # not need to pass this option.
3046
+ #
3047
+ #
3048
+ #
3049
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
3050
+ # @return [String]
3051
+ #
3052
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentConnectorRequest AWS API Documentation
3053
+ #
3054
+ class CreatePaymentConnectorRequest < Struct.new(
3055
+ :payment_manager_id,
3056
+ :name,
3057
+ :description,
3058
+ :type,
3059
+ :credential_provider_configurations,
3060
+ :client_token)
3061
+ SENSITIVE = []
3062
+ include Aws::Structure
3063
+ end
3064
+
3065
+ # @!attribute [rw] payment_connector_id
3066
+ # The unique identifier of the created payment connector.
3067
+ # @return [String]
3068
+ #
3069
+ # @!attribute [rw] payment_manager_id
3070
+ # The unique identifier of the parent payment manager.
3071
+ # @return [String]
3072
+ #
3073
+ # @!attribute [rw] name
3074
+ # The name of the created payment connector.
3075
+ # @return [String]
3076
+ #
3077
+ # @!attribute [rw] type
3078
+ # The type of the created payment connector.
3079
+ # @return [String]
3080
+ #
3081
+ # @!attribute [rw] credential_provider_configurations
3082
+ # The credential provider configurations for the created payment
3083
+ # connector.
3084
+ # @return [Array<Types::CredentialsProviderConfiguration>]
3085
+ #
3086
+ # @!attribute [rw] created_at
3087
+ # The timestamp when the payment connector was created.
3088
+ # @return [Time]
3089
+ #
3090
+ # @!attribute [rw] status
3091
+ # The current status of the payment connector. Possible values include
3092
+ # `CREATING`, `READY`, `UPDATING`, `DELETING`, `CREATE_FAILED`,
3093
+ # `UPDATE_FAILED`, and `DELETE_FAILED`.
3094
+ # @return [String]
3095
+ #
3096
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentConnectorResponse AWS API Documentation
3097
+ #
3098
+ class CreatePaymentConnectorResponse < Struct.new(
3099
+ :payment_connector_id,
3100
+ :payment_manager_id,
3101
+ :name,
3102
+ :type,
3103
+ :credential_provider_configurations,
3104
+ :created_at,
3105
+ :status)
3106
+ SENSITIVE = []
3107
+ include Aws::Structure
3108
+ end
3109
+
3110
+ # @!attribute [rw] name
3111
+ # Unique name for the payment credential provider.
3112
+ # @return [String]
3113
+ #
3114
+ # @!attribute [rw] credential_provider_vendor
3115
+ # The vendor type for the payment credential provider (e.g.,
3116
+ # CoinbaseCDP, StripePrivy).
3117
+ # @return [String]
3118
+ #
3119
+ # @!attribute [rw] provider_configuration_input
3120
+ # Configuration specific to the vendor, including API credentials.
3121
+ # @return [Types::PaymentProviderConfigurationInput]
3122
+ #
3123
+ # @!attribute [rw] tags
3124
+ # Optional tags for resource organization.
3125
+ # @return [Hash<String,String>]
3126
+ #
3127
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentCredentialProviderRequest AWS API Documentation
3128
+ #
3129
+ class CreatePaymentCredentialProviderRequest < Struct.new(
3130
+ :name,
3131
+ :credential_provider_vendor,
3132
+ :provider_configuration_input,
3133
+ :tags)
3134
+ SENSITIVE = []
3135
+ include Aws::Structure
3136
+ end
3137
+
3138
+ # @!attribute [rw] name
3139
+ # The name of the created payment credential provider.
3140
+ # @return [String]
3141
+ #
3142
+ # @!attribute [rw] credential_provider_vendor
3143
+ # The vendor type for the created payment credential provider.
3144
+ # @return [String]
3145
+ #
3146
+ # @!attribute [rw] credential_provider_arn
3147
+ # The Amazon Resource Name (ARN) of the created payment credential
3148
+ # provider.
3149
+ # @return [String]
3150
+ #
3151
+ # @!attribute [rw] provider_configuration_output
3152
+ # Output configuration (contains secret ARNs, excludes actual secret
3153
+ # values).
3154
+ # @return [Types::PaymentProviderConfigurationOutput]
3155
+ #
3156
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentCredentialProviderResponse AWS API Documentation
3157
+ #
3158
+ class CreatePaymentCredentialProviderResponse < Struct.new(
3159
+ :name,
3160
+ :credential_provider_vendor,
3161
+ :credential_provider_arn,
3162
+ :provider_configuration_output)
3163
+ SENSITIVE = []
3164
+ include Aws::Structure
3165
+ end
3166
+
3167
+ # @!attribute [rw] name
3168
+ # The name of the payment manager.
3169
+ # @return [String]
3170
+ #
3171
+ # @!attribute [rw] description
3172
+ # A description of the payment manager.
3173
+ # @return [String]
3174
+ #
3175
+ # @!attribute [rw] authorizer_type
3176
+ # The type of authorizer to use for the payment manager.
3177
+ #
3178
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
3179
+ #
3180
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM
3181
+ # credentials.
3182
+ # @return [String]
3183
+ #
3184
+ # @!attribute [rw] authorizer_configuration
3185
+ # The authorizer configuration for the payment manager.
3186
+ # @return [Types::AuthorizerConfiguration]
3187
+ #
3188
+ # @!attribute [rw] role_arn
3189
+ # The Amazon Resource Name (ARN) of the IAM role that the payment
3190
+ # manager assumes to access resources on your behalf.
3191
+ # @return [String]
3192
+ #
3193
+ # @!attribute [rw] client_token
3194
+ # A unique, case-sensitive identifier to ensure that the API request
3195
+ # completes no more than one time. If you don't specify this field, a
3196
+ # value is randomly generated for you. If this token matches a
3197
+ # previous request, the service ignores the request, but doesn't
3198
+ # return an error. For more information, see [Ensuring
3199
+ # idempotency][1].
3200
+ #
3201
+ # **A suitable default value is auto-generated.** You should normally
3202
+ # not need to pass this option.
3203
+ #
3204
+ #
3205
+ #
3206
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
3207
+ # @return [String]
3208
+ #
3209
+ # @!attribute [rw] tags
3210
+ # A map of tag keys and values to assign to the payment manager.
3211
+ # @return [Hash<String,String>]
3212
+ #
3213
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentManagerRequest AWS API Documentation
3214
+ #
3215
+ class CreatePaymentManagerRequest < Struct.new(
3216
+ :name,
3217
+ :description,
3218
+ :authorizer_type,
3219
+ :authorizer_configuration,
3220
+ :role_arn,
3221
+ :client_token,
3222
+ :tags)
3223
+ SENSITIVE = []
3224
+ include Aws::Structure
3225
+ end
3226
+
3227
+ # @!attribute [rw] payment_manager_arn
3228
+ # The Amazon Resource Name (ARN) of the created payment manager.
3229
+ # @return [String]
3230
+ #
3231
+ # @!attribute [rw] payment_manager_id
3232
+ # The unique identifier of the created payment manager.
3233
+ # @return [String]
3234
+ #
3235
+ # @!attribute [rw] name
3236
+ # The name of the created payment manager.
3237
+ # @return [String]
3238
+ #
3239
+ # @!attribute [rw] authorizer_type
3240
+ # The type of authorizer for the created payment manager.
3241
+ # @return [String]
3242
+ #
3243
+ # @!attribute [rw] authorizer_configuration
3244
+ # Represents inbound authorization configuration options used to
3245
+ # authenticate incoming requests.
3246
+ # @return [Types::AuthorizerConfiguration]
3247
+ #
3248
+ # @!attribute [rw] role_arn
3249
+ # The Amazon Resource Name (ARN) of the IAM role associated with the
3250
+ # created payment manager.
3251
+ # @return [String]
3252
+ #
3253
+ # @!attribute [rw] workload_identity_details
3254
+ # The information about the workload identity.
3255
+ # @return [Types::WorkloadIdentityDetails]
3256
+ #
3257
+ # @!attribute [rw] created_at
3258
+ # The timestamp when the payment manager was created.
3259
+ # @return [Time]
3260
+ #
3261
+ # @!attribute [rw] status
3262
+ # The current status of the payment manager. Possible values include
3263
+ # `CREATING`, `READY`, `UPDATING`, `DELETING`, `CREATE_FAILED`,
3264
+ # `UPDATE_FAILED`, and `DELETE_FAILED`.
3265
+ # @return [String]
3266
+ #
3267
+ # @!attribute [rw] tags
3268
+ # The tags associated with the created payment manager.
3269
+ # @return [Hash<String,String>]
3270
+ #
3271
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePaymentManagerResponse AWS API Documentation
3272
+ #
3273
+ class CreatePaymentManagerResponse < Struct.new(
3274
+ :payment_manager_arn,
3275
+ :payment_manager_id,
3276
+ :name,
3277
+ :authorizer_type,
3278
+ :authorizer_configuration,
3279
+ :role_arn,
3280
+ :workload_identity_details,
3281
+ :created_at,
3282
+ :status,
3283
+ :tags)
3284
+ SENSITIVE = []
3285
+ include Aws::Structure
3286
+ end
3287
+
2961
3288
  # @!attribute [rw] name
2962
3289
  # The customer-assigned immutable name for the policy engine. This
2963
3290
  # name identifies the policy engine and cannot be changed after
@@ -3020,10 +3347,6 @@ module Aws::BedrockAgentCoreControl
3020
3347
  # human-readable identifier.
3021
3348
  # @return [String]
3022
3349
  #
3023
- # @!attribute [rw] description
3024
- # A human-readable description of the policy engine's purpose.
3025
- # @return [String]
3026
- #
3027
3350
  # @!attribute [rw] created_at
3028
3351
  # The timestamp when the policy engine was created. This is
3029
3352
  # automatically set by the service and used for auditing and lifecycle
@@ -3046,29 +3369,33 @@ module Aws::BedrockAgentCoreControl
3046
3369
  # indicates the policy engine is ready for use.
3047
3370
  # @return [String]
3048
3371
  #
3372
+ # @!attribute [rw] encryption_key_arn
3373
+ # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
3374
+ # policy engine data.
3375
+ # @return [String]
3376
+ #
3377
+ # @!attribute [rw] description
3378
+ # A human-readable description of the policy engine's purpose.
3379
+ # @return [String]
3380
+ #
3049
3381
  # @!attribute [rw] status_reasons
3050
3382
  # Additional information about the policy engine status. This provides
3051
3383
  # details about any failures or the current state of the policy engine
3052
3384
  # creation process.
3053
3385
  # @return [Array<String>]
3054
3386
  #
3055
- # @!attribute [rw] encryption_key_arn
3056
- # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
3057
- # policy engine data.
3058
- # @return [String]
3059
- #
3060
3387
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreatePolicyEngineResponse AWS API Documentation
3061
3388
  #
3062
3389
  class CreatePolicyEngineResponse < Struct.new(
3063
3390
  :policy_engine_id,
3064
3391
  :name,
3065
- :description,
3066
3392
  :created_at,
3067
3393
  :updated_at,
3068
3394
  :policy_engine_arn,
3069
3395
  :status,
3070
- :status_reasons,
3071
- :encryption_key_arn)
3396
+ :encryption_key_arn,
3397
+ :description,
3398
+ :status_reasons)
3072
3399
  SENSITIVE = [:description]
3073
3400
  include Aws::Structure
3074
3401
  end
@@ -3159,18 +3486,6 @@ module Aws::BedrockAgentCoreControl
3159
3486
  # evaluation routing.
3160
3487
  # @return [String]
3161
3488
  #
3162
- # @!attribute [rw] definition
3163
- # The Cedar policy statement that was created. This is the validated
3164
- # policy definition that will be used for agent behavior control and
3165
- # access decisions.
3166
- # @return [Types::PolicyDefinition]
3167
- #
3168
- # @!attribute [rw] description
3169
- # The human-readable description of the policy's purpose and
3170
- # functionality. This helps administrators understand and manage the
3171
- # policy.
3172
- # @return [String]
3173
- #
3174
3489
  # @!attribute [rw] created_at
3175
3490
  # The timestamp when the policy was created. This is automatically set
3176
3491
  # by the service and used for auditing and lifecycle management.
@@ -3192,6 +3507,18 @@ module Aws::BedrockAgentCoreControl
3192
3507
  # policy is ready for use.
3193
3508
  # @return [String]
3194
3509
  #
3510
+ # @!attribute [rw] definition
3511
+ # The Cedar policy statement that was created. This is the validated
3512
+ # policy definition that will be used for agent behavior control and
3513
+ # access decisions.
3514
+ # @return [Types::PolicyDefinition]
3515
+ #
3516
+ # @!attribute [rw] description
3517
+ # The human-readable description of the policy's purpose and
3518
+ # functionality. This helps administrators understand and manage the
3519
+ # policy.
3520
+ # @return [String]
3521
+ #
3195
3522
  # @!attribute [rw] status_reasons
3196
3523
  # Additional information about the policy status. This provides
3197
3524
  # details about any failures or the current state of the policy
@@ -3204,12 +3531,12 @@ module Aws::BedrockAgentCoreControl
3204
3531
  :policy_id,
3205
3532
  :name,
3206
3533
  :policy_engine_id,
3207
- :definition,
3208
- :description,
3209
3534
  :created_at,
3210
3535
  :updated_at,
3211
3536
  :policy_arn,
3212
3537
  :status,
3538
+ :definition,
3539
+ :description,
3213
3540
  :status_reasons)
3214
3541
  SENSITIVE = [:description]
3215
3542
  include Aws::Structure
@@ -3503,6 +3830,39 @@ module Aws::BedrockAgentCoreControl
3503
3830
  include Aws::Structure
3504
3831
  end
3505
3832
 
3833
+ # The credential provider configuration for a payment connector.
3834
+ # Specifies the payment provider type and its associated credential
3835
+ # provider.
3836
+ #
3837
+ # @note CredentialsProviderConfiguration is a union - when making an API calls you must set exactly one of the members.
3838
+ #
3839
+ # @note CredentialsProviderConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CredentialsProviderConfiguration corresponding to the set member.
3840
+ #
3841
+ # @!attribute [rw] coinbase_cdp
3842
+ # The credential provider configuration for a Coinbase CDP payment
3843
+ # connector.
3844
+ # @return [Types::PaymentCredentialProviderConfiguration]
3845
+ #
3846
+ # @!attribute [rw] stripe_privy
3847
+ # The credential provider configuration for a Stripe Privy payment
3848
+ # connector.
3849
+ # @return [Types::PaymentCredentialProviderConfiguration]
3850
+ #
3851
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CredentialsProviderConfiguration AWS API Documentation
3852
+ #
3853
+ class CredentialsProviderConfiguration < Struct.new(
3854
+ :coinbase_cdp,
3855
+ :stripe_privy,
3856
+ :unknown)
3857
+ SENSITIVE = []
3858
+ include Aws::Structure
3859
+ include Aws::Structure::Union
3860
+
3861
+ class CoinbaseCdp < CredentialsProviderConfiguration; end
3862
+ class StripePrivy < CredentialsProviderConfiguration; end
3863
+ class Unknown < CredentialsProviderConfiguration; end
3864
+ end
3865
+
3506
3866
  # Defines the name of a custom claim field and rules for finding matches
3507
3867
  # to authenticate its value.
3508
3868
  #
@@ -3780,9 +4140,8 @@ module Aws::BedrockAgentCoreControl
3780
4140
  # @return [Types::PrivateEndpoint]
3781
4141
  #
3782
4142
  # @!attribute [rw] private_endpoint_overrides
3783
- # A list of private endpoint overrides for the JWT authorizer. Each
3784
- # override maps a specific domain to a private endpoint, enabling
3785
- # secure connectivity through VPC Lattice resource configurations.
4143
+ # The private endpoint overrides for the custom JWT authorizer
4144
+ # configuration.
3786
4145
  # @return [Array<Types::PrivateEndpointOverride>]
3787
4146
  #
3788
4147
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomJWTAuthorizerConfiguration AWS API Documentation
@@ -3810,7 +4169,8 @@ module Aws::BedrockAgentCoreControl
3810
4169
  # @return [String]
3811
4170
  #
3812
4171
  # @!attribute [rw] namespaces
3813
- # The namespaces associated with the custom memory strategy.
4172
+ # This is a legacy parameter, use `namespaceTemplates`. The namespaces
4173
+ # associated with the custom memory strategy.
3814
4174
  # @return [Array<String>]
3815
4175
  #
3816
4176
  # @!attribute [rw] namespace_templates
@@ -3859,10 +4219,8 @@ module Aws::BedrockAgentCoreControl
3859
4219
  # @return [Types::PrivateEndpoint]
3860
4220
  #
3861
4221
  # @!attribute [rw] private_endpoint_overrides
3862
- # The list of private endpoint overrides for the custom OAuth2
3863
- # provider. Each override maps a specific domain to a private
3864
- # endpoint, enabling secure connectivity through VPC Lattice resource
3865
- # configurations.
4222
+ # The private endpoint overrides for the custom OAuth2 provider
4223
+ # configuration.
3866
4224
  # @return [Array<Types::PrivateEndpointOverride>]
3867
4225
  #
3868
4226
  # @!attribute [rw] on_behalf_of_token_exchange_config
@@ -3907,10 +4265,8 @@ module Aws::BedrockAgentCoreControl
3907
4265
  # @return [Types::PrivateEndpoint]
3908
4266
  #
3909
4267
  # @!attribute [rw] private_endpoint_overrides
3910
- # The list of private endpoint overrides for the custom OAuth2
3911
- # provider. Each override maps a specific domain to a private
3912
- # endpoint, enabling secure connectivity through VPC Lattice resource
3913
- # configurations.
4268
+ # The private endpoint overrides for the custom OAuth2 provider
4269
+ # configuration.
3914
4270
  # @return [Array<Types::PrivateEndpointOverride>]
3915
4271
  #
3916
4272
  # @!attribute [rw] on_behalf_of_token_exchange_config
@@ -4576,6 +4932,125 @@ module Aws::BedrockAgentCoreControl
4576
4932
  include Aws::Structure
4577
4933
  end
4578
4934
 
4935
+ # @!attribute [rw] payment_manager_id
4936
+ # The unique identifier of the parent payment manager.
4937
+ # @return [String]
4938
+ #
4939
+ # @!attribute [rw] payment_connector_id
4940
+ # The unique identifier of the payment connector to delete.
4941
+ # @return [String]
4942
+ #
4943
+ # @!attribute [rw] client_token
4944
+ # A unique, case-sensitive identifier to ensure that the API request
4945
+ # completes no more than one time. If you don't specify this field, a
4946
+ # value is randomly generated for you. If this token matches a
4947
+ # previous request, the service ignores the request, but doesn't
4948
+ # return an error. For more information, see [Ensuring
4949
+ # idempotency][1].
4950
+ #
4951
+ # **A suitable default value is auto-generated.** You should normally
4952
+ # not need to pass this option.
4953
+ #
4954
+ #
4955
+ #
4956
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
4957
+ # @return [String]
4958
+ #
4959
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentConnectorRequest AWS API Documentation
4960
+ #
4961
+ class DeletePaymentConnectorRequest < Struct.new(
4962
+ :payment_manager_id,
4963
+ :payment_connector_id,
4964
+ :client_token)
4965
+ SENSITIVE = []
4966
+ include Aws::Structure
4967
+ end
4968
+
4969
+ # @!attribute [rw] status
4970
+ # The current status of the payment connector, set to `DELETING` when
4971
+ # deletion is initiated. Possible values include `CREATING`, `READY`,
4972
+ # `UPDATING`, `DELETING`, `CREATE_FAILED`, `UPDATE_FAILED`, and
4973
+ # `DELETE_FAILED`.
4974
+ # @return [String]
4975
+ #
4976
+ # @!attribute [rw] payment_connector_id
4977
+ # The unique identifier of the deleted payment connector.
4978
+ # @return [String]
4979
+ #
4980
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentConnectorResponse AWS API Documentation
4981
+ #
4982
+ class DeletePaymentConnectorResponse < Struct.new(
4983
+ :status,
4984
+ :payment_connector_id)
4985
+ SENSITIVE = []
4986
+ include Aws::Structure
4987
+ end
4988
+
4989
+ # @!attribute [rw] name
4990
+ # The name of the payment credential provider to delete.
4991
+ # @return [String]
4992
+ #
4993
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentCredentialProviderRequest AWS API Documentation
4994
+ #
4995
+ class DeletePaymentCredentialProviderRequest < Struct.new(
4996
+ :name)
4997
+ SENSITIVE = []
4998
+ include Aws::Structure
4999
+ end
5000
+
5001
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentCredentialProviderResponse AWS API Documentation
5002
+ #
5003
+ class DeletePaymentCredentialProviderResponse < Aws::EmptyStructure; end
5004
+
5005
+ # @!attribute [rw] payment_manager_id
5006
+ # The unique identifier of the payment manager to delete.
5007
+ # @return [String]
5008
+ #
5009
+ # @!attribute [rw] client_token
5010
+ # A unique, case-sensitive identifier to ensure that the API request
5011
+ # completes no more than one time. If you don't specify this field, a
5012
+ # value is randomly generated for you. If this token matches a
5013
+ # previous request, the service ignores the request, but doesn't
5014
+ # return an error. For more information, see [Ensuring
5015
+ # idempotency][1].
5016
+ #
5017
+ # **A suitable default value is auto-generated.** You should normally
5018
+ # not need to pass this option.
5019
+ #
5020
+ #
5021
+ #
5022
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
5023
+ # @return [String]
5024
+ #
5025
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentManagerRequest AWS API Documentation
5026
+ #
5027
+ class DeletePaymentManagerRequest < Struct.new(
5028
+ :payment_manager_id,
5029
+ :client_token)
5030
+ SENSITIVE = []
5031
+ include Aws::Structure
5032
+ end
5033
+
5034
+ # @!attribute [rw] status
5035
+ # The current status of the payment manager, set to `DELETING` when
5036
+ # deletion is initiated. Possible values include `CREATING`, `READY`,
5037
+ # `UPDATING`, `DELETING`, `CREATE_FAILED`, `UPDATE_FAILED`, and
5038
+ # `DELETE_FAILED`.
5039
+ # @return [String]
5040
+ #
5041
+ # @!attribute [rw] payment_manager_id
5042
+ # The unique identifier of the deleted payment manager.
5043
+ # @return [String]
5044
+ #
5045
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePaymentManagerResponse AWS API Documentation
5046
+ #
5047
+ class DeletePaymentManagerResponse < Struct.new(
5048
+ :status,
5049
+ :payment_manager_id)
5050
+ SENSITIVE = []
5051
+ include Aws::Structure
5052
+ end
5053
+
4579
5054
  # @!attribute [rw] policy_engine_id
4580
5055
  # The unique identifier of the policy engine to be deleted. This must
4581
5056
  # be a valid policy engine ID that exists within the account.
@@ -4598,10 +5073,6 @@ module Aws::BedrockAgentCoreControl
4598
5073
  # The customer-assigned name of the deleted policy engine.
4599
5074
  # @return [String]
4600
5075
  #
4601
- # @!attribute [rw] description
4602
- # The human-readable description of the deleted policy engine.
4603
- # @return [String]
4604
- #
4605
5076
  # @!attribute [rw] created_at
4606
5077
  # The timestamp when the deleted policy engine was originally created.
4607
5078
  # @return [Time]
@@ -4623,29 +5094,33 @@ module Aws::BedrockAgentCoreControl
4623
5094
  # status about any issues that occurred during the deletion process.
4624
5095
  # @return [String]
4625
5096
  #
5097
+ # @!attribute [rw] encryption_key_arn
5098
+ # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
5099
+ # policy engine data.
5100
+ # @return [String]
5101
+ #
5102
+ # @!attribute [rw] description
5103
+ # The human-readable description of the deleted policy engine.
5104
+ # @return [String]
5105
+ #
4626
5106
  # @!attribute [rw] status_reasons
4627
5107
  # Additional information about the deletion status. This provides
4628
5108
  # details about the deletion process or any issues that may have
4629
5109
  # occurred.
4630
5110
  # @return [Array<String>]
4631
5111
  #
4632
- # @!attribute [rw] encryption_key_arn
4633
- # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
4634
- # policy engine data.
4635
- # @return [String]
4636
- #
4637
5112
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeletePolicyEngineResponse AWS API Documentation
4638
5113
  #
4639
5114
  class DeletePolicyEngineResponse < Struct.new(
4640
5115
  :policy_engine_id,
4641
5116
  :name,
4642
- :description,
4643
5117
  :created_at,
4644
5118
  :updated_at,
4645
5119
  :policy_engine_arn,
4646
5120
  :status,
4647
- :status_reasons,
4648
- :encryption_key_arn)
5121
+ :encryption_key_arn,
5122
+ :description,
5123
+ :status_reasons)
4649
5124
  SENSITIVE = [:description]
4650
5125
  include Aws::Structure
4651
5126
  end
@@ -4687,17 +5162,6 @@ module Aws::BedrockAgentCoreControl
4687
5162
  # operation.
4688
5163
  # @return [String]
4689
5164
  #
4690
- # @!attribute [rw] definition
4691
- # Represents the definition structure for policies within the
4692
- # AgentCore Policy system. This structure encapsulates different
4693
- # policy formats and languages that can be used to define access
4694
- # control rules.
4695
- # @return [Types::PolicyDefinition]
4696
- #
4697
- # @!attribute [rw] description
4698
- # The human-readable description of the deleted policy.
4699
- # @return [String]
4700
- #
4701
5165
  # @!attribute [rw] created_at
4702
5166
  # The timestamp when the deleted policy was originally created.
4703
5167
  # @return [Time]
@@ -4720,6 +5184,17 @@ module Aws::BedrockAgentCoreControl
4720
5184
  # process.
4721
5185
  # @return [String]
4722
5186
  #
5187
+ # @!attribute [rw] definition
5188
+ # Represents the definition structure for policies within the
5189
+ # AgentCore Policy system. This structure encapsulates different
5190
+ # policy formats and languages that can be used to define access
5191
+ # control rules.
5192
+ # @return [Types::PolicyDefinition]
5193
+ #
5194
+ # @!attribute [rw] description
5195
+ # The human-readable description of the deleted policy.
5196
+ # @return [String]
5197
+ #
4723
5198
  # @!attribute [rw] status_reasons
4724
5199
  # Additional information about the deletion status. This provides
4725
5200
  # details about the deletion process or any issues that may have
@@ -4732,12 +5207,12 @@ module Aws::BedrockAgentCoreControl
4732
5207
  :policy_id,
4733
5208
  :name,
4734
5209
  :policy_engine_id,
4735
- :definition,
4736
- :description,
4737
5210
  :created_at,
4738
5211
  :updated_at,
4739
5212
  :policy_arn,
4740
5213
  :status,
5214
+ :definition,
5215
+ :description,
4741
5216
  :status_reasons)
4742
5217
  SENSITIVE = [:description]
4743
5218
  include Aws::Structure
@@ -4953,7 +5428,8 @@ module Aws::BedrockAgentCoreControl
4953
5428
  # @return [String]
4954
5429
  #
4955
5430
  # @!attribute [rw] namespaces
4956
- # The namespaces for which to create episodes.
5431
+ # This is a legacy parameter, use `namespaceTemplates`. The namespaces
5432
+ # for which to create episodes.
4957
5433
  # @return [Array<String>]
4958
5434
  #
4959
5435
  # @!attribute [rw] namespace_templates
@@ -5067,8 +5543,9 @@ module Aws::BedrockAgentCoreControl
5067
5543
  # @return [String]
5068
5544
  #
5069
5545
  # @!attribute [rw] namespaces
5070
- # The namespaces to use for episodic reflection. Can be less nested
5071
- # than the episodic namespaces.
5546
+ # This is a legacy parameter, use `namespaceTemplates`. The namespaces
5547
+ # to use for episodic reflection. Can be less nested than the episodic
5548
+ # namespaces.
5072
5549
  # @return [Array<String>]
5073
5550
  #
5074
5551
  # @!attribute [rw] namespace_templates
@@ -5097,8 +5574,9 @@ module Aws::BedrockAgentCoreControl
5097
5574
  # strategy.
5098
5575
  #
5099
5576
  # @!attribute [rw] namespaces
5100
- # The namespaces for which to create reflections. Can be less nested
5101
- # than the episodic namespaces.
5577
+ # This is a legacy parameter, use `namespaceTemplates`. The namespaces
5578
+ # for which to create reflections. Can be less nested than the
5579
+ # episodic namespaces.
5102
5580
  # @return [Array<String>]
5103
5581
  #
5104
5582
  # @!attribute [rw] namespace_templates
@@ -5123,8 +5601,9 @@ module Aws::BedrockAgentCoreControl
5123
5601
  # An episodic reflection configuration input.
5124
5602
  #
5125
5603
  # @!attribute [rw] namespaces
5126
- # The namespaces over which to create reflections. Can be less nested
5127
- # than episode namespaces.
5604
+ # This is a legacy parameter, use `namespaceTemplates`. The namespaces
5605
+ # over which to create reflections. Can be less nested than episode
5606
+ # namespaces.
5128
5607
  # @return [Array<String>]
5129
5608
  #
5130
5609
  # @!attribute [rw] namespace_templates
@@ -5160,8 +5639,8 @@ module Aws::BedrockAgentCoreControl
5160
5639
  # @return [String]
5161
5640
  #
5162
5641
  # @!attribute [rw] namespaces
5163
- # The namespaces over which reflections were created. Can be less
5164
- # nested than the episodic namespaces.
5642
+ # This is a legacy parameter. The namespaces over which reflections
5643
+ # were created. Can be less nested than the episodic namespaces.
5165
5644
  # @return [Array<String>]
5166
5645
  #
5167
5646
  # @!attribute [rw] namespace_templates
@@ -6984,7 +7463,7 @@ module Aws::BedrockAgentCoreControl
6984
7463
  # @return [String]
6985
7464
  #
6986
7465
  # @!attribute [rw] failure_reason
6987
- # The reason for the failure if the OAuth2 credential provider is in a
7466
+ # The reason for failure if the OAuth2 credential provider is in a
6988
7467
  # failed state.
6989
7468
  # @return [String]
6990
7469
  #
@@ -7103,171 +7582,511 @@ module Aws::BedrockAgentCoreControl
7103
7582
  include Aws::Structure
7104
7583
  end
7105
7584
 
7106
- # @!attribute [rw] policy_engine_id
7107
- # The unique identifier of the policy engine to be retrieved. This
7108
- # must be a valid policy engine ID that exists within the account.
7585
+ # @!attribute [rw] payment_manager_id
7586
+ # The unique identifier of the parent payment manager.
7109
7587
  # @return [String]
7110
7588
  #
7111
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyEngineRequest AWS API Documentation
7589
+ # @!attribute [rw] payment_connector_id
7590
+ # The unique identifier of the payment connector to retrieve.
7591
+ # @return [String]
7112
7592
  #
7113
- class GetPolicyEngineRequest < Struct.new(
7114
- :policy_engine_id)
7593
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentConnectorRequest AWS API Documentation
7594
+ #
7595
+ class GetPaymentConnectorRequest < Struct.new(
7596
+ :payment_manager_id,
7597
+ :payment_connector_id)
7115
7598
  SENSITIVE = []
7116
7599
  include Aws::Structure
7117
7600
  end
7118
7601
 
7119
- # @!attribute [rw] policy_engine_id
7120
- # The unique identifier of the retrieved policy engine. This matches
7121
- # the policy engine ID provided in the request and serves as the
7122
- # system identifier.
7602
+ # @!attribute [rw] payment_connector_id
7603
+ # The unique identifier of the payment connector.
7123
7604
  # @return [String]
7124
7605
  #
7125
7606
  # @!attribute [rw] name
7126
- # The customer-assigned name of the policy engine. This is the
7127
- # human-readable identifier that was specified when the policy engine
7128
- # was created.
7607
+ # The name of the payment connector.
7129
7608
  # @return [String]
7130
7609
  #
7131
7610
  # @!attribute [rw] description
7132
- # The human-readable description of the policy engine's purpose and
7133
- # scope. This helps administrators understand the policy engine's
7134
- # role in governance.
7611
+ # The description of the payment connector.
7612
+ # @return [String]
7613
+ #
7614
+ # @!attribute [rw] type
7615
+ # The type of the payment connector, which determines the payment
7616
+ # provider integration.
7135
7617
  # @return [String]
7136
7618
  #
7619
+ # @!attribute [rw] credential_provider_configurations
7620
+ # The credential provider configurations for the payment connector.
7621
+ # @return [Array<Types::CredentialsProviderConfiguration>]
7622
+ #
7137
7623
  # @!attribute [rw] created_at
7138
- # The timestamp when the policy engine was originally created.
7624
+ # The timestamp when the payment connector was created.
7139
7625
  # @return [Time]
7140
7626
  #
7141
- # @!attribute [rw] updated_at
7142
- # The timestamp when the policy engine was last modified. This tracks
7143
- # the most recent changes to the policy engine configuration.
7627
+ # @!attribute [rw] last_updated_at
7628
+ # The timestamp when the payment connector was last updated.
7144
7629
  # @return [Time]
7145
7630
  #
7146
- # @!attribute [rw] policy_engine_arn
7147
- # The Amazon Resource Name (ARN) of the policy engine. This globally
7148
- # unique identifier can be used for cross-service references and IAM
7149
- # policy statements.
7150
- # @return [String]
7151
- #
7152
7631
  # @!attribute [rw] status
7153
- # The current status of the policy engine.
7154
- # @return [String]
7155
- #
7156
- # @!attribute [rw] status_reasons
7157
- # Additional information about the policy engine status. This provides
7158
- # details about any failures or the current state of the policy
7159
- # engine.
7160
- # @return [Array<String>]
7161
- #
7162
- # @!attribute [rw] encryption_key_arn
7163
- # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
7164
- # policy engine data.
7632
+ # The current status of the payment connector. Possible values include
7633
+ # `CREATING`, `READY`, `UPDATING`, `DELETING`, `CREATE_FAILED`,
7634
+ # `UPDATE_FAILED`, and `DELETE_FAILED`.
7165
7635
  # @return [String]
7166
7636
  #
7167
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyEngineResponse AWS API Documentation
7637
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentConnectorResponse AWS API Documentation
7168
7638
  #
7169
- class GetPolicyEngineResponse < Struct.new(
7170
- :policy_engine_id,
7639
+ class GetPaymentConnectorResponse < Struct.new(
7640
+ :payment_connector_id,
7171
7641
  :name,
7172
7642
  :description,
7643
+ :type,
7644
+ :credential_provider_configurations,
7173
7645
  :created_at,
7174
- :updated_at,
7175
- :policy_engine_arn,
7176
- :status,
7177
- :status_reasons,
7178
- :encryption_key_arn)
7179
- SENSITIVE = [:description]
7646
+ :last_updated_at,
7647
+ :status)
7648
+ SENSITIVE = []
7180
7649
  include Aws::Structure
7181
7650
  end
7182
7651
 
7183
- # @!attribute [rw] policy_generation_id
7184
- # The unique identifier of the policy generation request to be
7185
- # retrieved. This must be a valid generation ID from a previous
7186
- # [StartPolicyGeneration][1] call.
7187
- #
7188
- #
7189
- #
7190
- # [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_StartPolicyGeneration.html
7191
- # @return [String]
7192
- #
7193
- # @!attribute [rw] policy_engine_id
7194
- # The identifier of the policy engine associated with the policy
7195
- # generation request. This provides the context for the generation
7196
- # operation and schema validation.
7652
+ # @!attribute [rw] name
7653
+ # The name of the payment credential provider to retrieve.
7197
7654
  # @return [String]
7198
7655
  #
7199
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyGenerationRequest AWS API Documentation
7656
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentCredentialProviderRequest AWS API Documentation
7200
7657
  #
7201
- class GetPolicyGenerationRequest < Struct.new(
7202
- :policy_generation_id,
7203
- :policy_engine_id)
7658
+ class GetPaymentCredentialProviderRequest < Struct.new(
7659
+ :name)
7204
7660
  SENSITIVE = []
7205
7661
  include Aws::Structure
7206
7662
  end
7207
7663
 
7208
- # @!attribute [rw] policy_engine_id
7209
- # The identifier of the policy engine associated with this policy
7210
- # generation. This confirms the policy engine context for the
7211
- # generation operation.
7664
+ # @!attribute [rw] name
7665
+ # The name of the payment credential provider.
7666
+ # @return [String]
7667
+ #
7668
+ # @!attribute [rw] credential_provider_arn
7669
+ # The Amazon Resource Name (ARN) of the payment credential provider.
7670
+ # @return [String]
7671
+ #
7672
+ # @!attribute [rw] credential_provider_vendor
7673
+ # The vendor type for the payment credential provider.
7674
+ # @return [String]
7675
+ #
7676
+ # @!attribute [rw] provider_configuration_output
7677
+ # Output configuration (contains secret ARNs, excludes actual secret
7678
+ # values).
7679
+ # @return [Types::PaymentProviderConfigurationOutput]
7680
+ #
7681
+ # @!attribute [rw] created_time
7682
+ # The timestamp when the payment credential provider was created.
7683
+ # @return [Time]
7684
+ #
7685
+ # @!attribute [rw] last_updated_time
7686
+ # The timestamp when the payment credential provider was last updated.
7687
+ # @return [Time]
7688
+ #
7689
+ # @!attribute [rw] tags
7690
+ # The tags associated with the payment credential provider.
7691
+ # @return [Hash<String,String>]
7692
+ #
7693
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentCredentialProviderResponse AWS API Documentation
7694
+ #
7695
+ class GetPaymentCredentialProviderResponse < Struct.new(
7696
+ :name,
7697
+ :credential_provider_arn,
7698
+ :credential_provider_vendor,
7699
+ :provider_configuration_output,
7700
+ :created_time,
7701
+ :last_updated_time,
7702
+ :tags)
7703
+ SENSITIVE = []
7704
+ include Aws::Structure
7705
+ end
7706
+
7707
+ # @!attribute [rw] payment_manager_id
7708
+ # The unique identifier of the payment manager to retrieve.
7709
+ # @return [String]
7710
+ #
7711
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentManagerRequest AWS API Documentation
7712
+ #
7713
+ class GetPaymentManagerRequest < Struct.new(
7714
+ :payment_manager_id)
7715
+ SENSITIVE = []
7716
+ include Aws::Structure
7717
+ end
7718
+
7719
+ # @!attribute [rw] payment_manager_arn
7720
+ # The Amazon Resource Name (ARN) of the payment manager.
7721
+ # @return [String]
7722
+ #
7723
+ # @!attribute [rw] payment_manager_id
7724
+ # The unique identifier of the payment manager.
7725
+ # @return [String]
7726
+ #
7727
+ # @!attribute [rw] name
7728
+ # The name of the payment manager.
7729
+ # @return [String]
7730
+ #
7731
+ # @!attribute [rw] description
7732
+ # The description of the payment manager.
7733
+ # @return [String]
7734
+ #
7735
+ # @!attribute [rw] authorizer_type
7736
+ # The type of authorizer used by the payment manager.
7737
+ #
7738
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
7739
+ #
7740
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM
7741
+ # credentials.
7742
+ # @return [String]
7743
+ #
7744
+ # @!attribute [rw] authorizer_configuration
7745
+ # Represents inbound authorization configuration options used to
7746
+ # authenticate incoming requests.
7747
+ # @return [Types::AuthorizerConfiguration]
7748
+ #
7749
+ # @!attribute [rw] role_arn
7750
+ # The Amazon Resource Name (ARN) of the IAM role associated with the
7751
+ # payment manager.
7752
+ # @return [String]
7753
+ #
7754
+ # @!attribute [rw] workload_identity_details
7755
+ # The information about the workload identity.
7756
+ # @return [Types::WorkloadIdentityDetails]
7757
+ #
7758
+ # @!attribute [rw] created_at
7759
+ # The timestamp when the payment manager was created.
7760
+ # @return [Time]
7761
+ #
7762
+ # @!attribute [rw] last_updated_at
7763
+ # The timestamp when the payment manager was last updated.
7764
+ # @return [Time]
7765
+ #
7766
+ # @!attribute [rw] status
7767
+ # The current status of the payment manager. Possible values include
7768
+ # `CREATING`, `READY`, `UPDATING`, `DELETING`, `CREATE_FAILED`,
7769
+ # `UPDATE_FAILED`, and `DELETE_FAILED`.
7770
+ # @return [String]
7771
+ #
7772
+ # @!attribute [rw] tags
7773
+ # The tags associated with the payment manager.
7774
+ # @return [Hash<String,String>]
7775
+ #
7776
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPaymentManagerResponse AWS API Documentation
7777
+ #
7778
+ class GetPaymentManagerResponse < Struct.new(
7779
+ :payment_manager_arn,
7780
+ :payment_manager_id,
7781
+ :name,
7782
+ :description,
7783
+ :authorizer_type,
7784
+ :authorizer_configuration,
7785
+ :role_arn,
7786
+ :workload_identity_details,
7787
+ :created_at,
7788
+ :last_updated_at,
7789
+ :status,
7790
+ :tags)
7791
+ SENSITIVE = []
7792
+ include Aws::Structure
7793
+ end
7794
+
7795
+ # @!attribute [rw] policy_engine_id
7796
+ # The unique identifier of the policy engine to be retrieved. This
7797
+ # must be a valid policy engine ID that exists within the account.
7798
+ # @return [String]
7799
+ #
7800
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyEngineRequest AWS API Documentation
7801
+ #
7802
+ class GetPolicyEngineRequest < Struct.new(
7803
+ :policy_engine_id)
7804
+ SENSITIVE = []
7805
+ include Aws::Structure
7806
+ end
7807
+
7808
+ # @!attribute [rw] policy_engine_id
7809
+ # The unique identifier of the retrieved policy engine. This matches
7810
+ # the policy engine ID provided in the request and serves as the
7811
+ # system identifier.
7812
+ # @return [String]
7813
+ #
7814
+ # @!attribute [rw] name
7815
+ # The customer-assigned name of the policy engine. This is the
7816
+ # human-readable identifier that was specified when the policy engine
7817
+ # was created.
7818
+ # @return [String]
7819
+ #
7820
+ # @!attribute [rw] created_at
7821
+ # The timestamp when the policy engine was originally created.
7822
+ # @return [Time]
7823
+ #
7824
+ # @!attribute [rw] updated_at
7825
+ # The timestamp when the policy engine was last modified. This tracks
7826
+ # the most recent changes to the policy engine configuration.
7827
+ # @return [Time]
7828
+ #
7829
+ # @!attribute [rw] policy_engine_arn
7830
+ # The Amazon Resource Name (ARN) of the policy engine. This globally
7831
+ # unique identifier can be used for cross-service references and IAM
7832
+ # policy statements.
7833
+ # @return [String]
7834
+ #
7835
+ # @!attribute [rw] status
7836
+ # The current status of the policy engine.
7837
+ # @return [String]
7838
+ #
7839
+ # @!attribute [rw] encryption_key_arn
7840
+ # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
7841
+ # policy engine data.
7842
+ # @return [String]
7843
+ #
7844
+ # @!attribute [rw] description
7845
+ # The human-readable description of the policy engine's purpose and
7846
+ # scope. This helps administrators understand the policy engine's
7847
+ # role in governance.
7848
+ # @return [String]
7849
+ #
7850
+ # @!attribute [rw] status_reasons
7851
+ # Additional information about the policy engine status. This provides
7852
+ # details about any failures or the current state of the policy
7853
+ # engine.
7854
+ # @return [Array<String>]
7855
+ #
7856
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyEngineResponse AWS API Documentation
7857
+ #
7858
+ class GetPolicyEngineResponse < Struct.new(
7859
+ :policy_engine_id,
7860
+ :name,
7861
+ :created_at,
7862
+ :updated_at,
7863
+ :policy_engine_arn,
7864
+ :status,
7865
+ :encryption_key_arn,
7866
+ :description,
7867
+ :status_reasons)
7868
+ SENSITIVE = [:description]
7869
+ include Aws::Structure
7870
+ end
7871
+
7872
+ # @!attribute [rw] policy_engine_id
7873
+ # The unique identifier of the policy engine to retrieve the summary
7874
+ # for. This must be a valid policy engine ID that exists within the
7875
+ # account.
7876
+ # @return [String]
7877
+ #
7878
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyEngineSummaryRequest AWS API Documentation
7879
+ #
7880
+ class GetPolicyEngineSummaryRequest < Struct.new(
7881
+ :policy_engine_id)
7882
+ SENSITIVE = []
7883
+ include Aws::Structure
7884
+ end
7885
+
7886
+ # @!attribute [rw] policy_engine_id
7887
+ # The unique identifier of the policy engine.
7888
+ # @return [String]
7889
+ #
7890
+ # @!attribute [rw] name
7891
+ # The customer-assigned name of the policy engine.
7892
+ # @return [String]
7893
+ #
7894
+ # @!attribute [rw] created_at
7895
+ # The timestamp when the policy engine was originally created.
7896
+ # @return [Time]
7897
+ #
7898
+ # @!attribute [rw] updated_at
7899
+ # The timestamp when the policy engine was last modified.
7900
+ # @return [Time]
7901
+ #
7902
+ # @!attribute [rw] policy_engine_arn
7903
+ # The Amazon Resource Name (ARN) of the policy engine.
7904
+ # @return [String]
7905
+ #
7906
+ # @!attribute [rw] status
7907
+ # The current status of the policy engine.
7908
+ # @return [String]
7909
+ #
7910
+ # @!attribute [rw] encryption_key_arn
7911
+ # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
7912
+ # policy engine data.
7913
+ # @return [String]
7914
+ #
7915
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyEngineSummaryResponse AWS API Documentation
7916
+ #
7917
+ class GetPolicyEngineSummaryResponse < Struct.new(
7918
+ :policy_engine_id,
7919
+ :name,
7920
+ :created_at,
7921
+ :updated_at,
7922
+ :policy_engine_arn,
7923
+ :status,
7924
+ :encryption_key_arn)
7925
+ SENSITIVE = []
7926
+ include Aws::Structure
7927
+ end
7928
+
7929
+ # @!attribute [rw] policy_generation_id
7930
+ # The unique identifier of the policy generation request to be
7931
+ # retrieved. This must be a valid generation ID from a previous
7932
+ # [StartPolicyGeneration][1] call.
7933
+ #
7934
+ #
7935
+ #
7936
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_StartPolicyGeneration.html
7937
+ # @return [String]
7938
+ #
7939
+ # @!attribute [rw] policy_engine_id
7940
+ # The identifier of the policy engine associated with the policy
7941
+ # generation request. This provides the context for the generation
7942
+ # operation and schema validation.
7943
+ # @return [String]
7944
+ #
7945
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyGenerationRequest AWS API Documentation
7946
+ #
7947
+ class GetPolicyGenerationRequest < Struct.new(
7948
+ :policy_generation_id,
7949
+ :policy_engine_id)
7950
+ SENSITIVE = []
7951
+ include Aws::Structure
7952
+ end
7953
+
7954
+ # @!attribute [rw] policy_engine_id
7955
+ # The identifier of the policy engine associated with this policy
7956
+ # generation. This confirms the policy engine context for the
7957
+ # generation operation.
7958
+ # @return [String]
7959
+ #
7960
+ # @!attribute [rw] policy_generation_id
7961
+ # The unique identifier of the policy generation request. This matches
7962
+ # the generation ID provided in the request and serves as the tracking
7963
+ # identifier.
7964
+ # @return [String]
7965
+ #
7966
+ # @!attribute [rw] name
7967
+ # The customer-assigned name for the policy generation request. This
7968
+ # helps identify and track generation operations across multiple
7969
+ # requests.
7970
+ # @return [String]
7971
+ #
7972
+ # @!attribute [rw] policy_generation_arn
7973
+ # The Amazon Resource Name (ARN) of the policy generation. This
7974
+ # globally unique identifier can be used for tracking, auditing, and
7975
+ # cross-service references.
7976
+ # @return [String]
7977
+ #
7978
+ # @!attribute [rw] resource
7979
+ # The resource information associated with the policy generation. This
7980
+ # provides context about the target resources for which the policies
7981
+ # are being generated.
7982
+ # @return [Types::Resource]
7983
+ #
7984
+ # @!attribute [rw] created_at
7985
+ # The timestamp when the policy generation request was created. This
7986
+ # is used for tracking and auditing generation operations and their
7987
+ # lifecycle.
7988
+ # @return [Time]
7989
+ #
7990
+ # @!attribute [rw] updated_at
7991
+ # The timestamp when the policy generation was last updated. This
7992
+ # tracks the progress of the generation process and any status
7993
+ # changes.
7994
+ # @return [Time]
7995
+ #
7996
+ # @!attribute [rw] status
7997
+ # The current status of the policy generation. This indicates whether
7998
+ # the generation is in progress, completed successfully, or failed
7999
+ # during processing.
8000
+ # @return [String]
8001
+ #
8002
+ # @!attribute [rw] findings
8003
+ # The findings and results from the policy generation process. This
8004
+ # includes any issues, recommendations, validation results, or
8005
+ # insights from the generated policies.
8006
+ # @return [String]
8007
+ #
8008
+ # @!attribute [rw] status_reasons
8009
+ # Additional information about the generation status. This provides
8010
+ # details about any failures, warnings, or the current state of the
8011
+ # generation process.
8012
+ # @return [Array<String>]
8013
+ #
8014
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyGenerationResponse AWS API Documentation
8015
+ #
8016
+ class GetPolicyGenerationResponse < Struct.new(
8017
+ :policy_engine_id,
8018
+ :policy_generation_id,
8019
+ :name,
8020
+ :policy_generation_arn,
8021
+ :resource,
8022
+ :created_at,
8023
+ :updated_at,
8024
+ :status,
8025
+ :findings,
8026
+ :status_reasons)
8027
+ SENSITIVE = []
8028
+ include Aws::Structure
8029
+ end
8030
+
8031
+ # @!attribute [rw] policy_generation_id
8032
+ # The unique identifier of the policy generation request to retrieve
8033
+ # the summary for.
8034
+ # @return [String]
8035
+ #
8036
+ # @!attribute [rw] policy_engine_id
8037
+ # The identifier of the policy engine associated with the policy
8038
+ # generation request.
8039
+ # @return [String]
8040
+ #
8041
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyGenerationSummaryRequest AWS API Documentation
8042
+ #
8043
+ class GetPolicyGenerationSummaryRequest < Struct.new(
8044
+ :policy_generation_id,
8045
+ :policy_engine_id)
8046
+ SENSITIVE = []
8047
+ include Aws::Structure
8048
+ end
8049
+
8050
+ # @!attribute [rw] policy_engine_id
8051
+ # The identifier of the policy engine associated with this policy
8052
+ # generation.
7212
8053
  # @return [String]
7213
8054
  #
7214
8055
  # @!attribute [rw] policy_generation_id
7215
- # The unique identifier of the policy generation request. This matches
7216
- # the generation ID provided in the request and serves as the tracking
7217
- # identifier.
8056
+ # The unique identifier of the policy generation request.
7218
8057
  # @return [String]
7219
8058
  #
7220
8059
  # @!attribute [rw] name
7221
- # The customer-assigned name for the policy generation request. This
7222
- # helps identify and track generation operations across multiple
7223
- # requests.
8060
+ # The customer-assigned name for the policy generation request.
7224
8061
  # @return [String]
7225
8062
  #
7226
8063
  # @!attribute [rw] policy_generation_arn
7227
- # The Amazon Resource Name (ARN) of the policy generation. This
7228
- # globally unique identifier can be used for tracking, auditing, and
7229
- # cross-service references.
8064
+ # The Amazon Resource Name (ARN) of the policy generation request.
7230
8065
  # @return [String]
7231
8066
  #
7232
8067
  # @!attribute [rw] resource
7233
- # The resource information associated with the policy generation. This
7234
- # provides context about the target resources for which the policies
7235
- # are being generated.
8068
+ # The resource information associated with the policy generation.
7236
8069
  # @return [Types::Resource]
7237
8070
  #
7238
8071
  # @!attribute [rw] created_at
7239
- # The timestamp when the policy generation request was created. This
7240
- # is used for tracking and auditing generation operations and their
7241
- # lifecycle.
8072
+ # The timestamp when the policy generation request was created.
7242
8073
  # @return [Time]
7243
8074
  #
7244
8075
  # @!attribute [rw] updated_at
7245
- # The timestamp when the policy generation was last updated. This
7246
- # tracks the progress of the generation process and any status
7247
- # changes.
8076
+ # The timestamp when the policy generation was last updated.
7248
8077
  # @return [Time]
7249
8078
  #
7250
8079
  # @!attribute [rw] status
7251
- # The current status of the policy generation. This indicates whether
7252
- # the generation is in progress, completed successfully, or failed
7253
- # during processing.
8080
+ # The current status of the policy generation request.
7254
8081
  # @return [String]
7255
8082
  #
7256
- # @!attribute [rw] status_reasons
7257
- # Additional information about the generation status. This provides
7258
- # details about any failures, warnings, or the current state of the
7259
- # generation process.
7260
- # @return [Array<String>]
7261
- #
7262
8083
  # @!attribute [rw] findings
7263
- # The findings and results from the policy generation process. This
7264
- # includes any issues, recommendations, validation results, or
7265
- # insights from the generated policies.
8084
+ # The findings from the policy generation process, if available.
7266
8085
  # @return [String]
7267
8086
  #
7268
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyGenerationResponse AWS API Documentation
8087
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicyGenerationSummaryResponse AWS API Documentation
7269
8088
  #
7270
- class GetPolicyGenerationResponse < Struct.new(
8089
+ class GetPolicyGenerationSummaryResponse < Struct.new(
7271
8090
  :policy_engine_id,
7272
8091
  :policy_generation_id,
7273
8092
  :name,
@@ -7276,7 +8095,6 @@ module Aws::BedrockAgentCoreControl
7276
8095
  :created_at,
7277
8096
  :updated_at,
7278
8097
  :status,
7279
- :status_reasons,
7280
8098
  :findings)
7281
8099
  SENSITIVE = []
7282
8100
  include Aws::Structure
@@ -7317,18 +8135,6 @@ module Aws::BedrockAgentCoreControl
7317
8135
  # confirms the policy engine context for the retrieved policy.
7318
8136
  # @return [String]
7319
8137
  #
7320
- # @!attribute [rw] definition
7321
- # The Cedar policy statement that defines the access control rules.
7322
- # This contains the actual policy logic used for agent behavior
7323
- # control and access decisions.
7324
- # @return [Types::PolicyDefinition]
7325
- #
7326
- # @!attribute [rw] description
7327
- # The human-readable description of the policy's purpose and
7328
- # functionality. This helps administrators understand and manage the
7329
- # policy.
7330
- # @return [String]
7331
- #
7332
8138
  # @!attribute [rw] created_at
7333
8139
  # The timestamp when the policy was originally created.
7334
8140
  # @return [Time]
@@ -7348,6 +8154,18 @@ module Aws::BedrockAgentCoreControl
7348
8154
  # The current status of the policy.
7349
8155
  # @return [String]
7350
8156
  #
8157
+ # @!attribute [rw] definition
8158
+ # The Cedar policy statement that defines the access control rules.
8159
+ # This contains the actual policy logic used for agent behavior
8160
+ # control and access decisions.
8161
+ # @return [Types::PolicyDefinition]
8162
+ #
8163
+ # @!attribute [rw] description
8164
+ # The human-readable description of the policy's purpose and
8165
+ # functionality. This helps administrators understand and manage the
8166
+ # policy.
8167
+ # @return [String]
8168
+ #
7351
8169
  # @!attribute [rw] status_reasons
7352
8170
  # Additional information about the policy status. This provides
7353
8171
  # details about any failures or the current state of the policy.
@@ -7359,17 +8177,79 @@ module Aws::BedrockAgentCoreControl
7359
8177
  :policy_id,
7360
8178
  :name,
7361
8179
  :policy_engine_id,
7362
- :definition,
7363
- :description,
7364
8180
  :created_at,
7365
8181
  :updated_at,
7366
8182
  :policy_arn,
7367
8183
  :status,
8184
+ :definition,
8185
+ :description,
7368
8186
  :status_reasons)
7369
8187
  SENSITIVE = [:description]
7370
8188
  include Aws::Structure
7371
8189
  end
7372
8190
 
8191
+ # @!attribute [rw] policy_engine_id
8192
+ # The identifier of the policy engine that manages the policy to
8193
+ # retrieve the summary for.
8194
+ # @return [String]
8195
+ #
8196
+ # @!attribute [rw] policy_id
8197
+ # The unique identifier of the policy to retrieve the summary for.
8198
+ # This must be a valid policy ID that exists within the specified
8199
+ # policy engine.
8200
+ # @return [String]
8201
+ #
8202
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicySummaryRequest AWS API Documentation
8203
+ #
8204
+ class GetPolicySummaryRequest < Struct.new(
8205
+ :policy_engine_id,
8206
+ :policy_id)
8207
+ SENSITIVE = []
8208
+ include Aws::Structure
8209
+ end
8210
+
8211
+ # @!attribute [rw] policy_id
8212
+ # The unique identifier of the policy.
8213
+ # @return [String]
8214
+ #
8215
+ # @!attribute [rw] name
8216
+ # The customer-assigned name of the policy.
8217
+ # @return [String]
8218
+ #
8219
+ # @!attribute [rw] policy_engine_id
8220
+ # The identifier of the policy engine that manages this policy.
8221
+ # @return [String]
8222
+ #
8223
+ # @!attribute [rw] created_at
8224
+ # The timestamp when the policy was originally created.
8225
+ # @return [Time]
8226
+ #
8227
+ # @!attribute [rw] updated_at
8228
+ # The timestamp when the policy was last modified.
8229
+ # @return [Time]
8230
+ #
8231
+ # @!attribute [rw] policy_arn
8232
+ # The Amazon Resource Name (ARN) of the policy.
8233
+ # @return [String]
8234
+ #
8235
+ # @!attribute [rw] status
8236
+ # The current status of the policy.
8237
+ # @return [String]
8238
+ #
8239
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicySummaryResponse AWS API Documentation
8240
+ #
8241
+ class GetPolicySummaryResponse < Struct.new(
8242
+ :policy_id,
8243
+ :name,
8244
+ :policy_engine_id,
8245
+ :created_at,
8246
+ :updated_at,
8247
+ :policy_arn,
8248
+ :status)
8249
+ SENSITIVE = []
8250
+ include Aws::Structure
8251
+ end
8252
+
7373
8253
  # @!attribute [rw] registry_id
7374
8254
  # The identifier of the registry containing the record. You can
7375
8255
  # specify either the Amazon Resource Name (ARN) or the ID of the
@@ -9698,6 +10578,134 @@ module Aws::BedrockAgentCoreControl
9698
10578
  include Aws::Structure
9699
10579
  end
9700
10580
 
10581
+ # @!attribute [rw] payment_manager_id
10582
+ # The unique identifier of the payment manager whose connectors to
10583
+ # list.
10584
+ # @return [String]
10585
+ #
10586
+ # @!attribute [rw] max_results
10587
+ # The maximum number of results to return in the response. If the
10588
+ # total number of results is greater than this value, use the token
10589
+ # returned in the response in the `nextToken` field when making
10590
+ # another request to return the next batch of results.
10591
+ # @return [Integer]
10592
+ #
10593
+ # @!attribute [rw] next_token
10594
+ # If the total number of results is greater than the `maxResults`
10595
+ # value provided in the request, enter the token returned in the
10596
+ # `nextToken` field in the response in this field to return the next
10597
+ # batch of results.
10598
+ # @return [String]
10599
+ #
10600
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentConnectorsRequest AWS API Documentation
10601
+ #
10602
+ class ListPaymentConnectorsRequest < Struct.new(
10603
+ :payment_manager_id,
10604
+ :max_results,
10605
+ :next_token)
10606
+ SENSITIVE = []
10607
+ include Aws::Structure
10608
+ end
10609
+
10610
+ # @!attribute [rw] payment_connectors
10611
+ # The list of payment connector summaries. For details about the
10612
+ # fields in each summary, see the `PaymentConnectorSummary` data type.
10613
+ # @return [Array<Types::PaymentConnectorSummary>]
10614
+ #
10615
+ # @!attribute [rw] next_token
10616
+ # If the total number of results is greater than the `maxResults`
10617
+ # value provided in the request, use this token when making another
10618
+ # request in the `nextToken` field to return the next batch of
10619
+ # results.
10620
+ # @return [String]
10621
+ #
10622
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentConnectorsResponse AWS API Documentation
10623
+ #
10624
+ class ListPaymentConnectorsResponse < Struct.new(
10625
+ :payment_connectors,
10626
+ :next_token)
10627
+ SENSITIVE = []
10628
+ include Aws::Structure
10629
+ end
10630
+
10631
+ # @!attribute [rw] next_token
10632
+ # Pagination token.
10633
+ # @return [String]
10634
+ #
10635
+ # @!attribute [rw] max_results
10636
+ # Maximum number of results to return.
10637
+ # @return [Integer]
10638
+ #
10639
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentCredentialProvidersRequest AWS API Documentation
10640
+ #
10641
+ class ListPaymentCredentialProvidersRequest < Struct.new(
10642
+ :next_token,
10643
+ :max_results)
10644
+ SENSITIVE = []
10645
+ include Aws::Structure
10646
+ end
10647
+
10648
+ # @!attribute [rw] credential_providers
10649
+ # The list of payment credential providers.
10650
+ # @return [Array<Types::PaymentCredentialProviderItem>]
10651
+ #
10652
+ # @!attribute [rw] next_token
10653
+ # Pagination token for the next page of results.
10654
+ # @return [String]
10655
+ #
10656
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentCredentialProvidersResponse AWS API Documentation
10657
+ #
10658
+ class ListPaymentCredentialProvidersResponse < Struct.new(
10659
+ :credential_providers,
10660
+ :next_token)
10661
+ SENSITIVE = []
10662
+ include Aws::Structure
10663
+ end
10664
+
10665
+ # @!attribute [rw] max_results
10666
+ # The maximum number of results to return in the response. If the
10667
+ # total number of results is greater than this value, use the token
10668
+ # returned in the response in the `nextToken` field when making
10669
+ # another request to return the next batch of results.
10670
+ # @return [Integer]
10671
+ #
10672
+ # @!attribute [rw] next_token
10673
+ # If the total number of results is greater than the `maxResults`
10674
+ # value provided in the request, enter the token returned in the
10675
+ # `nextToken` field in the response in this field to return the next
10676
+ # batch of results.
10677
+ # @return [String]
10678
+ #
10679
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentManagersRequest AWS API Documentation
10680
+ #
10681
+ class ListPaymentManagersRequest < Struct.new(
10682
+ :max_results,
10683
+ :next_token)
10684
+ SENSITIVE = []
10685
+ include Aws::Structure
10686
+ end
10687
+
10688
+ # @!attribute [rw] payment_managers
10689
+ # The list of payment manager summaries. For details about the fields
10690
+ # in each summary, see the `PaymentManagerSummary` data type.
10691
+ # @return [Array<Types::PaymentManagerSummary>]
10692
+ #
10693
+ # @!attribute [rw] next_token
10694
+ # If the total number of results is greater than the `maxResults`
10695
+ # value provided in the request, use this token when making another
10696
+ # request in the `nextToken` field to return the next batch of
10697
+ # results.
10698
+ # @return [String]
10699
+ #
10700
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPaymentManagersResponse AWS API Documentation
10701
+ #
10702
+ class ListPaymentManagersResponse < Struct.new(
10703
+ :payment_managers,
10704
+ :next_token)
10705
+ SENSITIVE = []
10706
+ include Aws::Structure
10707
+ end
10708
+
9701
10709
  # @!attribute [rw] next_token
9702
10710
  # A pagination token returned from a previous [ListPolicies][1] call.
9703
10711
  # Use this token to retrieve the next page of results when the
@@ -9725,33 +10733,82 @@ module Aws::BedrockAgentCoreControl
9725
10733
  # tools, or operational contexts within the policy engine ecosystem.
9726
10734
  # @return [String]
9727
10735
  #
9728
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPoliciesRequest AWS API Documentation
10736
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPoliciesRequest AWS API Documentation
10737
+ #
10738
+ class ListPoliciesRequest < Struct.new(
10739
+ :next_token,
10740
+ :max_results,
10741
+ :policy_engine_id,
10742
+ :target_resource_scope)
10743
+ SENSITIVE = []
10744
+ include Aws::Structure
10745
+ end
10746
+
10747
+ # @!attribute [rw] policies
10748
+ # An array of policy objects that match the specified criteria. Each
10749
+ # policy object contains the policy metadata, status, and key
10750
+ # identifiers for further operations.
10751
+ # @return [Array<Types::Policy>]
10752
+ #
10753
+ # @!attribute [rw] next_token
10754
+ # A pagination token that can be used in subsequent ListPolicies calls
10755
+ # to retrieve additional results. This token is only present when
10756
+ # there are more results available.
10757
+ # @return [String]
10758
+ #
10759
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPoliciesResponse AWS API Documentation
10760
+ #
10761
+ class ListPoliciesResponse < Struct.new(
10762
+ :policies,
10763
+ :next_token)
10764
+ SENSITIVE = []
10765
+ include Aws::Structure
10766
+ end
10767
+
10768
+ # @!attribute [rw] next_token
10769
+ # A pagination token returned from a previous
10770
+ # [ListPolicyEngineSummaries][1] call. Use this token to retrieve the
10771
+ # next page of results when the response is paginated.
10772
+ #
10773
+ #
10774
+ #
10775
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicyEngineSummaries.html
10776
+ # @return [String]
10777
+ #
10778
+ # @!attribute [rw] max_results
10779
+ # The maximum number of policy engine summaries to return in a single
10780
+ # response.
10781
+ # @return [Integer]
9729
10782
  #
9730
- class ListPoliciesRequest < Struct.new(
10783
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyEngineSummariesRequest AWS API Documentation
10784
+ #
10785
+ class ListPolicyEngineSummariesRequest < Struct.new(
9731
10786
  :next_token,
9732
- :max_results,
9733
- :policy_engine_id,
9734
- :target_resource_scope)
10787
+ :max_results)
9735
10788
  SENSITIVE = []
9736
10789
  include Aws::Structure
9737
10790
  end
9738
10791
 
9739
- # @!attribute [rw] policies
9740
- # An array of policy objects that match the specified criteria. Each
9741
- # policy object contains the policy metadata, status, and key
9742
- # identifiers for further operations.
9743
- # @return [Array<Types::Policy>]
10792
+ # @!attribute [rw] policy_engines
10793
+ # An array of policy engine summary objects that exist in the account.
10794
+ # Each summary contains resource identifiers, status, and timestamps
10795
+ # without customer-encrypted content.
10796
+ # @return [Array<Types::PolicyEngineSummary>]
9744
10797
  #
9745
10798
  # @!attribute [rw] next_token
9746
- # A pagination token that can be used in subsequent ListPolicies calls
9747
- # to retrieve additional results. This token is only present when
9748
- # there are more results available.
10799
+ # A pagination token that can be used in subsequent
10800
+ # [ListPolicyEngineSummaries][1] calls to retrieve additional results.
10801
+ # This token is only present when there are more results available.
10802
+ #
10803
+ #
10804
+ #
10805
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicyEngineSummaries.html
9749
10806
  # @return [String]
9750
10807
  #
9751
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPoliciesResponse AWS API Documentation
10808
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyEngineSummariesResponse AWS API Documentation
9752
10809
  #
9753
- class ListPoliciesResponse < Struct.new(
9754
- :policies,
10810
+ class ListPolicyEngineSummariesResponse < Struct.new(
10811
+ :policy_engines,
9755
10812
  :next_token)
9756
10813
  SENSITIVE = []
9757
10814
  include Aws::Structure
@@ -9882,6 +10939,62 @@ module Aws::BedrockAgentCoreControl
9882
10939
  include Aws::Structure
9883
10940
  end
9884
10941
 
10942
+ # @!attribute [rw] next_token
10943
+ # A pagination token returned from a previous
10944
+ # [ListPolicyGenerationSummaries][1] call. Use this token to retrieve
10945
+ # the next page of results when the response is paginated.
10946
+ #
10947
+ #
10948
+ #
10949
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicyGenerationSummaries.html
10950
+ # @return [String]
10951
+ #
10952
+ # @!attribute [rw] max_results
10953
+ # The maximum number of policy generation summaries to return in a
10954
+ # single response.
10955
+ # @return [Integer]
10956
+ #
10957
+ # @!attribute [rw] policy_engine_id
10958
+ # The identifier of the policy engine whose policy generation
10959
+ # summaries to retrieve.
10960
+ # @return [String]
10961
+ #
10962
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyGenerationSummariesRequest AWS API Documentation
10963
+ #
10964
+ class ListPolicyGenerationSummariesRequest < Struct.new(
10965
+ :next_token,
10966
+ :max_results,
10967
+ :policy_engine_id)
10968
+ SENSITIVE = []
10969
+ include Aws::Structure
10970
+ end
10971
+
10972
+ # @!attribute [rw] policy_generations
10973
+ # An array of policy generation summary objects that match the
10974
+ # specified criteria. Each summary contains resource identifiers,
10975
+ # status, timestamps, and findings without customer-encrypted content.
10976
+ # @return [Array<Types::PolicyGenerationSummary>]
10977
+ #
10978
+ # @!attribute [rw] next_token
10979
+ # A pagination token that can be used in subsequent
10980
+ # [ListPolicyGenerationSummaries][1] calls to retrieve additional
10981
+ # results. This token is only present when there are more results
10982
+ # available.
10983
+ #
10984
+ #
10985
+ #
10986
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicyGenerationSummaries.html
10987
+ # @return [String]
10988
+ #
10989
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicyGenerationSummariesResponse AWS API Documentation
10990
+ #
10991
+ class ListPolicyGenerationSummariesResponse < Struct.new(
10992
+ :policy_generations,
10993
+ :next_token)
10994
+ SENSITIVE = []
10995
+ include Aws::Structure
10996
+ end
10997
+
9885
10998
  # @!attribute [rw] next_token
9886
10999
  # A pagination token for retrieving additional policy generations when
9887
11000
  # results are paginated.
@@ -9926,6 +11039,69 @@ module Aws::BedrockAgentCoreControl
9926
11039
  include Aws::Structure
9927
11040
  end
9928
11041
 
11042
+ # @!attribute [rw] next_token
11043
+ # A pagination token returned from a previous [ListPolicySummaries][1]
11044
+ # call. Use this token to retrieve the next page of results when the
11045
+ # response is paginated.
11046
+ #
11047
+ #
11048
+ #
11049
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicySummaries.html
11050
+ # @return [String]
11051
+ #
11052
+ # @!attribute [rw] max_results
11053
+ # The maximum number of policy summaries to return in a single
11054
+ # response.
11055
+ # @return [Integer]
11056
+ #
11057
+ # @!attribute [rw] policy_engine_id
11058
+ # The identifier of the policy engine whose policy summaries to
11059
+ # retrieve.
11060
+ # @return [String]
11061
+ #
11062
+ # @!attribute [rw] target_resource_scope
11063
+ # Optional filter to list policy summaries that apply to a specific
11064
+ # resource scope or resource type. This helps narrow down results to
11065
+ # those relevant for particular Amazon Web Services resources, agent
11066
+ # tools, or operational contexts within the policy engine ecosystem.
11067
+ # @return [String]
11068
+ #
11069
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicySummariesRequest AWS API Documentation
11070
+ #
11071
+ class ListPolicySummariesRequest < Struct.new(
11072
+ :next_token,
11073
+ :max_results,
11074
+ :policy_engine_id,
11075
+ :target_resource_scope)
11076
+ SENSITIVE = []
11077
+ include Aws::Structure
11078
+ end
11079
+
11080
+ # @!attribute [rw] policies
11081
+ # An array of policy summary objects that match the specified
11082
+ # criteria. Each summary contains resource identifiers, status, and
11083
+ # timestamps without customer-encrypted content.
11084
+ # @return [Array<Types::PolicySummary>]
11085
+ #
11086
+ # @!attribute [rw] next_token
11087
+ # A pagination token that can be used in subsequent
11088
+ # [ListPolicySummaries][1] calls to retrieve additional results. This
11089
+ # token is only present when there are more results available.
11090
+ #
11091
+ #
11092
+ #
11093
+ # [1]: https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicySummaries.html
11094
+ # @return [String]
11095
+ #
11096
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListPolicySummariesResponse AWS API Documentation
11097
+ #
11098
+ class ListPolicySummariesResponse < Struct.new(
11099
+ :policies,
11100
+ :next_token)
11101
+ SENSITIVE = []
11102
+ include Aws::Structure
11103
+ end
11104
+
9929
11105
  # @!attribute [rw] max_results
9930
11106
  # The maximum number of results to return in the response. If the
9931
11107
  # total number of results is greater than this value, use the token
@@ -9946,12 +11122,19 @@ module Aws::BedrockAgentCoreControl
9946
11122
  # `DELETING`, and `DELETE_FAILED`.
9947
11123
  # @return [String]
9948
11124
  #
11125
+ # @!attribute [rw] authorizer_type
11126
+ # Filter registries by their authorizer type. Possible values are
11127
+ # `CUSTOM_JWT` and `AWS_IAM`. For more information about authorizer
11128
+ # types, see the `RegistryAuthorizerType` enum.
11129
+ # @return [String]
11130
+ #
9949
11131
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListRegistriesRequest AWS API Documentation
9950
11132
  #
9951
11133
  class ListRegistriesRequest < Struct.new(
9952
11134
  :max_results,
9953
11135
  :next_token,
9954
- :status)
11136
+ :status,
11137
+ :authorizer_type)
9955
11138
  SENSITIVE = []
9956
11139
  include Aws::Structure
9957
11140
  end
@@ -10290,8 +11473,7 @@ module Aws::BedrockAgentCoreControl
10290
11473
  end
10291
11474
 
10292
11475
  # Union for principal matching. Currently supports IAM principal ARN
10293
- # glob matching. Extensible for future principal types (e.g., OAuth
10294
- # client ID).
11476
+ # glob matching.
10295
11477
  #
10296
11478
  # @note MatchPrincipalEntry is a union - when making an API calls you must set exactly one of the members.
10297
11479
  #
@@ -10616,7 +11798,8 @@ module Aws::BedrockAgentCoreControl
10616
11798
  # @return [String]
10617
11799
  #
10618
11800
  # @!attribute [rw] namespaces
10619
- # The namespaces associated with the memory strategy.
11801
+ # This is a legacy parameter. The namespaces associated with the
11802
+ # memory strategy.
10620
11803
  # @return [Array<String>]
10621
11804
  #
10622
11805
  # @!attribute [rw] namespace_templates
@@ -10959,7 +12142,8 @@ module Aws::BedrockAgentCoreControl
10959
12142
  # @return [String]
10960
12143
  #
10961
12144
  # @!attribute [rw] namespaces
10962
- # The updated namespaces for the memory strategy.
12145
+ # This is a legacy parameter, use `namespaceTemplates`. The updated
12146
+ # namespaces for the memory strategy.
10963
12147
  # @return [Array<String>]
10964
12148
  #
10965
12149
  # @!attribute [rw] namespace_templates
@@ -11182,6 +12366,10 @@ module Aws::BedrockAgentCoreControl
11182
12366
  #
11183
12367
  # * `AUTHORIZATION_CODE` - Authorization with a token that is specific
11184
12368
  # to an individual end user.
12369
+ #
12370
+ # * `TOKEN_EXCHANGE` - Authorization using on-behalf-of token
12371
+ # exchange. An inbound user token is exchanged for a downstream
12372
+ # access token scoped to the target audience.
11185
12373
  # @return [String]
11186
12374
  #
11187
12375
  # @!attribute [rw] default_return_url
@@ -11478,63 +12666,268 @@ module Aws::BedrockAgentCoreControl
11478
12666
  # The name of the online evaluation configuration.
11479
12667
  # @return [String]
11480
12668
  #
11481
- # @!attribute [rw] description
11482
- # The description of the online evaluation configuration.
12669
+ # @!attribute [rw] description
12670
+ # The description of the online evaluation configuration.
12671
+ # @return [String]
12672
+ #
12673
+ # @!attribute [rw] status
12674
+ # The status of the online evaluation configuration.
12675
+ # @return [String]
12676
+ #
12677
+ # @!attribute [rw] execution_status
12678
+ # The execution status indicating whether the online evaluation is
12679
+ # currently running.
12680
+ # @return [String]
12681
+ #
12682
+ # @!attribute [rw] created_at
12683
+ # The timestamp when the online evaluation configuration was created.
12684
+ # @return [Time]
12685
+ #
12686
+ # @!attribute [rw] updated_at
12687
+ # The timestamp when the online evaluation configuration was last
12688
+ # updated.
12689
+ # @return [Time]
12690
+ #
12691
+ # @!attribute [rw] failure_reason
12692
+ # The reason for failure if the online evaluation configuration
12693
+ # execution failed.
12694
+ # @return [String]
12695
+ #
12696
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OnlineEvaluationConfigSummary AWS API Documentation
12697
+ #
12698
+ class OnlineEvaluationConfigSummary < Struct.new(
12699
+ :online_evaluation_config_arn,
12700
+ :online_evaluation_config_id,
12701
+ :online_evaluation_config_name,
12702
+ :description,
12703
+ :status,
12704
+ :execution_status,
12705
+ :created_at,
12706
+ :updated_at,
12707
+ :failure_reason)
12708
+ SENSITIVE = [:description]
12709
+ include Aws::Structure
12710
+ end
12711
+
12712
+ # The configuration that specifies where evaluation results should be
12713
+ # written for monitoring and analysis.
12714
+ #
12715
+ # @!attribute [rw] cloud_watch_config
12716
+ # The CloudWatch configuration for writing evaluation results to
12717
+ # CloudWatch logs with embedded metric format.
12718
+ # @return [Types::CloudWatchOutputConfig]
12719
+ #
12720
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OutputConfig AWS API Documentation
12721
+ #
12722
+ class OutputConfig < Struct.new(
12723
+ :cloud_watch_config)
12724
+ SENSITIVE = []
12725
+ include Aws::Structure
12726
+ end
12727
+
12728
+ # Contains summary information about a payment connector.
12729
+ #
12730
+ # @!attribute [rw] payment_connector_id
12731
+ # The unique identifier of the payment connector.
12732
+ # @return [String]
12733
+ #
12734
+ # @!attribute [rw] name
12735
+ # The name of the payment connector.
12736
+ # @return [String]
12737
+ #
12738
+ # @!attribute [rw] type
12739
+ # The type of the payment connector, which determines the payment
12740
+ # provider integration.
12741
+ # @return [String]
12742
+ #
12743
+ # @!attribute [rw] status
12744
+ # The current status of the payment connector. Possible values include
12745
+ # `CREATING`, `READY`, `UPDATING`, `DELETING`, `CREATE_FAILED`,
12746
+ # `UPDATE_FAILED`, and `DELETE_FAILED`.
12747
+ # @return [String]
12748
+ #
12749
+ # @!attribute [rw] last_updated_at
12750
+ # The timestamp when the payment connector was last updated.
12751
+ # @return [Time]
12752
+ #
12753
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PaymentConnectorSummary AWS API Documentation
12754
+ #
12755
+ class PaymentConnectorSummary < Struct.new(
12756
+ :payment_connector_id,
12757
+ :name,
12758
+ :type,
12759
+ :status,
12760
+ :last_updated_at)
12761
+ SENSITIVE = []
12762
+ include Aws::Structure
12763
+ end
12764
+
12765
+ # Configuration for a payment credential provider that stores
12766
+ # authentication credentials for a payment provider.
12767
+ #
12768
+ # @!attribute [rw] credential_provider_arn
12769
+ # The Amazon Resource Name (ARN) of the credential provider that
12770
+ # stores the authentication credentials for the payment provider.
12771
+ # @return [String]
12772
+ #
12773
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PaymentCredentialProviderConfiguration AWS API Documentation
12774
+ #
12775
+ class PaymentCredentialProviderConfiguration < Struct.new(
12776
+ :credential_provider_arn)
12777
+ SENSITIVE = []
12778
+ include Aws::Structure
12779
+ end
12780
+
12781
+ # Contains summary information about a payment credential provider.
12782
+ #
12783
+ # @!attribute [rw] name
12784
+ # The name of the payment credential provider.
12785
+ # @return [String]
12786
+ #
12787
+ # @!attribute [rw] credential_provider_vendor
12788
+ # The vendor type for the payment credential provider.
12789
+ # @return [String]
12790
+ #
12791
+ # @!attribute [rw] credential_provider_arn
12792
+ # The Amazon Resource Name (ARN) of the payment credential provider.
12793
+ # @return [String]
12794
+ #
12795
+ # @!attribute [rw] created_time
12796
+ # The timestamp when the payment credential provider was created.
12797
+ # @return [Time]
12798
+ #
12799
+ # @!attribute [rw] last_updated_time
12800
+ # The timestamp when the payment credential provider was last updated.
12801
+ # @return [Time]
12802
+ #
12803
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PaymentCredentialProviderItem AWS API Documentation
12804
+ #
12805
+ class PaymentCredentialProviderItem < Struct.new(
12806
+ :name,
12807
+ :credential_provider_vendor,
12808
+ :credential_provider_arn,
12809
+ :created_time,
12810
+ :last_updated_time)
12811
+ SENSITIVE = []
12812
+ include Aws::Structure
12813
+ end
12814
+
12815
+ # Contains summary information about a payment manager.
12816
+ #
12817
+ # @!attribute [rw] payment_manager_arn
12818
+ # The Amazon Resource Name (ARN) of the payment manager.
12819
+ # @return [String]
12820
+ #
12821
+ # @!attribute [rw] payment_manager_id
12822
+ # The unique identifier of the payment manager.
12823
+ # @return [String]
12824
+ #
12825
+ # @!attribute [rw] name
12826
+ # The name of the payment manager.
12827
+ # @return [String]
12828
+ #
12829
+ # @!attribute [rw] description
12830
+ # The description of the payment manager.
12831
+ # @return [String]
12832
+ #
12833
+ # @!attribute [rw] authorizer_type
12834
+ # The type of authorizer used by the payment manager.
12835
+ #
12836
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
12837
+ #
12838
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM
12839
+ # credentials.
12840
+ # @return [String]
12841
+ #
12842
+ # @!attribute [rw] role_arn
12843
+ # The Amazon Resource Name (ARN) of the IAM role associated with the
12844
+ # payment manager.
11483
12845
  # @return [String]
11484
12846
  #
11485
12847
  # @!attribute [rw] status
11486
- # The status of the online evaluation configuration.
11487
- # @return [String]
11488
- #
11489
- # @!attribute [rw] execution_status
11490
- # The execution status indicating whether the online evaluation is
11491
- # currently running.
12848
+ # The current status of the payment manager. Possible values include
12849
+ # `CREATING`, `READY`, `UPDATING`, `DELETING`, `CREATE_FAILED`,
12850
+ # `UPDATE_FAILED`, and `DELETE_FAILED`.
11492
12851
  # @return [String]
11493
12852
  #
11494
12853
  # @!attribute [rw] created_at
11495
- # The timestamp when the online evaluation configuration was created.
12854
+ # The timestamp when the payment manager was created.
11496
12855
  # @return [Time]
11497
12856
  #
11498
- # @!attribute [rw] updated_at
11499
- # The timestamp when the online evaluation configuration was last
11500
- # updated.
12857
+ # @!attribute [rw] last_updated_at
12858
+ # The timestamp when the payment manager was last updated.
11501
12859
  # @return [Time]
11502
12860
  #
11503
- # @!attribute [rw] failure_reason
11504
- # The reason for failure if the online evaluation configuration
11505
- # execution failed.
11506
- # @return [String]
11507
- #
11508
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OnlineEvaluationConfigSummary AWS API Documentation
12861
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PaymentManagerSummary AWS API Documentation
11509
12862
  #
11510
- class OnlineEvaluationConfigSummary < Struct.new(
11511
- :online_evaluation_config_arn,
11512
- :online_evaluation_config_id,
11513
- :online_evaluation_config_name,
12863
+ class PaymentManagerSummary < Struct.new(
12864
+ :payment_manager_arn,
12865
+ :payment_manager_id,
12866
+ :name,
11514
12867
  :description,
12868
+ :authorizer_type,
12869
+ :role_arn,
11515
12870
  :status,
11516
- :execution_status,
11517
12871
  :created_at,
11518
- :updated_at,
11519
- :failure_reason)
11520
- SENSITIVE = [:description]
12872
+ :last_updated_at)
12873
+ SENSITIVE = []
11521
12874
  include Aws::Structure
11522
12875
  end
11523
12876
 
11524
- # The configuration that specifies where evaluation results should be
11525
- # written for monitoring and analysis.
12877
+ # Provider configuration input contains secrets for creation and
12878
+ # update. Varies by vendor type.
11526
12879
  #
11527
- # @!attribute [rw] cloud_watch_config
11528
- # The CloudWatch configuration for writing evaluation results to
11529
- # CloudWatch logs with embedded metric format.
11530
- # @return [Types::CloudWatchOutputConfig]
12880
+ # @note PaymentProviderConfigurationInput is a union - when making an API calls you must set exactly one of the members.
11531
12881
  #
11532
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OutputConfig AWS API Documentation
12882
+ # @!attribute [rw] coinbase_cdp_configuration
12883
+ # The Coinbase CDP configuration.
12884
+ # @return [Types::CoinbaseCdpConfigurationInput]
11533
12885
  #
11534
- class OutputConfig < Struct.new(
11535
- :cloud_watch_config)
12886
+ # @!attribute [rw] stripe_privy_configuration
12887
+ # The Stripe Privy configuration.
12888
+ # @return [Types::StripePrivyConfigurationInput]
12889
+ #
12890
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PaymentProviderConfigurationInput AWS API Documentation
12891
+ #
12892
+ class PaymentProviderConfigurationInput < Struct.new(
12893
+ :coinbase_cdp_configuration,
12894
+ :stripe_privy_configuration,
12895
+ :unknown)
12896
+ SENSITIVE = []
12897
+ include Aws::Structure
12898
+ include Aws::Structure::Union
12899
+
12900
+ class CoinbaseCdpConfiguration < PaymentProviderConfigurationInput; end
12901
+ class StripePrivyConfiguration < PaymentProviderConfigurationInput; end
12902
+ class Unknown < PaymentProviderConfigurationInput; end
12903
+ end
12904
+
12905
+ # Provider configuration output — no raw secrets, only ARNs. Varies by
12906
+ # vendor type.
12907
+ #
12908
+ # @note PaymentProviderConfigurationOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PaymentProviderConfigurationOutput corresponding to the set member.
12909
+ #
12910
+ # @!attribute [rw] coinbase_cdp_configuration
12911
+ # The Coinbase CDP configuration.
12912
+ # @return [Types::CoinbaseCdpConfigurationOutput]
12913
+ #
12914
+ # @!attribute [rw] stripe_privy_configuration
12915
+ # The Stripe Privy configuration.
12916
+ # @return [Types::StripePrivyConfigurationOutput]
12917
+ #
12918
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PaymentProviderConfigurationOutput AWS API Documentation
12919
+ #
12920
+ class PaymentProviderConfigurationOutput < Struct.new(
12921
+ :coinbase_cdp_configuration,
12922
+ :stripe_privy_configuration,
12923
+ :unknown)
11536
12924
  SENSITIVE = []
11537
12925
  include Aws::Structure
12926
+ include Aws::Structure::Union
12927
+
12928
+ class CoinbaseCdpConfiguration < PaymentProviderConfigurationOutput; end
12929
+ class StripePrivyConfiguration < PaymentProviderConfigurationOutput; end
12930
+ class Unknown < PaymentProviderConfigurationOutput; end
11538
12931
  end
11539
12932
 
11540
12933
  # Represents a complete policy resource within the AgentCore Policy
@@ -11568,18 +12961,6 @@ module Aws::BedrockAgentCoreControl
11568
12961
  # management.
11569
12962
  # @return [String]
11570
12963
  #
11571
- # @!attribute [rw] definition
11572
- # The Cedar policy statement that defines the access control rules.
11573
- # This contains the actual policy logic used for agent behavior
11574
- # control and access decisions.
11575
- # @return [Types::PolicyDefinition]
11576
- #
11577
- # @!attribute [rw] description
11578
- # A human-readable description of the policy's purpose and
11579
- # functionality. Limited to 4,096 characters, this helps
11580
- # administrators understand and manage the policy.
11581
- # @return [String]
11582
- #
11583
12964
  # @!attribute [rw] created_at
11584
12965
  # The timestamp when the policy was originally created. This is
11585
12966
  # automatically set by the service and used for auditing and lifecycle
@@ -11601,6 +12982,18 @@ module Aws::BedrockAgentCoreControl
11601
12982
  # The current status of the policy.
11602
12983
  # @return [String]
11603
12984
  #
12985
+ # @!attribute [rw] definition
12986
+ # The Cedar policy statement that defines the access control rules.
12987
+ # This contains the actual policy logic used for agent behavior
12988
+ # control and access decisions.
12989
+ # @return [Types::PolicyDefinition]
12990
+ #
12991
+ # @!attribute [rw] description
12992
+ # A human-readable description of the policy's purpose and
12993
+ # functionality. Limited to 4,096 characters, this helps
12994
+ # administrators understand and manage the policy.
12995
+ # @return [String]
12996
+ #
11604
12997
  # @!attribute [rw] status_reasons
11605
12998
  # Additional information about the policy status. This provides
11606
12999
  # details about any failures or the current state of the policy
@@ -11613,12 +13006,12 @@ module Aws::BedrockAgentCoreControl
11613
13006
  :policy_id,
11614
13007
  :name,
11615
13008
  :policy_engine_id,
11616
- :definition,
11617
- :description,
11618
13009
  :created_at,
11619
13010
  :updated_at,
11620
13011
  :policy_arn,
11621
13012
  :status,
13013
+ :definition,
13014
+ :description,
11622
13015
  :status_reasons)
11623
13016
  SENSITIVE = [:description]
11624
13017
  include Aws::Structure
@@ -11697,13 +13090,6 @@ module Aws::BedrockAgentCoreControl
11697
13090
  # cannot exceed 48 characters.
11698
13091
  # @return [String]
11699
13092
  #
11700
- # @!attribute [rw] description
11701
- # A human-readable description of the policy engine's purpose and
11702
- # scope. Limited to 4,096 characters, this helps administrators
11703
- # understand the policy engine's role in the overall governance
11704
- # strategy.
11705
- # @return [String]
11706
- #
11707
13093
  # @!attribute [rw] created_at
11708
13094
  # The timestamp when the policy engine was originally created. This is
11709
13095
  # automatically set by the service and used for auditing and lifecycle
@@ -11726,30 +13112,86 @@ module Aws::BedrockAgentCoreControl
11726
13112
  # The current status of the policy engine.
11727
13113
  # @return [String]
11728
13114
  #
13115
+ # @!attribute [rw] encryption_key_arn
13116
+ # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
13117
+ # policy engine data.
13118
+ # @return [String]
13119
+ #
13120
+ # @!attribute [rw] description
13121
+ # A human-readable description of the policy engine's purpose and
13122
+ # scope. Limited to 4,096 characters, this helps administrators
13123
+ # understand the policy engine's role in the overall governance
13124
+ # strategy.
13125
+ # @return [String]
13126
+ #
11729
13127
  # @!attribute [rw] status_reasons
11730
13128
  # Additional information about the policy engine status. This provides
11731
13129
  # details about any failures or the current state of the policy engine
11732
13130
  # lifecycle.
11733
13131
  # @return [Array<String>]
11734
13132
  #
13133
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicyEngine AWS API Documentation
13134
+ #
13135
+ class PolicyEngine < Struct.new(
13136
+ :policy_engine_id,
13137
+ :name,
13138
+ :created_at,
13139
+ :updated_at,
13140
+ :policy_engine_arn,
13141
+ :status,
13142
+ :encryption_key_arn,
13143
+ :description,
13144
+ :status_reasons)
13145
+ SENSITIVE = [:description]
13146
+ include Aws::Structure
13147
+ end
13148
+
13149
+ # Represents a metadata-only summary of a policy engine resource. This
13150
+ # structure contains resource identifiers, status, and timestamps
13151
+ # without customer-encrypted fields such as description or status
13152
+ # reasons. Policy engine summaries are returned by operations that do
13153
+ # not require access to the customer's KMS key.
13154
+ #
13155
+ # @!attribute [rw] policy_engine_id
13156
+ # The unique identifier for the policy engine.
13157
+ # @return [String]
13158
+ #
13159
+ # @!attribute [rw] name
13160
+ # The customer-assigned name of the policy engine.
13161
+ # @return [String]
13162
+ #
13163
+ # @!attribute [rw] created_at
13164
+ # The timestamp when the policy engine was originally created.
13165
+ # @return [Time]
13166
+ #
13167
+ # @!attribute [rw] updated_at
13168
+ # The timestamp when the policy engine was last modified.
13169
+ # @return [Time]
13170
+ #
13171
+ # @!attribute [rw] policy_engine_arn
13172
+ # The Amazon Resource Name (ARN) of the policy engine.
13173
+ # @return [String]
13174
+ #
13175
+ # @!attribute [rw] status
13176
+ # The current status of the policy engine.
13177
+ # @return [String]
13178
+ #
11735
13179
  # @!attribute [rw] encryption_key_arn
11736
13180
  # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
11737
13181
  # policy engine data.
11738
13182
  # @return [String]
11739
13183
  #
11740
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicyEngine AWS API Documentation
13184
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicyEngineSummary AWS API Documentation
11741
13185
  #
11742
- class PolicyEngine < Struct.new(
13186
+ class PolicyEngineSummary < Struct.new(
11743
13187
  :policy_engine_id,
11744
13188
  :name,
11745
- :description,
11746
13189
  :created_at,
11747
13190
  :updated_at,
11748
13191
  :policy_engine_arn,
11749
13192
  :status,
11750
- :status_reasons,
11751
13193
  :encryption_key_arn)
11752
- SENSITIVE = [:description]
13194
+ SENSITIVE = []
11753
13195
  include Aws::Structure
11754
13196
  end
11755
13197
 
@@ -11799,14 +13241,14 @@ module Aws::BedrockAgentCoreControl
11799
13241
  # The current status of this policy generation request.
11800
13242
  # @return [String]
11801
13243
  #
11802
- # @!attribute [rw] status_reasons
11803
- # Additional information about the generation status.
11804
- # @return [Array<String>]
11805
- #
11806
13244
  # @!attribute [rw] findings
11807
13245
  # Findings and insights from this policy generation process.
11808
13246
  # @return [String]
11809
13247
  #
13248
+ # @!attribute [rw] status_reasons
13249
+ # Additional information about the generation status.
13250
+ # @return [Array<String>]
13251
+ #
11810
13252
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicyGeneration AWS API Documentation
11811
13253
  #
11812
13254
  class PolicyGeneration < Struct.new(
@@ -11818,8 +13260,8 @@ module Aws::BedrockAgentCoreControl
11818
13260
  :created_at,
11819
13261
  :updated_at,
11820
13262
  :status,
11821
- :status_reasons,
11822
- :findings)
13263
+ :findings,
13264
+ :status_reasons)
11823
13265
  SENSITIVE = []
11824
13266
  include Aws::Structure
11825
13267
  end
@@ -11900,6 +13342,113 @@ module Aws::BedrockAgentCoreControl
11900
13342
  include Aws::Structure
11901
13343
  end
11902
13344
 
13345
+ # Represents a metadata-only summary of a policy generation resource.
13346
+ # This structure contains resource identifiers, status, timestamps, and
13347
+ # findings without customer-encrypted fields such as status reasons.
13348
+ # Policy generation summaries are returned by operations that do not
13349
+ # require access to the customer's KMS key.
13350
+ #
13351
+ # @!attribute [rw] policy_engine_id
13352
+ # The identifier of the policy engine associated with this generation
13353
+ # request.
13354
+ # @return [String]
13355
+ #
13356
+ # @!attribute [rw] policy_generation_id
13357
+ # The unique identifier for this policy generation request.
13358
+ # @return [String]
13359
+ #
13360
+ # @!attribute [rw] name
13361
+ # The customer-assigned name for this policy generation request.
13362
+ # @return [String]
13363
+ #
13364
+ # @!attribute [rw] policy_generation_arn
13365
+ # The ARN of this policy generation request.
13366
+ # @return [String]
13367
+ #
13368
+ # @!attribute [rw] resource
13369
+ # The resource information associated with this policy generation.
13370
+ # @return [Types::Resource]
13371
+ #
13372
+ # @!attribute [rw] created_at
13373
+ # The timestamp when this policy generation request was created.
13374
+ # @return [Time]
13375
+ #
13376
+ # @!attribute [rw] updated_at
13377
+ # The timestamp when this policy generation was last updated.
13378
+ # @return [Time]
13379
+ #
13380
+ # @!attribute [rw] status
13381
+ # The current status of this policy generation request.
13382
+ # @return [String]
13383
+ #
13384
+ # @!attribute [rw] findings
13385
+ # Findings and insights from this policy generation process.
13386
+ # @return [String]
13387
+ #
13388
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicyGenerationSummary AWS API Documentation
13389
+ #
13390
+ class PolicyGenerationSummary < Struct.new(
13391
+ :policy_engine_id,
13392
+ :policy_generation_id,
13393
+ :name,
13394
+ :policy_generation_arn,
13395
+ :resource,
13396
+ :created_at,
13397
+ :updated_at,
13398
+ :status,
13399
+ :findings)
13400
+ SENSITIVE = []
13401
+ include Aws::Structure
13402
+ end
13403
+
13404
+ # Represents a metadata-only summary of a policy resource. This
13405
+ # structure contains resource identifiers, status, and timestamps
13406
+ # without customer-encrypted fields such as definition, description, or
13407
+ # status reasons. Policy summaries are returned by operations that do
13408
+ # not require access to the customer's KMS key.
13409
+ #
13410
+ # @!attribute [rw] policy_id
13411
+ # The unique identifier for the policy.
13412
+ # @return [String]
13413
+ #
13414
+ # @!attribute [rw] name
13415
+ # The customer-assigned name of the policy.
13416
+ # @return [String]
13417
+ #
13418
+ # @!attribute [rw] policy_engine_id
13419
+ # The identifier of the policy engine that manages this policy.
13420
+ # @return [String]
13421
+ #
13422
+ # @!attribute [rw] created_at
13423
+ # The timestamp when the policy was originally created.
13424
+ # @return [Time]
13425
+ #
13426
+ # @!attribute [rw] updated_at
13427
+ # The timestamp when the policy was last modified.
13428
+ # @return [Time]
13429
+ #
13430
+ # @!attribute [rw] policy_arn
13431
+ # The Amazon Resource Name (ARN) of the policy.
13432
+ # @return [String]
13433
+ #
13434
+ # @!attribute [rw] status
13435
+ # The current status of the policy.
13436
+ # @return [String]
13437
+ #
13438
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicySummary AWS API Documentation
13439
+ #
13440
+ class PolicySummary < Struct.new(
13441
+ :policy_id,
13442
+ :name,
13443
+ :policy_engine_id,
13444
+ :created_at,
13445
+ :updated_at,
13446
+ :policy_arn,
13447
+ :status)
13448
+ SENSITIVE = []
13449
+ include Aws::Structure
13450
+ end
13451
+
11903
13452
  # The private endpoint configuration for a gateway target. Defines how
11904
13453
  # the gateway connects to private resources in your VPC.
11905
13454
  #
@@ -12845,7 +14394,8 @@ module Aws::BedrockAgentCoreControl
12845
14394
  # @return [String]
12846
14395
  #
12847
14396
  # @!attribute [rw] namespaces
12848
- # The namespaces associated with the semantic memory strategy.
14397
+ # This is a legacy parameter, use `namespaceTemplates`. The namespaces
14398
+ # associated with the semantic memory strategy.
12849
14399
  # @return [Array<String>]
12850
14400
  #
12851
14401
  # @!attribute [rw] namespace_templates
@@ -13224,14 +14774,14 @@ module Aws::BedrockAgentCoreControl
13224
14774
  # The initial status of the policy generation request.
13225
14775
  # @return [String]
13226
14776
  #
13227
- # @!attribute [rw] status_reasons
13228
- # Additional information about the generation status.
13229
- # @return [Array<String>]
13230
- #
13231
14777
  # @!attribute [rw] findings
13232
14778
  # Initial findings from the policy generation process.
13233
14779
  # @return [String]
13234
14780
  #
14781
+ # @!attribute [rw] status_reasons
14782
+ # Additional information about the generation status.
14783
+ # @return [Array<String>]
14784
+ #
13235
14785
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StartPolicyGenerationResponse AWS API Documentation
13236
14786
  #
13237
14787
  class StartPolicyGenerationResponse < Struct.new(
@@ -13243,8 +14793,8 @@ module Aws::BedrockAgentCoreControl
13243
14793
  :created_at,
13244
14794
  :updated_at,
13245
14795
  :status,
13246
- :status_reasons,
13247
- :findings)
14796
+ :findings,
14797
+ :status_reasons)
13248
14798
  SENSITIVE = []
13249
14799
  include Aws::Structure
13250
14800
  end
@@ -13403,6 +14953,64 @@ module Aws::BedrockAgentCoreControl
13403
14953
  include Aws::Structure
13404
14954
  end
13405
14955
 
14956
+ # Stripe Privy configuration — credentials provided by Stripe and Privy.
14957
+ #
14958
+ # @!attribute [rw] app_id
14959
+ # The app ID provided by Privy.
14960
+ # @return [String]
14961
+ #
14962
+ # @!attribute [rw] app_secret
14963
+ # The app secret provided by Privy.
14964
+ # @return [String]
14965
+ #
14966
+ # @!attribute [rw] authorization_private_key
14967
+ # The authorization private key for the Stripe Privy integration.
14968
+ # @return [String]
14969
+ #
14970
+ # @!attribute [rw] authorization_id
14971
+ # The authorization ID for the Stripe Privy integration.
14972
+ # @return [String]
14973
+ #
14974
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StripePrivyConfigurationInput AWS API Documentation
14975
+ #
14976
+ class StripePrivyConfigurationInput < Struct.new(
14977
+ :app_id,
14978
+ :app_secret,
14979
+ :authorization_private_key,
14980
+ :authorization_id)
14981
+ SENSITIVE = [:app_secret, :authorization_private_key]
14982
+ include Aws::Structure
14983
+ end
14984
+
14985
+ # Stripe Privy configuration output with secret ARNs.
14986
+ #
14987
+ # @!attribute [rw] app_id
14988
+ # The app ID provided by Privy.
14989
+ # @return [String]
14990
+ #
14991
+ # @!attribute [rw] app_secret_arn
14992
+ # Contains information about a secret in AWS Secrets Manager.
14993
+ # @return [Types::Secret]
14994
+ #
14995
+ # @!attribute [rw] authorization_private_key_arn
14996
+ # Contains information about a secret in AWS Secrets Manager.
14997
+ # @return [Types::Secret]
14998
+ #
14999
+ # @!attribute [rw] authorization_id
15000
+ # The authorization ID for the Stripe Privy integration.
15001
+ # @return [String]
15002
+ #
15003
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StripePrivyConfigurationOutput AWS API Documentation
15004
+ #
15005
+ class StripePrivyConfigurationOutput < Struct.new(
15006
+ :app_id,
15007
+ :app_secret_arn,
15008
+ :authorization_private_key_arn,
15009
+ :authorization_id)
15010
+ SENSITIVE = []
15011
+ include Aws::Structure
15012
+ end
15013
+
13406
15014
  # @!attribute [rw] registry_id
13407
15015
  # The identifier of the registry containing the record. You can
13408
15016
  # specify either the Amazon Resource Name (ARN) or the ID of the
@@ -13487,7 +15095,8 @@ module Aws::BedrockAgentCoreControl
13487
15095
  # @return [String]
13488
15096
  #
13489
15097
  # @!attribute [rw] namespaces
13490
- # The namespaces associated with the summary memory strategy.
15098
+ # This is a legacy parameter, use `namespaceTemplates`. The namespaces
15099
+ # associated with the summary memory strategy.
13491
15100
  # @return [Array<String>]
13492
15101
  #
13493
15102
  # @!attribute [rw] namespace_templates
@@ -15205,7 +16814,7 @@ module Aws::BedrockAgentCoreControl
15205
16814
  # @return [Time]
15206
16815
  #
15207
16816
  # @!attribute [rw] status
15208
- # The current status of the OAuth2 credential provider.
16817
+ # The current status of the updated OAuth2 credential provider.
15209
16818
  # @return [String]
15210
16819
  #
15211
16820
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateOauth2CredentialProviderResponse AWS API Documentation
@@ -15330,6 +16939,263 @@ module Aws::BedrockAgentCoreControl
15330
16939
  include Aws::Structure
15331
16940
  end
15332
16941
 
16942
+ # @!attribute [rw] payment_manager_id
16943
+ # The unique identifier of the parent payment manager.
16944
+ # @return [String]
16945
+ #
16946
+ # @!attribute [rw] payment_connector_id
16947
+ # The unique identifier of the payment connector to update.
16948
+ # @return [String]
16949
+ #
16950
+ # @!attribute [rw] description
16951
+ # The updated description of the payment connector.
16952
+ # @return [String]
16953
+ #
16954
+ # @!attribute [rw] type
16955
+ # The updated type of the payment connector.
16956
+ # @return [String]
16957
+ #
16958
+ # @!attribute [rw] credential_provider_configurations
16959
+ # The updated credential provider configurations for the payment
16960
+ # connector.
16961
+ # @return [Array<Types::CredentialsProviderConfiguration>]
16962
+ #
16963
+ # @!attribute [rw] client_token
16964
+ # A unique, case-sensitive identifier to ensure that the API request
16965
+ # completes no more than one time. If you don't specify this field, a
16966
+ # value is randomly generated for you. If this token matches a
16967
+ # previous request, the service ignores the request, but doesn't
16968
+ # return an error. For more information, see [Ensuring
16969
+ # idempotency][1].
16970
+ #
16971
+ # **A suitable default value is auto-generated.** You should normally
16972
+ # not need to pass this option.
16973
+ #
16974
+ #
16975
+ #
16976
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
16977
+ # @return [String]
16978
+ #
16979
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentConnectorRequest AWS API Documentation
16980
+ #
16981
+ class UpdatePaymentConnectorRequest < Struct.new(
16982
+ :payment_manager_id,
16983
+ :payment_connector_id,
16984
+ :description,
16985
+ :type,
16986
+ :credential_provider_configurations,
16987
+ :client_token)
16988
+ SENSITIVE = []
16989
+ include Aws::Structure
16990
+ end
16991
+
16992
+ # @!attribute [rw] payment_connector_id
16993
+ # The unique identifier of the updated payment connector.
16994
+ # @return [String]
16995
+ #
16996
+ # @!attribute [rw] payment_manager_id
16997
+ # The unique identifier of the parent payment manager.
16998
+ # @return [String]
16999
+ #
17000
+ # @!attribute [rw] name
17001
+ # The name of the updated payment connector.
17002
+ # @return [String]
17003
+ #
17004
+ # @!attribute [rw] type
17005
+ # The type of the updated payment connector.
17006
+ # @return [String]
17007
+ #
17008
+ # @!attribute [rw] credential_provider_configurations
17009
+ # The credential provider configurations for the updated payment
17010
+ # connector.
17011
+ # @return [Array<Types::CredentialsProviderConfiguration>]
17012
+ #
17013
+ # @!attribute [rw] last_updated_at
17014
+ # The timestamp when the payment connector was last updated.
17015
+ # @return [Time]
17016
+ #
17017
+ # @!attribute [rw] status
17018
+ # The current status of the updated payment connector. Possible values
17019
+ # include `CREATING`, `READY`, `UPDATING`, `DELETING`,
17020
+ # `CREATE_FAILED`, `UPDATE_FAILED`, and `DELETE_FAILED`.
17021
+ # @return [String]
17022
+ #
17023
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentConnectorResponse AWS API Documentation
17024
+ #
17025
+ class UpdatePaymentConnectorResponse < Struct.new(
17026
+ :payment_connector_id,
17027
+ :payment_manager_id,
17028
+ :name,
17029
+ :type,
17030
+ :credential_provider_configurations,
17031
+ :last_updated_at,
17032
+ :status)
17033
+ SENSITIVE = []
17034
+ include Aws::Structure
17035
+ end
17036
+
17037
+ # @!attribute [rw] name
17038
+ # The name of the payment credential provider to update.
17039
+ # @return [String]
17040
+ #
17041
+ # @!attribute [rw] credential_provider_vendor
17042
+ # The vendor type for the payment credential provider (e.g.,
17043
+ # CoinbaseCDP, StripePrivy).
17044
+ # @return [String]
17045
+ #
17046
+ # @!attribute [rw] provider_configuration_input
17047
+ # Configuration specific to the vendor, including API credentials.
17048
+ # @return [Types::PaymentProviderConfigurationInput]
17049
+ #
17050
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentCredentialProviderRequest AWS API Documentation
17051
+ #
17052
+ class UpdatePaymentCredentialProviderRequest < Struct.new(
17053
+ :name,
17054
+ :credential_provider_vendor,
17055
+ :provider_configuration_input)
17056
+ SENSITIVE = []
17057
+ include Aws::Structure
17058
+ end
17059
+
17060
+ # @!attribute [rw] name
17061
+ # The name of the updated payment credential provider.
17062
+ # @return [String]
17063
+ #
17064
+ # @!attribute [rw] credential_provider_vendor
17065
+ # The vendor type for the updated payment credential provider.
17066
+ # @return [String]
17067
+ #
17068
+ # @!attribute [rw] credential_provider_arn
17069
+ # The Amazon Resource Name (ARN) of the updated payment credential
17070
+ # provider.
17071
+ # @return [String]
17072
+ #
17073
+ # @!attribute [rw] provider_configuration_output
17074
+ # Output configuration (contains secret ARNs, excludes actual secret
17075
+ # values).
17076
+ # @return [Types::PaymentProviderConfigurationOutput]
17077
+ #
17078
+ # @!attribute [rw] created_time
17079
+ # The timestamp when the payment credential provider was created.
17080
+ # @return [Time]
17081
+ #
17082
+ # @!attribute [rw] last_updated_time
17083
+ # The timestamp when the payment credential provider was last updated.
17084
+ # @return [Time]
17085
+ #
17086
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentCredentialProviderResponse AWS API Documentation
17087
+ #
17088
+ class UpdatePaymentCredentialProviderResponse < Struct.new(
17089
+ :name,
17090
+ :credential_provider_vendor,
17091
+ :credential_provider_arn,
17092
+ :provider_configuration_output,
17093
+ :created_time,
17094
+ :last_updated_time)
17095
+ SENSITIVE = []
17096
+ include Aws::Structure
17097
+ end
17098
+
17099
+ # @!attribute [rw] payment_manager_id
17100
+ # The unique identifier of the payment manager to update.
17101
+ # @return [String]
17102
+ #
17103
+ # @!attribute [rw] description
17104
+ # The updated description of the payment manager.
17105
+ # @return [String]
17106
+ #
17107
+ # @!attribute [rw] authorizer_type
17108
+ # The updated authorizer type for the payment manager.
17109
+ # @return [String]
17110
+ #
17111
+ # @!attribute [rw] authorizer_configuration
17112
+ # The updated authorizer configuration for the payment manager.
17113
+ # @return [Types::AuthorizerConfiguration]
17114
+ #
17115
+ # @!attribute [rw] role_arn
17116
+ # The updated Amazon Resource Name (ARN) of the IAM role for the
17117
+ # payment manager.
17118
+ # @return [String]
17119
+ #
17120
+ # @!attribute [rw] client_token
17121
+ # A unique, case-sensitive identifier to ensure that the API request
17122
+ # completes no more than one time. If you don't specify this field, a
17123
+ # value is randomly generated for you. If this token matches a
17124
+ # previous request, the service ignores the request, but doesn't
17125
+ # return an error. For more information, see [Ensuring
17126
+ # idempotency][1].
17127
+ #
17128
+ # **A suitable default value is auto-generated.** You should normally
17129
+ # not need to pass this option.
17130
+ #
17131
+ #
17132
+ #
17133
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
17134
+ # @return [String]
17135
+ #
17136
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentManagerRequest AWS API Documentation
17137
+ #
17138
+ class UpdatePaymentManagerRequest < Struct.new(
17139
+ :payment_manager_id,
17140
+ :description,
17141
+ :authorizer_type,
17142
+ :authorizer_configuration,
17143
+ :role_arn,
17144
+ :client_token)
17145
+ SENSITIVE = []
17146
+ include Aws::Structure
17147
+ end
17148
+
17149
+ # @!attribute [rw] payment_manager_arn
17150
+ # The Amazon Resource Name (ARN) of the updated payment manager.
17151
+ # @return [String]
17152
+ #
17153
+ # @!attribute [rw] payment_manager_id
17154
+ # The unique identifier of the updated payment manager.
17155
+ # @return [String]
17156
+ #
17157
+ # @!attribute [rw] name
17158
+ # The name of the updated payment manager.
17159
+ # @return [String]
17160
+ #
17161
+ # @!attribute [rw] authorizer_type
17162
+ # The type of authorizer for the updated payment manager.
17163
+ # @return [String]
17164
+ #
17165
+ # @!attribute [rw] role_arn
17166
+ # The Amazon Resource Name (ARN) of the IAM role associated with the
17167
+ # updated payment manager.
17168
+ # @return [String]
17169
+ #
17170
+ # @!attribute [rw] workload_identity_details
17171
+ # The information about the workload identity.
17172
+ # @return [Types::WorkloadIdentityDetails]
17173
+ #
17174
+ # @!attribute [rw] last_updated_at
17175
+ # The timestamp when the payment manager was last updated.
17176
+ # @return [Time]
17177
+ #
17178
+ # @!attribute [rw] status
17179
+ # The current status of the updated payment manager. Possible values
17180
+ # include `CREATING`, `READY`, `UPDATING`, `DELETING`,
17181
+ # `CREATE_FAILED`, `UPDATE_FAILED`, and `DELETE_FAILED`.
17182
+ # @return [String]
17183
+ #
17184
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePaymentManagerResponse AWS API Documentation
17185
+ #
17186
+ class UpdatePaymentManagerResponse < Struct.new(
17187
+ :payment_manager_arn,
17188
+ :payment_manager_id,
17189
+ :name,
17190
+ :authorizer_type,
17191
+ :role_arn,
17192
+ :workload_identity_details,
17193
+ :last_updated_at,
17194
+ :status)
17195
+ SENSITIVE = []
17196
+ include Aws::Structure
17197
+ end
17198
+
15333
17199
  # @!attribute [rw] policy_engine_id
15334
17200
  # The unique identifier of the policy engine to be updated.
15335
17201
  # @return [String]
@@ -15355,10 +17221,6 @@ module Aws::BedrockAgentCoreControl
15355
17221
  # The name of the updated policy engine.
15356
17222
  # @return [String]
15357
17223
  #
15358
- # @!attribute [rw] description
15359
- # The updated description of the policy engine.
15360
- # @return [String]
15361
- #
15362
17224
  # @!attribute [rw] created_at
15363
17225
  # The original creation timestamp of the policy engine.
15364
17226
  # @return [Time]
@@ -15375,27 +17237,31 @@ module Aws::BedrockAgentCoreControl
15375
17237
  # The current status of the updated policy engine.
15376
17238
  # @return [String]
15377
17239
  #
15378
- # @!attribute [rw] status_reasons
15379
- # Additional information about the update status.
15380
- # @return [Array<String>]
15381
- #
15382
17240
  # @!attribute [rw] encryption_key_arn
15383
17241
  # The Amazon Resource Name (ARN) of the KMS key used to encrypt the
15384
17242
  # policy engine data.
15385
17243
  # @return [String]
15386
17244
  #
17245
+ # @!attribute [rw] description
17246
+ # The updated description of the policy engine.
17247
+ # @return [String]
17248
+ #
17249
+ # @!attribute [rw] status_reasons
17250
+ # Additional information about the update status.
17251
+ # @return [Array<String>]
17252
+ #
15387
17253
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePolicyEngineResponse AWS API Documentation
15388
17254
  #
15389
17255
  class UpdatePolicyEngineResponse < Struct.new(
15390
17256
  :policy_engine_id,
15391
17257
  :name,
15392
- :description,
15393
17258
  :created_at,
15394
17259
  :updated_at,
15395
17260
  :policy_engine_arn,
15396
17261
  :status,
15397
- :status_reasons,
15398
- :encryption_key_arn)
17262
+ :encryption_key_arn,
17263
+ :description,
17264
+ :status_reasons)
15399
17265
  SENSITIVE = [:description]
15400
17266
  include Aws::Structure
15401
17267
  end
@@ -15458,14 +17324,6 @@ module Aws::BedrockAgentCoreControl
15458
17324
  # The identifier of the policy engine managing the updated policy.
15459
17325
  # @return [String]
15460
17326
  #
15461
- # @!attribute [rw] definition
15462
- # The updated Cedar policy statement.
15463
- # @return [Types::PolicyDefinition]
15464
- #
15465
- # @!attribute [rw] description
15466
- # The updated description of the policy.
15467
- # @return [String]
15468
- #
15469
17327
  # @!attribute [rw] created_at
15470
17328
  # The original creation timestamp of the policy.
15471
17329
  # @return [Time]
@@ -15482,6 +17340,14 @@ module Aws::BedrockAgentCoreControl
15482
17340
  # The current status of the updated policy.
15483
17341
  # @return [String]
15484
17342
  #
17343
+ # @!attribute [rw] definition
17344
+ # The updated Cedar policy statement.
17345
+ # @return [Types::PolicyDefinition]
17346
+ #
17347
+ # @!attribute [rw] description
17348
+ # The updated description of the policy.
17349
+ # @return [String]
17350
+ #
15485
17351
  # @!attribute [rw] status_reasons
15486
17352
  # Additional information about the update status.
15487
17353
  # @return [Array<String>]
@@ -15492,12 +17358,12 @@ module Aws::BedrockAgentCoreControl
15492
17358
  :policy_id,
15493
17359
  :name,
15494
17360
  :policy_engine_id,
15495
- :definition,
15496
- :description,
15497
17361
  :created_at,
15498
17362
  :updated_at,
15499
17363
  :policy_arn,
15500
17364
  :status,
17365
+ :definition,
17366
+ :description,
15501
17367
  :status_reasons)
15502
17368
  SENSITIVE = [:description]
15503
17369
  include Aws::Structure
@@ -16276,7 +18142,8 @@ module Aws::BedrockAgentCoreControl
16276
18142
  # @return [String]
16277
18143
  #
16278
18144
  # @!attribute [rw] namespaces
16279
- # The namespaces associated with the user preference memory strategy.
18145
+ # This is a legacy parameter, use `namespaceTemplates`. The namespaces
18146
+ # associated with the user preference memory strategy.
16280
18147
  # @return [Array<String>]
16281
18148
  #
16282
18149
  # @!attribute [rw] namespace_templates
@@ -16527,11 +18394,47 @@ module Aws::BedrockAgentCoreControl
16527
18394
  # The subnets associated with the VPC configuration.
16528
18395
  # @return [Array<String>]
16529
18396
  #
18397
+ # @!attribute [rw] require_service_s3_endpoint
18398
+ # <note markdown="1"> This field applies only to Agent Runtimes. It is
18399
+ # not applicable to
18400
+ # Browsers or Code Interpreters.
18401
+ #
18402
+ # </note>
18403
+ #
18404
+ # Controls whether a service-managed Amazon S3 gateway endpoint is
18405
+ # provisioned in the VPC network topology for the agent runtime. This
18406
+ # gateway is used by Amazon Bedrock AgentCore Runtime to download code
18407
+ # and container images during agent startup.
18408
+ #
18409
+ # Starting May 5, 2026, Amazon Bedrock AgentCore Runtime is gradually
18410
+ # rolling out a change to how network isolation is configured for VPC
18411
+ # mode agents. Agent runtimes created on or after this rollout will no
18412
+ # longer include the service-managed Amazon S3 gateway. Instead, all
18413
+ # network access, including to Amazon S3, is governed exclusively by
18414
+ # your VPC configuration. This field cannot be set on agent runtimes
18415
+ # created after the rollout. Passing this field in an
18416
+ # `UpdateAgentRuntime` request for these agent runtimes returns a
18417
+ # `ValidationException`.
18418
+ #
18419
+ # Agent runtimes created before the rollout are not affected and
18420
+ # continue to operate with the service-managed Amazon S3 gateway. To
18421
+ # enforce full VPC network isolation on these existing agent runtimes,
18422
+ # set this field to `false` via the `UpdateAgentRuntime` API. Before
18423
+ # opting out, ensure your VPC provides the Amazon S3 access required
18424
+ # for agent startup. If this field is not specified or is set to
18425
+ # `true`, the service-managed Amazon S3 gateway remains provisioned.
18426
+ #
18427
+ # This field is only supported in the `UpdateAgentRuntime` API for
18428
+ # pre-rollout agent runtimes. Passing this field in a
18429
+ # `CreateAgentRuntime` request returns a `ValidationException`.
18430
+ # @return [Boolean]
18431
+ #
16530
18432
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/VpcConfig AWS API Documentation
16531
18433
  #
16532
18434
  class VpcConfig < Struct.new(
16533
18435
  :security_groups,
16534
- :subnets)
18436
+ :subnets,
18437
+ :require_service_s3_endpoint)
16535
18438
  SENSITIVE = []
16536
18439
  include Aws::Structure
16537
18440
  end