Struct aws_sdk_secretsmanager::Client

source ·
pub struct Client { /* private fields */ }
Expand description

Client for AWS Secrets Manager

Client for invoking operations on AWS Secrets Manager. Each operation on AWS Secrets Manager is a method on this this struct. .send() MUST be invoked on the generated operations to dispatch the request to the service.

§Constructing a Client

A Config is required to construct a client. For most use cases, the aws-config crate should be used to automatically resolve this config using aws_config::load_from_env(), since this will resolve an SdkConfig which can be shared across multiple different AWS SDK clients. This config resolution process can be customized by calling aws_config::from_env() instead, which returns a ConfigLoader that uses the builder pattern to customize the default config.

In the simplest case, creating a client looks as follows:

let config = aws_config::load_from_env().await;
let client = aws_sdk_secretsmanager::Client::new(&config);

Occasionally, SDKs may have additional service-specific values that can be set on the Config that is absent from SdkConfig, or slightly different settings for a specific client may be desired. The Config struct implements From<&SdkConfig>, so setting these specific settings can be done as follows:

let sdk_config = ::aws_config::load_from_env().await;
let config = aws_sdk_secretsmanager::config::Builder::from(&sdk_config)
    .some_service_specific_setting("value")
    .build();

See the aws-config docs and Config for more information on customizing configuration.

Note: Client construction is expensive due to connection thread pool initialization, and should be done once at application start-up.

§Using the Client

A client has a function for every operation that can be performed by the service. For example, the BatchGetSecretValue operation has a Client::batch_get_secret_value, function which returns a builder for that operation. The fluent builder ultimately has a send() function that returns an async future that returns a result, as illustrated below:

let result = client.batch_get_secret_value()
    .next_token("example")
    .send()
    .await;

The underlying HTTP requests that get made by this can be modified with the customize_operation function on the fluent builder. See the customize module for more information.

Implementations§

source§

impl Client

source

pub fn batch_get_secret_value(&self) -> BatchGetSecretValueFluentBuilder

Constructs a fluent builder for the BatchGetSecretValue operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn cancel_rotate_secret(&self) -> CancelRotateSecretFluentBuilder

Constructs a fluent builder for the CancelRotateSecret operation.

source§

impl Client

source

pub fn create_secret(&self) -> CreateSecretFluentBuilder

