Struct aws_sdk_dataexchange::input::CreateDataSetInput
source · [−]#[non_exhaustive]pub struct CreateDataSetInput {
pub asset_type: Option<AssetType>,
pub description: Option<String>,
pub name: Option<String>,
pub tags: Option<HashMap<String, String>>,
}Expand description
The request body for CreateDataSet.
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.asset_type: Option<AssetType>The type of asset that is added to a data set.
description: Option<String>A description for the data set. This value can be up to 16,348 characters long.
name: Option<String>The name of the data set.
A data set tag is an optional label that you can assign to a data set when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to these data sets and revisions.
Implementations
sourceimpl CreateDataSetInput
impl CreateDataSetInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDataSet, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDataSet, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateDataSet>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateDataSetInput
sourceimpl CreateDataSetInput
impl CreateDataSetInput
sourcepub fn asset_type(&self) -> Option<&AssetType>
pub fn asset_type(&self) -> Option<&AssetType>
The type of asset that is added to a data set.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the data set. This value can be up to 16,348 characters long.
A data set tag is an optional label that you can assign to a data set when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to these data sets and revisions.
Trait Implementations
sourceimpl Clone for CreateDataSetInput
impl Clone for CreateDataSetInput
sourcefn clone(&self) -> CreateDataSetInput
fn clone(&self) -> CreateDataSetInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CreateDataSetInput
impl Debug for CreateDataSetInput
sourceimpl PartialEq<CreateDataSetInput> for CreateDataSetInput
impl PartialEq<CreateDataSetInput> for CreateDataSetInput
sourcefn eq(&self, other: &CreateDataSetInput) -> bool
fn eq(&self, other: &CreateDataSetInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &CreateDataSetInput) -> bool
fn ne(&self, other: &CreateDataSetInput) -> bool
This method tests for !=.
impl StructuralPartialEq for CreateDataSetInput
Auto Trait Implementations
impl RefUnwindSafe for CreateDataSetInput
impl Send for CreateDataSetInput
impl Sync for CreateDataSetInput
impl Unpin for CreateDataSetInput
impl UnwindSafe for CreateDataSetInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more