pub struct CreateNodeInput {
pub client_request_token: String,
pub member_id: String,
pub network_id: String,
pub node_configuration: NodeConfiguration,
}
Fields§
§client_request_token: String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time. This identifier is required only if you make a service request directly using an HTTP client. It is generated automatically if you use an AWS SDK or the AWS CLI.
member_id: String
The unique identifier of the member that owns this node.
network_id: String
The unique identifier of the network in which this node runs.
node_configuration: NodeConfiguration
The properties of a node configuration.
Trait Implementations§
Source§impl Clone for CreateNodeInput
impl Clone for CreateNodeInput
Source§fn clone(&self) -> CreateNodeInput
fn clone(&self) -> CreateNodeInput
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 Debug for CreateNodeInput
impl Debug for CreateNodeInput
Source§impl Default for CreateNodeInput
impl Default for CreateNodeInput
Source§fn default() -> CreateNodeInput
fn default() -> CreateNodeInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateNodeInput
impl PartialEq for CreateNodeInput
Source§impl Serialize for CreateNodeInput
impl Serialize for CreateNodeInput
impl StructuralPartialEq for CreateNodeInput
Auto Trait Implementations§
impl Freeze for CreateNodeInput
impl RefUnwindSafe for CreateNodeInput
impl Send for CreateNodeInput
impl Sync for CreateNodeInput
impl Unpin for CreateNodeInput
impl UnwindSafe for CreateNodeInput
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
Mutably borrows from an owned value. Read more