Struct aws_sdk_storagegateway::operation::update_chap_credentials::UpdateChapCredentialsInput
source · #[non_exhaustive]pub struct UpdateChapCredentialsInput { /* private fields */ }Expand description
A JSON object containing one or more of the following fields:
-
UpdateChapCredentialsInput$InitiatorName -
UpdateChapCredentialsInput$SecretToAuthenticateInitiator -
UpdateChapCredentialsInput$SecretToAuthenticateTarget -
UpdateChapCredentialsInput$TargetARN
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.
source§impl UpdateChapCredentialsInput
impl UpdateChapCredentialsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateChapCredentials, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateChapCredentials, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateChapCredentials>
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<UpdateChapCredentialsInput> for UpdateChapCredentialsInput
impl PartialEq<UpdateChapCredentialsInput> 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 ==.