Class: Aws::Bedrock::Types::CreateGuardrailVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::CreateGuardrailVersionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrock/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:description]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
A unique, case-sensitive identifier to ensure that the API request completes no more than once.
-
#description ⇒ String
A description of the guardrail version.
-
#guardrail_identifier ⇒ String
The unique identifier of the guardrail.
Instance Attribute Details
#client_request_token ⇒ String
A unique, case-sensitive identifier to ensure that the API request completes no more than once. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see [Ensuring idempotency] in the *Amazon S3 User Guide*.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
[1]: docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
440 441 442 443 444 445 446 |
# File 'lib/aws-sdk-bedrock/types.rb', line 440 class CreateGuardrailVersionRequest < Struct.new( :guardrail_identifier, :description, :client_request_token) SENSITIVE = [:description] include Aws::Structure end |
#description ⇒ String
A description of the guardrail version.
440 441 442 443 444 445 446 |
# File 'lib/aws-sdk-bedrock/types.rb', line 440 class CreateGuardrailVersionRequest < Struct.new( :guardrail_identifier, :description, :client_request_token) SENSITIVE = [:description] include Aws::Structure end |
#guardrail_identifier ⇒ String
The unique identifier of the guardrail. This can be an ID or the ARN.
440 441 442 443 444 445 446 |
# File 'lib/aws-sdk-bedrock/types.rb', line 440 class CreateGuardrailVersionRequest < Struct.new( :guardrail_identifier, :description, :client_request_token) SENSITIVE = [:description] include Aws::Structure end |