aws-sdk-bedrockagentcorecontrol 1.67.0 → 1.69.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +360 -37
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +219 -3
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +546 -46
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +124 -3
- data/sig/types.rbs +122 -0
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -431,6 +431,41 @@ module Aws
|
|
|
431
431
|
) -> _CreateConfigurationBundleResponseSuccess
|
|
432
432
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationBundleResponseSuccess
|
|
433
433
|
|
|
434
|
+
interface _CreateConsentPortalResponseSuccess
|
|
435
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConsentPortalResponse]
|
|
436
|
+
def sources: () -> ::Array[Types::ConsentPortalSource]
|
|
437
|
+
def consent_portal_arn: () -> ::String
|
|
438
|
+
def consent_portal_id: () -> ::String
|
|
439
|
+
def created_at: () -> ::Time
|
|
440
|
+
def description: () -> ::String
|
|
441
|
+
def execution_role_arn: () -> ::String
|
|
442
|
+
def idp_config: () -> Types::ConsentPortalIdpConfig
|
|
443
|
+
def name: () -> ::String
|
|
444
|
+
def portal_url: () -> ::String
|
|
445
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "FAILED")
|
|
446
|
+
def status_reason: () -> ::String
|
|
447
|
+
def updated_at: () -> ::Time
|
|
448
|
+
end
|
|
449
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_consent_portal-instance_method
|
|
450
|
+
def create_consent_portal: (
|
|
451
|
+
execution_role_arn: ::String,
|
|
452
|
+
idp_config: {
|
|
453
|
+
credential_provider_arn: ::String,
|
|
454
|
+
scopes: Array[::String],
|
|
455
|
+
audience: ::String?
|
|
456
|
+
},
|
|
457
|
+
name: ::String,
|
|
458
|
+
sources: Array[
|
|
459
|
+
{
|
|
460
|
+
identifier: ::String,
|
|
461
|
+
type: ("agentcore-gateway")
|
|
462
|
+
}
|
|
463
|
+
],
|
|
464
|
+
?description: ::String,
|
|
465
|
+
?tags: Hash[::String, ::String]
|
|
466
|
+
) -> _CreateConsentPortalResponseSuccess
|
|
467
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConsentPortalResponseSuccess
|
|
468
|
+
|
|
434
469
|
interface _CreateDatasetResponseSuccess
|
|
435
470
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetResponse]
|
|
436
471
|
def dataset_arn: () -> ::String
|
|
@@ -748,7 +783,8 @@ module Aws
|
|
|
748
783
|
rule: Params::rule,
|
|
749
784
|
data_source_config: {
|
|
750
785
|
cloud_watch_logs: {
|
|
751
|
-
log_group_names: Array[::String]
|
|
786
|
+
log_group_names: Array[::String]?,
|
|
787
|
+
log_group_name_prefixes: Array[::String]?,
|
|
752
788
|
service_names: Array[::String]
|
|
753
789
|
}?
|
|
754
790
|
},
|
|
@@ -765,6 +801,13 @@ module Aws
|
|
|
765
801
|
?clustering_config: {
|
|
766
802
|
frequencies: Array[("DAILY" | "WEEKLY" | "MONTHLY")]
|
|
767
803
|
},
|
|
804
|
+
?output_config: {
|
|
805
|
+
cloud_watch_config: {
|
|
806
|
+
log_group_name: ::String?,
|
|
807
|
+
metrics_namespace: ::String?,
|
|
808
|
+
result_destination: ("DEDICATED_LOG_GROUP" | "SOURCE_LOG_GROUP")?
|
|
809
|
+
}
|
|
810
|
+
},
|
|
768
811
|
evaluation_execution_role_arn: ::String,
|
|
769
812
|
enable_on_create: bool,
|
|
770
813
|
?tags: Hash[::String, ::String]
|
|
@@ -1067,6 +1110,15 @@ module Aws
|
|
|
1067
1110
|
) -> _DeleteConfigurationBundleResponseSuccess
|
|
1068
1111
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfigurationBundleResponseSuccess
|
|
1069
1112
|
|
|
1113
|
+
interface _DeleteConsentPortalResponseSuccess
|
|
1114
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConsentPortalResponse]
|
|
1115
|
+
end
|
|
1116
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_consent_portal-instance_method
|
|
1117
|
+
def delete_consent_portal: (
|
|
1118
|
+
consent_portal_identifier: ::String
|
|
1119
|
+
) -> _DeleteConsentPortalResponseSuccess
|
|
1120
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConsentPortalResponseSuccess
|
|
1121
|
+
|
|
1070
1122
|
interface _DeleteDatasetResponseSuccess
|
|
1071
1123
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDatasetResponse]
|
|
1072
1124
|
def dataset_arn: () -> ::String
|
|
@@ -1520,6 +1572,27 @@ module Aws
|
|
|
1520
1572
|
) -> _GetConfigurationBundleVersionResponseSuccess
|
|
1521
1573
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationBundleVersionResponseSuccess
|
|
1522
1574
|
|
|
1575
|
+
interface _GetConsentPortalResponseSuccess
|
|
1576
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConsentPortalResponse]
|
|
1577
|
+
def sources: () -> ::Array[Types::ConsentPortalSource]
|
|
1578
|
+
def consent_portal_arn: () -> ::String
|
|
1579
|
+
def consent_portal_id: () -> ::String
|
|
1580
|
+
def created_at: () -> ::Time
|
|
1581
|
+
def description: () -> ::String
|
|
1582
|
+
def execution_role_arn: () -> ::String
|
|
1583
|
+
def idp_config: () -> Types::ConsentPortalIdpConfig
|
|
1584
|
+
def name: () -> ::String
|
|
1585
|
+
def portal_url: () -> ::String
|
|
1586
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "FAILED")
|
|
1587
|
+
def status_reason: () -> ::String
|
|
1588
|
+
def updated_at: () -> ::Time
|
|
1589
|
+
end
|
|
1590
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_consent_portal-instance_method
|
|
1591
|
+
def get_consent_portal: (
|
|
1592
|
+
consent_portal_identifier: ::String
|
|
1593
|
+
) -> _GetConsentPortalResponseSuccess
|
|
1594
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConsentPortalResponseSuccess
|
|
1595
|
+
|
|
1523
1596
|
interface _GetDatasetResponseSuccess
|
|
1524
1597
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDatasetResponse]
|
|
1525
1598
|
def dataset_arn: () -> ::String
|
|
@@ -2136,6 +2209,18 @@ module Aws
|
|
|
2136
2209
|
) -> _ListConfigurationBundlesResponseSuccess
|
|
2137
2210
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationBundlesResponseSuccess
|
|
2138
2211
|
|
|
2212
|
+
interface _ListConsentPortalsResponseSuccess
|
|
2213
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConsentPortalsResponse]
|
|
2214
|
+
def consent_portals: () -> ::Array[Types::ConsentPortalSummary]
|
|
2215
|
+
def next_token: () -> ::String
|
|
2216
|
+
end
|
|
2217
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_consent_portals-instance_method
|
|
2218
|
+
def list_consent_portals: (
|
|
2219
|
+
?max_results: ::Integer,
|
|
2220
|
+
?next_token: ::String
|
|
2221
|
+
) -> _ListConsentPortalsResponseSuccess
|
|
2222
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConsentPortalsResponseSuccess
|
|
2223
|
+
|
|
2139
2224
|
interface _ListDatasetExamplesResponseSuccess
|
|
2140
2225
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetExamplesResponse]
|
|
2141
2226
|
def dataset_arn: () -> ::String
|
|
@@ -2716,7 +2801,7 @@ module Aws
|
|
|
2716
2801
|
configuration: {
|
|
2717
2802
|
}
|
|
2718
2803
|
}],
|
|
2719
|
-
|
|
2804
|
+
parent_version_ids: Array[::String],
|
|
2720
2805
|
?branch_name: ::String,
|
|
2721
2806
|
?commit_message: ::String,
|
|
2722
2807
|
?created_by: {
|
|
@@ -2727,6 +2812,34 @@ module Aws
|
|
|
2727
2812
|
) -> _UpdateConfigurationBundleResponseSuccess
|
|
2728
2813
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationBundleResponseSuccess
|
|
2729
2814
|
|
|
2815
|
+
interface _UpdateConsentPortalResponseSuccess
|
|
2816
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConsentPortalResponse]
|
|
2817
|
+
def sources: () -> ::Array[Types::ConsentPortalSource]
|
|
2818
|
+
def consent_portal_arn: () -> ::String
|
|
2819
|
+
def consent_portal_id: () -> ::String
|
|
2820
|
+
def created_at: () -> ::Time
|
|
2821
|
+
def description: () -> ::String
|
|
2822
|
+
def execution_role_arn: () -> ::String
|
|
2823
|
+
def idp_config: () -> Types::ConsentPortalIdpConfig
|
|
2824
|
+
def name: () -> ::String
|
|
2825
|
+
def portal_url: () -> ::String
|
|
2826
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "FAILED")
|
|
2827
|
+
def status_reason: () -> ::String
|
|
2828
|
+
def updated_at: () -> ::Time
|
|
2829
|
+
end
|
|
2830
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_consent_portal-instance_method
|
|
2831
|
+
def update_consent_portal: (
|
|
2832
|
+
consent_portal_identifier: ::String,
|
|
2833
|
+
?execution_role_arn: ::String,
|
|
2834
|
+
?idp_config: {
|
|
2835
|
+
credential_provider_arn: ::String,
|
|
2836
|
+
scopes: Array[::String],
|
|
2837
|
+
audience: ::String?
|
|
2838
|
+
},
|
|
2839
|
+
?description: ::String
|
|
2840
|
+
) -> _UpdateConsentPortalResponseSuccess
|
|
2841
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConsentPortalResponseSuccess
|
|
2842
|
+
|
|
2730
2843
|
interface _UpdateDatasetResponseSuccess
|
|
2731
2844
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDatasetResponse]
|
|
2732
2845
|
def dataset_arn: () -> ::String
|
|
@@ -3119,7 +3232,8 @@ module Aws
|
|
|
3119
3232
|
?rule: Params::rule,
|
|
3120
3233
|
?data_source_config: {
|
|
3121
3234
|
cloud_watch_logs: {
|
|
3122
|
-
log_group_names: Array[::String]
|
|
3235
|
+
log_group_names: Array[::String]?,
|
|
3236
|
+
log_group_name_prefixes: Array[::String]?,
|
|
3123
3237
|
service_names: Array[::String]
|
|
3124
3238
|
}?
|
|
3125
3239
|
},
|
|
@@ -3136,6 +3250,13 @@ module Aws
|
|
|
3136
3250
|
?clustering_config: {
|
|
3137
3251
|
frequencies: Array[("DAILY" | "WEEKLY" | "MONTHLY")]
|
|
3138
3252
|
},
|
|
3253
|
+
?output_config: {
|
|
3254
|
+
cloud_watch_config: {
|
|
3255
|
+
log_group_name: ::String?,
|
|
3256
|
+
metrics_namespace: ::String?,
|
|
3257
|
+
result_destination: ("DEDICATED_LOG_GROUP" | "SOURCE_LOG_GROUP")?
|
|
3258
|
+
}
|
|
3259
|
+
},
|
|
3139
3260
|
?evaluation_execution_role_arn: ::String,
|
|
3140
3261
|
?execution_status: ("ENABLED" | "DISABLED")
|
|
3141
3262
|
) -> _UpdateOnlineEvaluationConfigResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -366,12 +366,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
366
366
|
|
|
367
367
|
class CloudWatchLogsInputConfig
|
|
368
368
|
attr_accessor log_group_names: ::Array[::String]
|
|
369
|
+
attr_accessor log_group_name_prefixes: ::Array[::String]
|
|
369
370
|
attr_accessor service_names: ::Array[::String]
|
|
370
371
|
SENSITIVE: []
|
|
371
372
|
end
|
|
372
373
|
|
|
373
374
|
class CloudWatchOutputConfig
|
|
374
375
|
attr_accessor log_group_name: ::String
|
|
376
|
+
attr_accessor metrics_namespace: ::String
|
|
377
|
+
attr_accessor result_destination: ("DEDICATED_LOG_GROUP" | "SOURCE_LOG_GROUP")
|
|
375
378
|
SENSITIVE: []
|
|
376
379
|
end
|
|
377
380
|
|
|
@@ -554,6 +557,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
554
557
|
SENSITIVE: []
|
|
555
558
|
end
|
|
556
559
|
|
|
560
|
+
class ConsentPortalIdpConfig
|
|
561
|
+
attr_accessor credential_provider_arn: ::String
|
|
562
|
+
attr_accessor scopes: ::Array[::String]
|
|
563
|
+
attr_accessor audience: ::String
|
|
564
|
+
SENSITIVE: []
|
|
565
|
+
end
|
|
566
|
+
|
|
567
|
+
class ConsentPortalSource
|
|
568
|
+
attr_accessor identifier: ::String
|
|
569
|
+
attr_accessor type: ("agentcore-gateway")
|
|
570
|
+
SENSITIVE: []
|
|
571
|
+
end
|
|
572
|
+
|
|
573
|
+
class ConsentPortalSummary
|
|
574
|
+
attr_accessor sources: ::Array[Types::ConsentPortalSource]
|
|
575
|
+
attr_accessor consent_portal_arn: ::String
|
|
576
|
+
attr_accessor consent_portal_id: ::String
|
|
577
|
+
attr_accessor created_at: ::Time
|
|
578
|
+
attr_accessor description: ::String
|
|
579
|
+
attr_accessor name: ::String
|
|
580
|
+
attr_accessor portal_url: ::String
|
|
581
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "FAILED")
|
|
582
|
+
attr_accessor updated_at: ::Time
|
|
583
|
+
SENSITIVE: []
|
|
584
|
+
end
|
|
585
|
+
|
|
557
586
|
class ConsolidationConfiguration
|
|
558
587
|
attr_accessor custom_consolidation_configuration: Types::CustomConsolidationConfiguration
|
|
559
588
|
attr_accessor unknown: untyped
|
|
@@ -752,6 +781,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
752
781
|
SENSITIVE: []
|
|
753
782
|
end
|
|
754
783
|
|
|
784
|
+
class CreateConsentPortalRequest
|
|
785
|
+
attr_accessor execution_role_arn: ::String
|
|
786
|
+
attr_accessor idp_config: Types::ConsentPortalIdpConfig
|
|
787
|
+
attr_accessor name: ::String
|
|
788
|
+
attr_accessor sources: ::Array[Types::ConsentPortalSource]
|
|
789
|
+
attr_accessor description: ::String
|
|
790
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
791
|
+
SENSITIVE: []
|
|
792
|
+
end
|
|
793
|
+
|
|
794
|
+
class CreateConsentPortalResponse
|
|
795
|
+
attr_accessor sources: ::Array[Types::ConsentPortalSource]
|
|
796
|
+
attr_accessor consent_portal_arn: ::String
|
|
797
|
+
attr_accessor consent_portal_id: ::String
|
|
798
|
+
attr_accessor created_at: ::Time
|
|
799
|
+
attr_accessor description: ::String
|
|
800
|
+
attr_accessor execution_role_arn: ::String
|
|
801
|
+
attr_accessor idp_config: Types::ConsentPortalIdpConfig
|
|
802
|
+
attr_accessor name: ::String
|
|
803
|
+
attr_accessor portal_url: ::String
|
|
804
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "FAILED")
|
|
805
|
+
attr_accessor status_reason: ::String
|
|
806
|
+
attr_accessor updated_at: ::Time
|
|
807
|
+
SENSITIVE: []
|
|
808
|
+
end
|
|
809
|
+
|
|
755
810
|
class CreateDatasetRequest
|
|
756
811
|
attr_accessor client_token: ::String
|
|
757
812
|
attr_accessor dataset_name: ::String
|
|
@@ -1016,6 +1071,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1016
1071
|
attr_accessor evaluators: ::Array[Types::EvaluatorReference]
|
|
1017
1072
|
attr_accessor insights: ::Array[Types::Insight]
|
|
1018
1073
|
attr_accessor clustering_config: Types::ClusteringConfig
|
|
1074
|
+
attr_accessor output_config: Types::OutputConfig
|
|
1019
1075
|
attr_accessor evaluation_execution_role_arn: ::String
|
|
1020
1076
|
attr_accessor enable_on_create: bool
|
|
1021
1077
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -1567,6 +1623,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
1567
1623
|
SENSITIVE: []
|
|
1568
1624
|
end
|
|
1569
1625
|
|
|
1626
|
+
class DeleteConsentPortalRequest
|
|
1627
|
+
attr_accessor consent_portal_identifier: ::String
|
|
1628
|
+
SENSITIVE: []
|
|
1629
|
+
end
|
|
1630
|
+
|
|
1631
|
+
class DeleteConsentPortalResponse < Aws::EmptyStructure
|
|
1632
|
+
end
|
|
1633
|
+
|
|
1570
1634
|
class DeleteDatasetExamplesRequest
|
|
1571
1635
|
attr_accessor dataset_id: ::String
|
|
1572
1636
|
attr_accessor client_token: ::String
|
|
@@ -2384,6 +2448,27 @@ module Aws::BedrockAgentCoreControl
|
|
|
2384
2448
|
SENSITIVE: [:description]
|
|
2385
2449
|
end
|
|
2386
2450
|
|
|
2451
|
+
class GetConsentPortalRequest
|
|
2452
|
+
attr_accessor consent_portal_identifier: ::String
|
|
2453
|
+
SENSITIVE: []
|
|
2454
|
+
end
|
|
2455
|
+
|
|
2456
|
+
class GetConsentPortalResponse
|
|
2457
|
+
attr_accessor sources: ::Array[Types::ConsentPortalSource]
|
|
2458
|
+
attr_accessor consent_portal_arn: ::String
|
|
2459
|
+
attr_accessor consent_portal_id: ::String
|
|
2460
|
+
attr_accessor created_at: ::Time
|
|
2461
|
+
attr_accessor description: ::String
|
|
2462
|
+
attr_accessor execution_role_arn: ::String
|
|
2463
|
+
attr_accessor idp_config: Types::ConsentPortalIdpConfig
|
|
2464
|
+
attr_accessor name: ::String
|
|
2465
|
+
attr_accessor portal_url: ::String
|
|
2466
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "FAILED")
|
|
2467
|
+
attr_accessor status_reason: ::String
|
|
2468
|
+
attr_accessor updated_at: ::Time
|
|
2469
|
+
SENSITIVE: []
|
|
2470
|
+
end
|
|
2471
|
+
|
|
2387
2472
|
class GetDatasetRequest
|
|
2388
2473
|
attr_accessor dataset_id: ::String
|
|
2389
2474
|
attr_accessor dataset_version: ::String
|
|
@@ -3686,6 +3771,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
3686
3771
|
SENSITIVE: []
|
|
3687
3772
|
end
|
|
3688
3773
|
|
|
3774
|
+
class ListConsentPortalsRequest
|
|
3775
|
+
attr_accessor max_results: ::Integer
|
|
3776
|
+
attr_accessor next_token: ::String
|
|
3777
|
+
SENSITIVE: []
|
|
3778
|
+
end
|
|
3779
|
+
|
|
3780
|
+
class ListConsentPortalsResponse
|
|
3781
|
+
attr_accessor consent_portals: ::Array[Types::ConsentPortalSummary]
|
|
3782
|
+
attr_accessor next_token: ::String
|
|
3783
|
+
SENSITIVE: []
|
|
3784
|
+
end
|
|
3785
|
+
|
|
3689
3786
|
class ListDatasetExamplesRequest
|
|
3690
3787
|
attr_accessor dataset_id: ::String
|
|
3691
3788
|
attr_accessor dataset_version: ::String
|
|
@@ -5678,6 +5775,30 @@ module Aws::BedrockAgentCoreControl
|
|
|
5678
5775
|
SENSITIVE: []
|
|
5679
5776
|
end
|
|
5680
5777
|
|
|
5778
|
+
class UpdateConsentPortalRequest
|
|
5779
|
+
attr_accessor consent_portal_identifier: ::String
|
|
5780
|
+
attr_accessor execution_role_arn: ::String
|
|
5781
|
+
attr_accessor idp_config: Types::ConsentPortalIdpConfig
|
|
5782
|
+
attr_accessor description: ::String
|
|
5783
|
+
SENSITIVE: []
|
|
5784
|
+
end
|
|
5785
|
+
|
|
5786
|
+
class UpdateConsentPortalResponse
|
|
5787
|
+
attr_accessor sources: ::Array[Types::ConsentPortalSource]
|
|
5788
|
+
attr_accessor consent_portal_arn: ::String
|
|
5789
|
+
attr_accessor consent_portal_id: ::String
|
|
5790
|
+
attr_accessor created_at: ::Time
|
|
5791
|
+
attr_accessor description: ::String
|
|
5792
|
+
attr_accessor execution_role_arn: ::String
|
|
5793
|
+
attr_accessor idp_config: Types::ConsentPortalIdpConfig
|
|
5794
|
+
attr_accessor name: ::String
|
|
5795
|
+
attr_accessor portal_url: ::String
|
|
5796
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "FAILED")
|
|
5797
|
+
attr_accessor status_reason: ::String
|
|
5798
|
+
attr_accessor updated_at: ::Time
|
|
5799
|
+
SENSITIVE: []
|
|
5800
|
+
end
|
|
5801
|
+
|
|
5681
5802
|
class UpdateDatasetExamplesRequest
|
|
5682
5803
|
attr_accessor dataset_id: ::String
|
|
5683
5804
|
attr_accessor client_token: ::String
|
|
@@ -5935,6 +6056,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5935
6056
|
attr_accessor evaluators: ::Array[Types::EvaluatorReference]
|
|
5936
6057
|
attr_accessor insights: ::Array[Types::Insight]
|
|
5937
6058
|
attr_accessor clustering_config: Types::ClusteringConfig
|
|
6059
|
+
attr_accessor output_config: Types::OutputConfig
|
|
5938
6060
|
attr_accessor evaluation_execution_role_arn: ::String
|
|
5939
6061
|
attr_accessor execution_status: ("ENABLED" | "DISABLED")
|
|
5940
6062
|
SENSITIVE: [:description]
|