aws_sdk_datazone/client/create_environment_profile.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateEnvironmentProfile`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`domain_identifier(impl Into<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The ID of the Amazon DataZone domain in which this environment profile is created.</p><br>
/// - [`name(impl Into<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::set_name):<br>required: **true**<br><p>The name of this Amazon DataZone environment profile.</p><br>
/// - [`description(impl Into<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::set_description):<br>required: **false**<br><p>The description of this Amazon DataZone environment profile.</p><br>
/// - [`environment_blueprint_identifier(impl Into<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::environment_blueprint_identifier) / [`set_environment_blueprint_identifier(Option<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::set_environment_blueprint_identifier):<br>required: **true**<br><p>The ID of the blueprint with which this environment profile is created.</p><br>
/// - [`project_identifier(impl Into<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::project_identifier) / [`set_project_identifier(Option<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::set_project_identifier):<br>required: **true**<br><p>The identifier of the project in which to create the environment profile.</p><br>
/// - [`user_parameters(EnvironmentParameter)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::user_parameters) / [`set_user_parameters(Option<Vec::<EnvironmentParameter>>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::set_user_parameters):<br>required: **false**<br><p>The user parameters of this Amazon DataZone environment profile.</p><br>
/// - [`aws_account_id(impl Into<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::set_aws_account_id):<br>required: **false**<br><p>The Amazon Web Services account in which the Amazon DataZone environment is created.</p><br>
/// - [`aws_account_region(impl Into<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::aws_account_region) / [`set_aws_account_region(Option<String>)`](crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::set_aws_account_region):<br>required: **false**<br><p>The Amazon Web Services region in which this environment profile is created.</p><br>
/// - On success, responds with [`CreateEnvironmentProfileOutput`](crate::operation::create_environment_profile::CreateEnvironmentProfileOutput) with field(s):
/// - [`id(String)`](crate::operation::create_environment_profile::CreateEnvironmentProfileOutput::id): <p>The ID of this Amazon DataZone environment profile.</p>
/// - [`domain_id(String)`](crate::operation::create_environment_profile::CreateEnvironmentProfileOutput::domain_id): <p>The ID of the Amazon DataZone domain in which this environment profile is created.</p>
/// - [`aws_account_id(Option<String>)`](crate::operation::create_environment_profile::CreateEnvironmentProfileOutput::aws_account_id): <p>The Amazon Web Services account ID in which this Amazon DataZone environment profile is created.</p>
/// - [`aws_account_region(Option<String>)`](crate::operation::create_environment_profile::CreateEnvironmentProfileOutput::aws_account_region): <p>The Amazon Web Services region in which this Amazon DataZone environment profile is created.</p>
/// - [`created_by(String)`](crate::operation::create_environment_profile::CreateEnvironmentProfileOutput::created_by): <p>The Amazon DataZone user who created this environment profile.</p>
/// - [`created_at(Option<DateTime>)`](crate::operation::create_environment_profile::CreateEnvironmentProfileOutput::created_at): <p>The timestamp of when this environment profile was created.</p>
/// - [`updated_at(Option<DateTime>)`](crate::operation::create_environment_profile::CreateEnvironmentProfileOutput::updated_at): <p>The timestamp of when this environment profile was updated.</p>
/// - [`name(String)`](crate::operation::create_environment_profile::CreateEnvironmentProfileOutput::name): <p>The name of this Amazon DataZone environment profile.</p>
/// - [`description(Option<String>)`](crate::operation::create_environment_profile::CreateEnvironmentProfileOutput::description): <p>The description of this Amazon DataZone environment profile.</p>
/// - [`environment_blueprint_id(String)`](crate::operation::create_environment_profile::CreateEnvironmentProfileOutput::environment_blueprint_id): <p>The ID of the blueprint with which this environment profile is created.</p>
/// - [`project_id(Option<String>)`](crate::operation::create_environment_profile::CreateEnvironmentProfileOutput::project_id): <p>The ID of the Amazon DataZone project in which this environment profile is created.</p>
/// - [`user_parameters(Option<Vec::<CustomParameter>>)`](crate::operation::create_environment_profile::CreateEnvironmentProfileOutput::user_parameters): <p>The user parameters of this Amazon DataZone environment profile.</p>
/// - On failure, responds with [`SdkError<CreateEnvironmentProfileError>`](crate::operation::create_environment_profile::CreateEnvironmentProfileError)
pub fn create_environment_profile(&self) -> crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder {
crate::operation::create_environment_profile::builders::CreateEnvironmentProfileFluentBuilder::new(self.handle.clone())
}
}