Struct aws_sdk_finspace::operation::create_kx_changeset::builders::CreateKxChangesetOutputBuilder
source · #[non_exhaustive]pub struct CreateKxChangesetOutputBuilder { /* private fields */ }Expand description
A builder for CreateKxChangesetOutput.
Implementations§
source§impl CreateKxChangesetOutputBuilder
impl CreateKxChangesetOutputBuilder
sourcepub fn changeset_id(self, input: impl Into<String>) -> Self
pub fn changeset_id(self, input: impl Into<String>) -> Self
A unique identifier for the changeset.
sourcepub fn set_changeset_id(self, input: Option<String>) -> Self
pub fn set_changeset_id(self, input: Option<String>) -> Self
A unique identifier for the changeset.
sourcepub fn get_changeset_id(&self) -> &Option<String>
pub fn get_changeset_id(&self) -> &Option<String>
A unique identifier for the changeset.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
The name of the kdb database.
sourcepub fn set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
The name of the kdb database.
sourcepub fn get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
The name of the kdb database.
sourcepub fn environment_id(self, input: impl Into<String>) -> Self
pub fn environment_id(self, input: impl Into<String>) -> Self
A unique identifier for the kdb environment.
sourcepub fn set_environment_id(self, input: Option<String>) -> Self
pub fn set_environment_id(self, input: Option<String>) -> Self
A unique identifier for the kdb environment.
sourcepub fn get_environment_id(&self) -> &Option<String>
pub fn get_environment_id(&self) -> &Option<String>
A unique identifier for the kdb environment.
sourcepub fn change_requests(self, input: ChangeRequest) -> Self
pub fn change_requests(self, input: ChangeRequest) -> Self
Appends an item to change_requests.
To override the contents of this collection use set_change_requests.
A list of change requests.
sourcepub fn set_change_requests(self, input: Option<Vec<ChangeRequest>>) -> Self
pub fn set_change_requests(self, input: Option<Vec<ChangeRequest>>) -> Self
A list of change requests.
sourcepub fn get_change_requests(&self) -> &Option<Vec<ChangeRequest>>
pub fn get_change_requests(&self) -> &Option<Vec<ChangeRequest>>
A list of change requests.
sourcepub fn created_timestamp(self, input: DateTime) -> Self
pub fn created_timestamp(self, input: DateTime) -> Self
The timestamp at which the changeset was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
sourcepub fn set_created_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_created_timestamp(self, input: Option<DateTime>) -> Self
The timestamp at which the changeset was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
sourcepub fn get_created_timestamp(&self) -> &Option<DateTime>
pub fn get_created_timestamp(&self) -> &Option<DateTime>
The timestamp at which the changeset was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
sourcepub fn last_modified_timestamp(self, input: DateTime) -> Self
pub fn last_modified_timestamp(self, input: DateTime) -> Self
The timestamp at which the changeset was updated in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
sourcepub fn set_last_modified_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_timestamp(self, input: Option<DateTime>) -> Self
The timestamp at which the changeset was updated in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
sourcepub fn get_last_modified_timestamp(&self) -> &Option<DateTime>
pub fn get_last_modified_timestamp(&self) -> &Option<DateTime>
The timestamp at which the changeset was updated in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
sourcepub fn status(self, input: ChangesetStatus) -> Self
pub fn status(self, input: ChangesetStatus) -> Self
Status of the changeset creation process.
-
Pending – Changeset creation is pending.
-
Processing – Changeset creation is running.
-
Failed – Changeset creation has failed.
-
Complete – Changeset creation has succeeded.
sourcepub fn set_status(self, input: Option<ChangesetStatus>) -> Self
pub fn set_status(self, input: Option<ChangesetStatus>) -> Self
Status of the changeset creation process.
-
Pending – Changeset creation is pending.
-
Processing – Changeset creation is running.
-
Failed – Changeset creation has failed.
-
Complete – Changeset creation has succeeded.
sourcepub fn get_status(&self) -> &Option<ChangesetStatus>
pub fn get_status(&self) -> &Option<ChangesetStatus>
Status of the changeset creation process.
-
Pending – Changeset creation is pending.
-
Processing – Changeset creation is running.
-
Failed – Changeset creation has failed.
-
Complete – Changeset creation has succeeded.
sourcepub fn error_info(self, input: ErrorInfo) -> Self
pub fn error_info(self, input: ErrorInfo) -> Self
The details of the error that you receive when creating a changeset. It consists of the type of error and the error message.
sourcepub fn set_error_info(self, input: Option<ErrorInfo>) -> Self
pub fn set_error_info(self, input: Option<ErrorInfo>) -> Self
The details of the error that you receive when creating a changeset. It consists of the type of error and the error message.
sourcepub fn get_error_info(&self) -> &Option<ErrorInfo>
pub fn get_error_info(&self) -> &Option<ErrorInfo>
The details of the error that you receive when creating a changeset. It consists of the type of error and the error message.
sourcepub fn build(self) -> CreateKxChangesetOutput
pub fn build(self) -> CreateKxChangesetOutput
Consumes the builder and constructs a CreateKxChangesetOutput.
Trait Implementations§
source§impl Clone for CreateKxChangesetOutputBuilder
impl Clone for CreateKxChangesetOutputBuilder
source§fn clone(&self) -> CreateKxChangesetOutputBuilder
fn clone(&self) -> CreateKxChangesetOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CreateKxChangesetOutputBuilder
impl Default for CreateKxChangesetOutputBuilder
source§fn default() -> CreateKxChangesetOutputBuilder
fn default() -> CreateKxChangesetOutputBuilder
source§impl PartialEq for CreateKxChangesetOutputBuilder
impl PartialEq for CreateKxChangesetOutputBuilder
source§fn eq(&self, other: &CreateKxChangesetOutputBuilder) -> bool
fn eq(&self, other: &CreateKxChangesetOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.