Constructs a fluent builder for the CreateSecret operation.

  • The fluent builder is configurable:
    • name(impl Into<String>) / set_name(Option<String>):
      required: true

      The name of the new secret.

      The secret name can contain ASCII letters, numbers, and the following characters: /_+=.@-

      Do not end your secret name with a hyphen followed by six characters. If you do so, you risk confusion and unexpected results when searching for a secret by partial ARN. Secrets Manager automatically adds a hyphen and six random characters after the secret name at the end of the ARN.


    • client_request_token(impl Into<String>) / set_client_request_token(Option<String>):
      required: false

      If you include SecretString or SecretBinary, then Secrets Manager creates an initial version for the secret, and this parameter specifies the unique identifier for the new version.

      If you use the Amazon Web Services CLI or one of the Amazon Web Services SDKs to call this operation, then you can leave this parameter empty. The CLI or SDK generates a random UUID for you and includes it as the value for this parameter in the request.

      If you generate a raw HTTP request to the Secrets Manager service endpoint, then you must generate a ClientRequestToken and include it in the request.

      This value helps ensure idempotency. Secrets Manager uses this value to prevent the accidental creation of duplicate versions if there are failures and retries during a rotation. We recommend that you generate a UUID-type value to ensure uniqueness of your versions within the specified secret.

      • If the ClientRequestToken value isn’t already associated with a version of the secret then a new version of the secret is created.

      • If a version with this value already exists and the version SecretString and SecretBinary values are the same as those in the request, then the request is ignored.

      • If a version with this value already exists and that version’s SecretString and SecretBinary values are different from those in the request, then the request fails because you cannot modify an existing version. Instead, use PutSecretValue to create a new version.

      This value becomes the VersionId of the new version.


    • description(impl Into<String>) / set_description(Option<String>):
      required: false

      The description of the secret.


    • kms_key_id(impl Into<String>) / set_kms_key_id(Option<String>):
      required: false

      The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt the secret value in the secret. An alias is always prefixed by alias/, for example alias/aws/secretsmanager. For more information, see About aliases.

      To use a KMS key in a different account, use the key ARN or the alias ARN.

      If you don’t specify this value, then Secrets Manager uses the key aws/secretsmanager. If that key doesn’t yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value.

      If the secret is in a different Amazon Web Services account from the credentials calling the API, then you can’t use aws/secretsmanager to encrypt the secret, and you must create and use a customer managed KMS key.


    • secret_binary(Blob) / set_secret_binary(Option<Blob>):
      required: false

      The binary data to encrypt and store in the new version of the secret. We recommend that you store your binary data in a file and then pass the contents of the file as a parameter.

      Either SecretString or SecretBinary must have a value, but not both.

      This parameter is not available in the Secrets Manager console.


    • secret_string(impl Into<String>) / set_secret_string(Option<String>):
      required: false

      The text data to encrypt and store in this new version of the secret. We recommend you use a JSON structure of key/value pairs for your secret value.

      Either SecretString or SecretBinary must have a value, but not both.

      If you create a secret by using the Secrets Manager console then Secrets Manager puts the protected secret text in only the SecretString parameter. The Secrets Manager console stores the information as a JSON structure of key/value pairs that a Lambda rotation function can parse.


    • tags(Tag) / set_tags(Option<Vec::<Tag>>):
      required: false

      A list of tags to attach to the secret. Each tag is a key and value pair of strings in a JSON text string, for example:

      [{“Key”:“CostCenter”,“Value”:“12345”},{“Key”:“environment”,“Value”:“production”}]

      Secrets Manager tag key names are case sensitive. A tag with the key “ABC” is a different tag from one with key “abc”.

      If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns an Access Denied error. For more information, see Control access to secrets using tags and Limit access to identities with tags that match secrets’ tags.

      For information about how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters. If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text.

      For tag quotas and naming restrictions, see Service quotas for Tagging in the Amazon Web Services General Reference guide.


    • add_replica_regions(ReplicaRegionType) / set_add_replica_regions(Option<Vec::<ReplicaRegionType>>):
      required: false

      A list of Regions and KMS keys to replicate secrets.


    • force_overwrite_replica_secret(bool) / set_force_overwrite_replica_secret(Option<bool>):
      required: false

      Specifies whether to overwrite a secret with the same name in the destination Region. By default, secrets aren’t overwritten.


  • On success, responds with CreateSecretOutput with field(s):
    • arn(Option<String>):

      The ARN of the new secret. The ARN includes the name of the secret followed by six random characters. This ensures that if you create a new secret with the same name as a deleted secret, then users with access to the old secret don’t get access to the new secret because the ARNs are different.

    • name(Option<String>):

      The name of the new secret.

    • version_id(Option<String>):

      The unique identifier associated with the version of the new secret.

    • replication_status(Option<Vec::<ReplicationStatusType>>):

      A list of the replicas of this secret and their status:

      • Failed, which indicates that the replica was not created.

      • InProgress, which indicates that Secrets Manager is in the process of creating the replica.

      • InSync, which indicates that the replica was created.

  • On failure, responds with SdkError<CreateSecretError>
source§

impl Client

source

pub fn delete_resource_policy(&self) -> DeleteResourcePolicyFluentBuilder

Constructs a fluent builder for the DeleteResourcePolicy operation.

source§

impl Client

source

pub fn delete_secret(&self) -> DeleteSecretFluentBuilder

