// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateEdgePackagingJob`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`edge_packaging_job_name(impl Into<String>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::edge_packaging_job_name) / [`set_edge_packaging_job_name(Option<String>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::set_edge_packaging_job_name): <p>The name of the edge packaging job.</p>
/// - [`compilation_job_name(impl Into<String>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::compilation_job_name) / [`set_compilation_job_name(Option<String>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::set_compilation_job_name): <p>The name of the SageMaker Neo compilation job that will be used to locate model artifacts for packaging.</p>
/// - [`model_name(impl Into<String>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::model_name) / [`set_model_name(Option<String>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::set_model_name): <p>The name of the model.</p>
/// - [`model_version(impl Into<String>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::model_version) / [`set_model_version(Option<String>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::set_model_version): <p>The version of the model.</p>
/// - [`role_arn(impl Into<String>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::role_arn) / [`set_role_arn(Option<String>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::set_role_arn): <p>The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to download and upload the model, and to contact SageMaker Neo.</p>
/// - [`output_config(EdgeOutputConfig)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::output_config) / [`set_output_config(Option<EdgeOutputConfig>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::set_output_config): <p>Provides information about the output location for the packaged model.</p>
/// - [`resource_key(impl Into<String>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::resource_key) / [`set_resource_key(Option<String>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::set_resource_key): <p>The Amazon Web Services KMS key to use when encrypting the EBS volume the edge packaging job runs on.</p>
/// - [`tags(Tag)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::tags) / [`set_tags(Option<Vec<Tag>>)`](crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::set_tags): <p>Creates tags for the packaging job.</p>
/// - On success, responds with [`CreateEdgePackagingJobOutput`](crate::operation::create_edge_packaging_job::CreateEdgePackagingJobOutput)
/// - On failure, responds with [`SdkError<CreateEdgePackagingJobError>`](crate::operation::create_edge_packaging_job::CreateEdgePackagingJobError)
pub fn create_edge_packaging_job(&self) -> crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder {
crate::operation::create_edge_packaging_job::builders::CreateEdgePackagingJobFluentBuilder::new(self.handle.clone())
}
}