// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateAIBenchmarkJob`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`ai_benchmark_job_name(impl Into<String>)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::ai_benchmark_job_name) / [`set_ai_benchmark_job_name(Option<String>)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::set_ai_benchmark_job_name):<br>required: **true**<br><p>The name of the AI benchmark job. The name must be unique within your Amazon Web Services account in the current Amazon Web Services Region.</p><br>
/// - [`benchmark_target(AiBenchmarkTarget)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::benchmark_target) / [`set_benchmark_target(Option<AiBenchmarkTarget>)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::set_benchmark_target):<br>required: **true**<br><p>The target endpoint to benchmark. Specify a SageMaker endpoint by providing its name or Amazon Resource Name (ARN).</p><br>
/// - [`output_config(AiBenchmarkOutputConfig)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::output_config) / [`set_output_config(Option<AiBenchmarkOutputConfig>)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::set_output_config):<br>required: **true**<br><p>The output configuration for the benchmark job, including the Amazon S3 location where benchmark results are stored.</p><br>
/// - [`ai_workload_config_identifier(impl Into<String>)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::ai_workload_config_identifier) / [`set_ai_workload_config_identifier(Option<String>)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::set_ai_workload_config_identifier):<br>required: **true**<br><p>The name or Amazon Resource Name (ARN) of the AI workload configuration to use for this benchmark job.</p><br>
/// - [`role_arn(impl Into<String>)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::role_arn) / [`set_role_arn(Option<String>)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::set_role_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker AI to perform tasks on your behalf.</p><br>
/// - [`network_config(AiBenchmarkNetworkConfig)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::network_config) / [`set_network_config(Option<AiBenchmarkNetworkConfig>)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::set_network_config):<br>required: **false**<br><p>The network configuration for the benchmark job, including VPC settings.</p><br>
/// - [`tags(Tag)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::tags) / [`set_tags(Option<Vec::<Tag>>)`](crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::set_tags):<br>required: **false**<br><p>The metadata that you apply to Amazon Web Services resources to help you categorize and organize them. Each tag consists of a key and a value, both of which you define.</p><br>
/// - On success, responds with [`CreateAiBenchmarkJobOutput`](crate::operation::create_ai_benchmark_job::CreateAiBenchmarkJobOutput) with field(s):
/// - [`ai_benchmark_job_arn(Option<String>)`](crate::operation::create_ai_benchmark_job::CreateAiBenchmarkJobOutput::ai_benchmark_job_arn): <p>The Amazon Resource Name (ARN) of the created benchmark job.</p>
/// - On failure, responds with [`SdkError<CreateAIBenchmarkJobError>`](crate::operation::create_ai_benchmark_job::CreateAIBenchmarkJobError)
pub fn create_ai_benchmark_job(&self) -> crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder {
crate::operation::create_ai_benchmark_job::builders::CreateAIBenchmarkJobFluentBuilder::new(self.handle.clone())
}
}