#[non_exhaustive]pub struct DataSetIdentifierDeclarationBuilder { /* private fields */ }
Expand description
A builder for DataSetIdentifierDeclaration
.
Implementations§
source§impl DataSetIdentifierDeclarationBuilder
impl DataSetIdentifierDeclarationBuilder
sourcepub fn identifier(self, input: impl Into<String>) -> Self
pub fn identifier(self, input: impl Into<String>) -> Self
The identifier of the data set, typically the data set's name.
sourcepub fn set_identifier(self, input: Option<String>) -> Self
pub fn set_identifier(self, input: Option<String>) -> Self
The identifier of the data set, typically the data set's name.
sourcepub fn data_set_arn(self, input: impl Into<String>) -> Self
pub fn data_set_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the data set.
sourcepub fn set_data_set_arn(self, input: Option<String>) -> Self
pub fn set_data_set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the data set.
sourcepub fn build(self) -> DataSetIdentifierDeclaration
pub fn build(self) -> DataSetIdentifierDeclaration
Consumes the builder and constructs a DataSetIdentifierDeclaration
.
Trait Implementations§
source§impl Clone for DataSetIdentifierDeclarationBuilder
impl Clone for DataSetIdentifierDeclarationBuilder
source§fn clone(&self) -> DataSetIdentifierDeclarationBuilder
fn clone(&self) -> DataSetIdentifierDeclarationBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for DataSetIdentifierDeclarationBuilder
impl Default for DataSetIdentifierDeclarationBuilder
source§fn default() -> DataSetIdentifierDeclarationBuilder
fn default() -> DataSetIdentifierDeclarationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DataSetIdentifierDeclarationBuilder> for DataSetIdentifierDeclarationBuilder
impl PartialEq<DataSetIdentifierDeclarationBuilder> for DataSetIdentifierDeclarationBuilder
source§fn eq(&self, other: &DataSetIdentifierDeclarationBuilder) -> bool
fn eq(&self, other: &DataSetIdentifierDeclarationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.