Struct aws_sdk_datazone::operation::create_data_product_revision::CreateDataProductRevisionInput
source · #[non_exhaustive]pub struct CreateDataProductRevisionInput {
pub domain_identifier: Option<String>,
pub identifier: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub glossary_terms: Option<Vec<String>>,
pub items: Option<Vec<DataProductItem>>,
pub forms_input: Option<Vec<FormInput>>,
pub client_token: Option<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.domain_identifier: Option<String>
The ID of the domain where the data product revision is created.
identifier: Option<String>
The ID of the data product revision.
name: Option<String>
The name of the data product revision.
description: Option<String>
The description of the data product revision.
glossary_terms: Option<Vec<String>>
The glossary terms of the data product revision.
items: Option<Vec<DataProductItem>>
The data assets of the data product revision.
forms_input: Option<Vec<FormInput>>
The metadata forms of the data product revision.
client_token: Option<String>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
Implementations§
source§impl CreateDataProductRevisionInput
impl CreateDataProductRevisionInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The ID of the domain where the data product revision is created.
sourcepub fn identifier(&self) -> Option<&str>
pub fn identifier(&self) -> Option<&str>
The ID of the data product revision.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the data product revision.
sourcepub fn glossary_terms(&self) -> &[String]
pub fn glossary_terms(&self) -> &[String]
The glossary terms of the data product revision.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .glossary_terms.is_none()
.
sourcepub fn items(&self) -> &[DataProductItem]
pub fn items(&self) -> &[DataProductItem]
The data assets of the data product revision.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .items.is_none()
.
sourcepub fn forms_input(&self) -> &[FormInput]
pub fn forms_input(&self) -> &[FormInput]
The metadata forms of the data product revision.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .forms_input.is_none()
.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
source§impl CreateDataProductRevisionInput
impl CreateDataProductRevisionInput
sourcepub fn builder() -> CreateDataProductRevisionInputBuilder
pub fn builder() -> CreateDataProductRevisionInputBuilder
Creates a new builder-style object to manufacture CreateDataProductRevisionInput
.
Trait Implementations§
source§impl Clone for CreateDataProductRevisionInput
impl Clone for CreateDataProductRevisionInput
source§fn clone(&self) -> CreateDataProductRevisionInput
fn clone(&self) -> CreateDataProductRevisionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateDataProductRevisionInput
impl PartialEq for CreateDataProductRevisionInput
source§fn eq(&self, other: &CreateDataProductRevisionInput) -> bool
fn eq(&self, other: &CreateDataProductRevisionInput) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateDataProductRevisionInput
Auto Trait Implementations§
impl Freeze for CreateDataProductRevisionInput
impl RefUnwindSafe for CreateDataProductRevisionInput
impl Send for CreateDataProductRevisionInput
impl Sync for CreateDataProductRevisionInput
impl Unpin for CreateDataProductRevisionInput
impl UnwindSafe for CreateDataProductRevisionInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more