Constructs a fluent builder for the DeleteSecret operation.

  • The fluent builder is configurable:
    • secret_id(impl Into<String>) / set_secret_id(Option<String>):
      required: true

      The ARN or name of the secret to delete.

      For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See Finding a secret from a partial ARN.


    • recovery_window_in_days(i64) / set_recovery_window_in_days(Option<i64>):
      required: false

      The number of days from 7 to 30 that Secrets Manager waits before permanently deleting the secret. You can’t use both this parameter and ForceDeleteWithoutRecovery in the same call. If you don’t use either, then by default Secrets Manager uses a 30 day recovery window.


    • force_delete_without_recovery(bool) / set_force_delete_without_recovery(Option<bool>):
      required: false

      Specifies whether to delete the secret without any recovery window. You can’t use both this parameter and RecoveryWindowInDays in the same call. If you don’t use either, then by default Secrets Manager uses a 30 day recovery window.

      Secrets Manager performs the actual deletion with an asynchronous background process, so there might be a short delay before the secret is permanently deleted. If you delete a secret and then immediately create a secret with the same name, use appropriate back off and retry logic.

      If you forcibly delete an already deleted or nonexistent secret, the operation does not return ResourceNotFoundException.

      Use this parameter with caution. This parameter causes the operation to skip the normal recovery window before the permanent deletion that Secrets Manager would normally impose with the RecoveryWindowInDays parameter. If you delete a secret with the ForceDeleteWithoutRecovery parameter, then you have no opportunity to recover the secret. You lose the secret permanently.


  • On success, responds with DeleteSecretOutput with field(s):
    • arn(Option<String>):

      The ARN of the secret.

    • name(Option<String>):

      The name of the secret.

    • deletion_date(Option<DateTime>):

      The date and time after which this secret Secrets Manager can permanently delete this secret, and it can no longer be restored. This value is the date and time of the delete request plus the number of days in RecoveryWindowInDays.

  • On failure, responds with SdkError<DeleteSecretError>
source§

impl Client

source

pub fn describe_secret(&self) -> DescribeSecretFluentBuilder

Constructs a fluent builder for the DescribeSecret operation.

  • The fluent builder is configurable:
  • On success, responds with DescribeSecretOutput with field(s):
    • arn(Option<String>):

      The ARN of the secret.

    • name(Option<String>):

      The name of the secret.

    • description(Option<String>):

      The description of the secret.

    • kms_key_id(Option<String>):

      The key ID or alias ARN of the KMS key that Secrets Manager uses to encrypt the secret value. If the secret is encrypted with the Amazon Web Services managed key aws/secretsmanager, this field is omitted. Secrets created using the console use an KMS key ID.

    • rotation_enabled(Option<bool>):

      Specifies whether automatic rotation is turned on for this secret.

      To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret.

    • rotation_lambda_arn(Option<String>):

      The ARN of the Lambda function that Secrets Manager invokes to rotate the secret.

    • rotation_rules(Option<RotationRulesType>):

      The rotation schedule and Lambda function for this secret. If the secret previously had rotation turned on, but it is now turned off, this field shows the previous rotation schedule and rotation function. If the secret never had rotation turned on, this field is omitted.

    • last_rotated_date(Option<DateTime>):

      The last date and time that Secrets Manager rotated the secret. If the secret isn’t configured for rotation or rotation has been disabled, Secrets Manager returns null.

    • last_changed_date(Option<DateTime>):

      The last date and time that this secret was modified in any way.

    • last_accessed_date(Option<DateTime>):

      The date that the secret was last accessed in the Region. This field is omitted if the secret has never been retrieved in the Region.

    • deleted_date(Option<DateTime>):

      The date the secret is scheduled for deletion. If it is not scheduled for deletion, this field is omitted. When you delete a secret, Secrets Manager requires a recovery window of at least 7 days before deleting the secret. Some time after the deleted date, Secrets Manager deletes the secret, including all of its versions.

      If a secret is scheduled for deletion, then its details, including the encrypted secret value, is not accessible. To cancel a scheduled deletion and restore access to the secret, use RestoreSecret.

    • next_rotation_date(Option<DateTime>):

      The next rotation is scheduled to occur on or before this date. If the secret isn’t configured for rotation or rotation has been disabled, Secrets Manager returns null. If rotation fails, Secrets Manager retries the entire rotation process multiple times. If rotation is unsuccessful, this date may be in the past.

      This date represents the latest date that rotation will occur, but it is not an approximate rotation date. In some cases, for example if you turn off automatic rotation and then turn it back on, the next rotation may occur much sooner than this date.

    • tags(Option<Vec::<Tag>>):

      The list of tags attached to the secret. To add tags to a secret, use TagResource. To remove tags, use UntagResource.

    • version_ids_to_stages(Option<HashMap::<String, Vec::<String>>>):

      A list of the versions of the secret that have staging labels attached. Versions that don’t have staging labels are considered deprecated and Secrets Manager can delete them.

      Secrets Manager uses staging labels to indicate the status of a secret version during rotation. The three staging labels for rotation are:

      • AWSCURRENT, which indicates the current version of the secret.

      • AWSPENDING, which indicates the version of the secret that contains new secret information that will become the next current version when rotation finishes.

        During rotation, Secrets Manager creates an AWSPENDING version ID before creating the new secret version. To check if a secret version exists, call GetSecretValue.

      • AWSPREVIOUS, which indicates the previous current version of the secret. You can use this as the last known good version.

      For more information about rotation and staging labels, see How rotation works.

    • owning_service(Option<String>):

      The ID of the service that created this secret. For more information, see Secrets managed by other Amazon Web Services services.

    • created_date(Option<DateTime>):

      The date the secret was created.

    • primary_region(Option<String>):

      The Region the secret is in. If a secret is replicated to other Regions, the replicas are listed in ReplicationStatus.

    • replication_status(Option<Vec::<ReplicationStatusType>>):

      A list of the replicas of this secret and their status:

      • Failed, which indicates that the replica was not created.

      • InProgress, which indicates that Secrets Manager is in the process of creating the replica.

      • InSync, which indicates that the replica was created.

  • On failure, responds with SdkError<DescribeSecretError>
