Struct aws_sdk_managedblockchainquery::operation::get_transaction::builders::GetTransactionInputBuilder
source · #[non_exhaustive]pub struct GetTransactionInputBuilder { /* private fields */ }
Expand description
A builder for GetTransactionInput
.
Implementations§
source§impl GetTransactionInputBuilder
impl GetTransactionInputBuilder
sourcepub fn transaction_hash(self, input: impl Into<String>) -> Self
pub fn transaction_hash(self, input: impl Into<String>) -> Self
The hash of a transaction. It is generated when a transaction is created.
sourcepub fn set_transaction_hash(self, input: Option<String>) -> Self
pub fn set_transaction_hash(self, input: Option<String>) -> Self
The hash of a transaction. It is generated when a transaction is created.
sourcepub fn get_transaction_hash(&self) -> &Option<String>
pub fn get_transaction_hash(&self) -> &Option<String>
The hash of a transaction. It is generated when a transaction is created.
sourcepub fn transaction_id(self, input: impl Into<String>) -> Self
pub fn transaction_id(self, input: impl Into<String>) -> Self
The identifier of a Bitcoin transaction. It is generated when a transaction is created.
transactionId
is only supported on the Bitcoin networks.
sourcepub fn set_transaction_id(self, input: Option<String>) -> Self
pub fn set_transaction_id(self, input: Option<String>) -> Self
The identifier of a Bitcoin transaction. It is generated when a transaction is created.
transactionId
is only supported on the Bitcoin networks.
sourcepub fn get_transaction_id(&self) -> &Option<String>
pub fn get_transaction_id(&self) -> &Option<String>
The identifier of a Bitcoin transaction. It is generated when a transaction is created.
transactionId
is only supported on the Bitcoin networks.
sourcepub fn network(self, input: QueryNetwork) -> Self
pub fn network(self, input: QueryNetwork) -> Self
The blockchain network where the transaction occurred.
This field is required.sourcepub fn set_network(self, input: Option<QueryNetwork>) -> Self
pub fn set_network(self, input: Option<QueryNetwork>) -> Self
The blockchain network where the transaction occurred.
sourcepub fn get_network(&self) -> &Option<QueryNetwork>
pub fn get_network(&self) -> &Option<QueryNetwork>
The blockchain network where the transaction occurred.
sourcepub fn build(self) -> Result<GetTransactionInput, BuildError>
pub fn build(self) -> Result<GetTransactionInput, BuildError>
Consumes the builder and constructs a GetTransactionInput
.
source§impl GetTransactionInputBuilder
impl GetTransactionInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetTransactionOutput, SdkError<GetTransactionError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetTransactionOutput, SdkError<GetTransactionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetTransactionInputBuilder
impl Clone for GetTransactionInputBuilder
source§fn clone(&self) -> GetTransactionInputBuilder
fn clone(&self) -> GetTransactionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetTransactionInputBuilder
impl Debug for GetTransactionInputBuilder
source§impl Default for GetTransactionInputBuilder
impl Default for GetTransactionInputBuilder
source§fn default() -> GetTransactionInputBuilder
fn default() -> GetTransactionInputBuilder
impl StructuralPartialEq for GetTransactionInputBuilder
Auto Trait Implementations§
impl Freeze for GetTransactionInputBuilder
impl RefUnwindSafe for GetTransactionInputBuilder
impl Send for GetTransactionInputBuilder
impl Sync for GetTransactionInputBuilder
impl Unpin for GetTransactionInputBuilder
impl UnwindSafe for GetTransactionInputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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