Struct aws_sdk_databrew::input::CreateProjectInput [−][src]
#[non_exhaustive]pub struct CreateProjectInput {
pub dataset_name: Option<String>,
pub name: Option<String>,
pub recipe_name: Option<String>,
pub sample: Option<Sample>,
pub role_arn: Option<String>,
pub tags: Option<HashMap<String, String>>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.dataset_name: Option<String>
The name of an existing dataset to associate this project with.
name: Option<String>
A unique name for the new project. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
recipe_name: Option<String>
The name of an existing recipe to associate with the project.
sample: Option<Sample>
Represents the sample size and sampling type for DataBrew to use for interactive data analysis.
role_arn: Option<String>
The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed for this request.
Metadata tags to apply to this project.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateProject, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateProject, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateProject
>
Creates a new builder-style object to manufacture CreateProjectInput
The name of an existing dataset to associate this project with.
A unique name for the new project. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
The name of an existing recipe to associate with the project.
Represents the sample size and sampling type for DataBrew to use for interactive data analysis.
The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed for this request.
Metadata tags to apply to this project.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateProjectInput
impl Send for CreateProjectInput
impl Sync for CreateProjectInput
impl Unpin for CreateProjectInput
impl UnwindSafe for CreateProjectInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more