Struct aws_sdk_databrew::input::CreateRulesetInput [−][src]
#[non_exhaustive]pub struct CreateRulesetInput {
pub name: Option<String>,
pub description: Option<String>,
pub target_arn: Option<String>,
pub rules: Option<Vec<Rule>>,
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.name: Option<String>
The name of the ruleset to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
description: Option<String>
The description of the ruleset.
target_arn: Option<String>
The Amazon Resource Name (ARN) of a resource (dataset) that the ruleset is associated with.
rules: Option<Vec<Rule>>
A list of rules that are defined with the ruleset. A rule includes one or more checks to be validated on a DataBrew dataset.
Metadata tags to apply to the ruleset.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateRuleset, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateRuleset, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateRuleset
>
Creates a new builder-style object to manufacture CreateRulesetInput
The name of the ruleset to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
The description of the ruleset.
The Amazon Resource Name (ARN) of a resource (dataset) that the ruleset is associated with.
A list of rules that are defined with the ruleset. A rule includes one or more checks to be validated on a DataBrew dataset.
Metadata tags to apply to the ruleset.
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 CreateRulesetInput
impl Send for CreateRulesetInput
impl Sync for CreateRulesetInput
impl Unpin for CreateRulesetInput
impl UnwindSafe for CreateRulesetInput
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