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
source§impl PartialEq for GetTransactionInputBuilder
impl PartialEq for GetTransactionInputBuilder
source§fn eq(&self, other: &GetTransactionInputBuilder) -> bool
fn eq(&self, other: &GetTransactionInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.