source§

impl Client

source

pub fn get_random_password(&self) -> GetRandomPasswordFluentBuilder

Constructs a fluent builder for the GetRandomPassword operation.

source§

impl Client

source

pub fn get_resource_policy(&self) -> GetResourcePolicyFluentBuilder

Constructs a fluent builder for the GetResourcePolicy operation.

source§

impl Client

source

pub fn get_secret_value(&self) -> GetSecretValueFluentBuilder

Constructs a fluent builder for the GetSecretValue operation.

  • The fluent builder is configurable:
    • secret_id(impl Into<String>) / set_secret_id(Option<String>):
      required: true

      The ARN or name of the secret to retrieve.

      For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See Finding a secret from a partial ARN.


    • version_id(impl Into<String>) / set_version_id(Option<String>):
      required: false

      The unique identifier of the version of the secret to retrieve. If you include both this parameter and VersionStage, the two parameters must refer to the same secret version. If you don’t specify either a VersionStage or VersionId, then Secrets Manager returns the AWSCURRENT version.

      This value is typically a UUID-type value with 32 hexadecimal digits.


    • version_stage(impl Into<String>) / set_version_stage(Option<String>):
      required: false

      The staging label of the version of the secret to retrieve.

      Secrets Manager uses staging labels to keep track of different versions during the rotation process. If you include both this parameter and VersionId, the two parameters must refer to the same secret version. If you don’t specify either a VersionStage or VersionId, Secrets Manager returns the AWSCURRENT version.


  • On success, responds with GetSecretValueOutput with field(s):
    • arn(Option<String>):

      The ARN of the secret.

    • name(Option<String>):

      The friendly name of the secret.

    • version_id(Option<String>):

      The unique identifier of this version of the secret.

    • secret_binary(Option<Blob>):

      The decrypted secret value, if the secret value was originally provided as binary data in the form of a byte array. When you retrieve a SecretBinary using the HTTP API, the Python SDK, or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not encoded.

      If the secret was created by using the Secrets Manager console, or if the secret value was originally provided as a string, then this field is omitted. The secret value appears in SecretString instead.

    • secret_string(Option<String>):

      The decrypted secret value, if the secret value was originally provided as a string or through the Secrets Manager console.

      If this secret was created by using the console, then Secrets Manager stores the information as a JSON structure of key/value pairs.

    • version_stages(Option<Vec::<String>>):

      A list of all of the staging labels currently attached to this version of the secret.

    • created_date(Option<DateTime>):

      The date and time that this version of the secret was created. If you don’t specify which version in VersionId or VersionStage, then Secrets Manager uses the AWSCURRENT version.

  • On failure, responds with SdkError<GetSecretValueError>
source§

impl Client

source

pub fn list_secret_version_ids(&self) -> ListSecretVersionIdsFluentBuilder

Constructs a fluent builder for the ListSecretVersionIds operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn list_secrets(&self) -> ListSecretsFluentBuilder

Constructs a fluent builder for the ListSecrets operation. This operation supports pagination; See into_paginator().

source§

impl Client

source

pub fn put_resource_policy(&self) -> PutResourcePolicyFluentBuilder

Constructs a fluent builder for the PutResourcePolicy operation.

source§

impl Client

source

pub fn put_secret_value(&self) -> PutSecretValueFluentBuilder

