Struct aws_sdk_storagegateway::operation::update_chap_credentials::UpdateChapCredentialsInput
source · #[non_exhaustive]pub struct UpdateChapCredentialsInput {
pub target_arn: Option<String>,
pub secret_to_authenticate_initiator: Option<String>,
pub initiator_name: Option<String>,
pub secret_to_authenticate_target: Option<String>,
}Expand description
A JSON object containing one or more of the following fields:
-
UpdateChapCredentialsInput$InitiatorName -
UpdateChapCredentialsInput$SecretToAuthenticateInitiator -
UpdateChapCredentialsInput$SecretToAuthenticateTarget -
UpdateChapCredentialsInput$TargetARN
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.target_arn: Option<String>The Amazon Resource Name (ARN) of the iSCSI volume target. Use the DescribeStorediSCSIVolumes operation to return the TargetARN for specified VolumeARN.
secret_to_authenticate_initiator: Option<String>The secret key that the initiator (for example, the Windows client) must provide to participate in mutual CHAP with the target.
The secret key must be between 12 and 16 bytes when encoded in UTF-8.
initiator_name: Option<String>The iSCSI initiator that connects to the target.
secret_to_authenticate_target: Option<String>The secret key that the target must provide to participate in mutual CHAP with the initiator (e.g. Windows client).
Byte constraints: Minimum bytes of 12. Maximum bytes of 16.
The secret key must be between 12 and 16 bytes when encoded in UTF-8.
Implementations§
source§impl UpdateChapCredentialsInput
impl UpdateChapCredentialsInput
sourcepub fn target_arn(&self) -> Option<&str>
pub fn target_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the iSCSI volume target. Use the DescribeStorediSCSIVolumes operation to return the TargetARN for specified VolumeARN.
sourcepub fn secret_to_authenticate_initiator(&self) -> Option<&str>
pub fn secret_to_authenticate_initiator(&self) -> Option<&str>
The secret key that the initiator (for example, the Windows client) must provide to participate in mutual CHAP with the target.
The secret key must be between 12 and 16 bytes when encoded in UTF-8.
sourcepub fn initiator_name(&self) -> Option<&str>
pub fn initiator_name(&self) -> Option<&str>
The iSCSI initiator that connects to the target.
sourcepub fn secret_to_authenticate_target(&self) -> Option<&str>
pub fn secret_to_authenticate_target(&self) -> Option<&str>
The secret key that the target must provide to participate in mutual CHAP with the initiator (e.g. Windows client).
Byte constraints: Minimum bytes of 12. Maximum bytes of 16.
The secret key must be between 12 and 16 bytes when encoded in UTF-8.
source§impl UpdateChapCredentialsInput
impl UpdateChapCredentialsInput
sourcepub fn builder() -> UpdateChapCredentialsInputBuilder
pub fn builder() -> UpdateChapCredentialsInputBuilder
Creates a new builder-style object to manufacture UpdateChapCredentialsInput.
Trait Implementations§
source§impl Clone for UpdateChapCredentialsInput
impl Clone for UpdateChapCredentialsInput
source§fn clone(&self) -> UpdateChapCredentialsInput
fn clone(&self) -> UpdateChapCredentialsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateChapCredentialsInput
impl Debug for UpdateChapCredentialsInput
source§impl PartialEq for UpdateChapCredentialsInput
impl PartialEq for UpdateChapCredentialsInput
source§fn eq(&self, other: &UpdateChapCredentialsInput) -> bool
fn eq(&self, other: &UpdateChapCredentialsInput) -> bool
self and other values to be equal, and is used
by ==.