Constructs a fluent builder for the PutSecretValue operation.

  • The fluent builder is configurable:
    • secret_id(impl Into<String>) / set_secret_id(Option<String>):
      required: true

      The ARN or name of the secret to add a new version to.

      For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See Finding a secret from a partial ARN.

      If the secret doesn’t already exist, use CreateSecret instead.


    • client_request_token(impl Into<String>) / set_client_request_token(Option<String>):
      required: false

      A unique identifier for the new version of the secret.

      If you use the Amazon Web Services CLI or one of the Amazon Web Services SDKs to call this operation, then you can leave this parameter empty. The CLI or SDK generates a random UUID for you and includes it as the value for this parameter in the request.

      If you generate a raw HTTP request to the Secrets Manager service endpoint, then you must generate a ClientRequestToken and include it in the request.

      This value helps ensure idempotency. Secrets Manager uses this value to prevent the accidental creation of duplicate versions if there are failures and retries during a rotation. We recommend that you generate a UUID-type value to ensure uniqueness of your versions within the specified secret.

      • If the ClientRequestToken value isn’t already associated with a version of the secret then a new version of the secret is created.

      • If a version with this value already exists and that version’s SecretString or SecretBinary values are the same as those in the request then the request is ignored. The operation is idempotent.

      • If a version with this value already exists and the version of the SecretString and SecretBinary values are different from those in the request, then the request fails because you can’t modify a secret version. You can only create new versions to store new secret values.

      This value becomes the VersionId of the new version.


    • secret_binary(Blob) / set_secret_binary(Option<Blob>):
      required: false

      The binary data to encrypt and store in the new version of the secret. To use this parameter in the command-line tools, we recommend that you store your binary data in a file and then pass the contents of the file as a parameter.

      You must include SecretBinary or SecretString, but not both.

      You can’t access this value from the Secrets Manager console.


    • secret_string(impl Into<String>) / set_secret_string(Option<String>):
      required: false

      The text to encrypt and store in the new version of the secret.

      You must include SecretBinary or SecretString, but not both.

      We recommend you create the secret string as JSON key/value pairs, as shown in the example.


    • version_stages(impl Into<String>) / set_version_stages(Option<Vec::<String>>):
      required: false

      A list of staging labels to attach to this version of the secret. Secrets Manager uses staging labels to track versions of a secret through the rotation process.

      If you specify a staging label that’s already associated with a different version of the same secret, then Secrets Manager removes the label from the other version and attaches it to this version. If you specify AWSCURRENT, and it is already attached to another version, then Secrets Manager also moves the staging label AWSPREVIOUS to the version that AWSCURRENT was removed from.

      If you don’t include VersionStages, then Secrets Manager automatically moves the staging label AWSCURRENT to this version.


  • On success, responds with PutSecretValueOutput with field(s):
  • On failure, responds with SdkError<PutSecretValueError>
source§

impl Client

source

pub fn remove_regions_from_replication( &self ) -> RemoveRegionsFromReplicationFluentBuilder

Constructs a fluent builder for the RemoveRegionsFromReplication operation.

source§

impl Client

source

pub fn replicate_secret_to_regions( &self ) -> ReplicateSecretToRegionsFluentBuilder

Constructs a fluent builder for the ReplicateSecretToRegions operation.

source§

impl Client

source

pub fn restore_secret(&self) -> RestoreSecretFluentBuilder

Constructs a fluent builder for the RestoreSecret operation.

source§

impl Client

source

pub fn rotate_secret(&self) -> RotateSecretFluentBuilder

Constructs a fluent builder for the RotateSecret operation.

source§

impl Client

source

pub fn stop_replication_to_replica( &self ) -> StopReplicationToReplicaFluentBuilder

Constructs a fluent builder for the StopReplicationToReplica operation.

source§

impl Client

source

pub fn tag_resource(&self) -> TagResourceFluentBuilder

Constructs a fluent builder for the TagResource operation.

source§

impl Client

source

pub fn untag_resource(&self) -> UntagResourceFluentBuilder

Constructs a fluent builder for the UntagResource operation.

source§

impl Client

source

pub fn update_secret(&self) -> UpdateSecretFluentBuilder

Constructs a fluent builder for the UpdateSecret operation.

  • The fluent builder is configurable:
    • secret_id(impl Into<String>) / set_secret_id(Option<String>):
      required: true

      The ARN or name of the secret.

      For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See Finding a secret from a partial ARN.


    • client_request_token(impl Into<String>) / set_client_request_token(Option<String>):
      required: false

      If you include SecretString or SecretBinary, then Secrets Manager creates a new version for the secret, and this parameter specifies the unique identifier for the new version.

      If you use the Amazon Web Services CLI or one of the Amazon Web Services SDKs to call this operation, then you can leave this parameter empty. The CLI or SDK generates a random UUID for you and includes it as the value for this parameter in the request.

      If you generate a raw HTTP request to the Secrets Manager service endpoint, then you must generate a ClientRequestToken and include it in the request.

      This value helps ensure idempotency. Secrets Manager uses this value to prevent the accidental creation of duplicate versions if there are failures and retries during a rotation. We recommend that you generate a UUID-type value to ensure uniqueness of your versions within the specified secret.


    • description(impl Into<String>) / set_description(Option<String>):
      required: false

      The description of the secret.


    • kms_key_id(impl Into<String>) / set_kms_key_id(Option<String>):
      required: false

      The ARN, key ID, or alias of the KMS key that Secrets Manager uses to encrypt new secret versions as well as any existing versions with the staging labels AWSCURRENT, AWSPENDING, or AWSPREVIOUS. If you don’t have kms:Encrypt permission to the new key, Secrets Manager does not re-ecrypt existing secret versions with the new key. For more information about versions and staging labels, see Concepts: Version.

      A key alias is always prefixed by alias/, for example alias/aws/secretsmanager. For more information, see About aliases.

      If you set this to an empty string, Secrets Manager uses the Amazon Web Services managed key aws/secretsmanager. If this key doesn’t already exist in your account, then Secrets Manager creates it for you automatically. All users and roles in the Amazon Web Services account automatically have access to use aws/secretsmanager. Creating aws/secretsmanager can result in a one-time significant delay in returning the result.

      You can only use the Amazon Web Services managed key aws/secretsmanager if you call this operation using credentials from the same Amazon Web Services account that owns the secret. If the secret is in a different account, then you must use a customer managed key and provide the ARN of that KMS key in this field. The user making the call must have permissions to both the secret and the KMS key in their respective accounts.


    • secret_binary(Blob) / set_secret_binary(Option<Blob>):
      required: false

      The binary data to encrypt and store in the new version of the secret. We recommend that you store your binary data in a file and then pass the contents of the file as a parameter.

      Either SecretBinary or SecretString must have a value, but not both.

      You can’t access this parameter in the Secrets Manager console.


    • secret_string(impl Into<String>) / set_secret_string(Option<String>):
      required: false

      The text data to encrypt and store in the new version of the secret. We recommend you use a JSON structure of key/value pairs for your secret value.

      Either SecretBinary or SecretString must have a value, but not both.


  • On success, responds with UpdateSecretOutput with field(s):
  • On failure, responds with SdkError<UpdateSecretError>
source§

impl Client

source

pub fn update_secret_version_stage( &self ) -> UpdateSecretVersionStageFluentBuilder

Constructs a fluent builder for the UpdateSecretVersionStage operation.

source§

impl Client

source

pub fn validate_resource_policy(&self) -> ValidateResourcePolicyFluentBuilder

Constructs a fluent builder for the ValidateResourcePolicy operation.

source§

impl Client

source

pub fn from_conf(conf: Config) -> Self

Creates a new client from the service Config.

§Panics

This method will panic in the following cases:

  • Retries or timeouts are enabled without a sleep_impl configured.
  • Identity caching is enabled without a sleep_impl and time_source configured.
  • No behavior_version is provided.

The panic message for each of these will have instructions on how to resolve them.

source

pub fn config(&self) -> &Config

Returns the client’s configuration.

source§

impl Client

source

pub fn new(sdk_config: &SdkConfig) -> Self

Creates a new client from an SDK Config.

§Panics
  • This method will panic if the sdk_config is missing an async sleep implementation. If you experience this panic, set the sleep_impl on the Config passed into this function to fix it.
  • This method will panic if the sdk_config is missing an HTTP connector. If you experience this panic, set the http_connector on the Config passed into this function to fix it.
  • This method will panic if no BehaviorVersion is provided. If you experience this panic, set behavior_version on the Config or enable the behavior-version-latest Cargo feature.

Trait Implementations§

source§

impl Clone for Client

source§

fn clone(&self) -> Client

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Client

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Client

§

impl !RefUnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl !UnwindSafe for Client

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more