Struct aws_sdk_secretsmanager::output::CreateSecretOutput [−][src]
#[non_exhaustive]pub struct CreateSecretOutput {
pub arn: Option<String>,
pub name: Option<String>,
pub version_id: Option<String>,
pub replication_status: Option<Vec<ReplicationStatusType>>,
}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.arn: Option<String>The Amazon Resource Name (ARN) of the secret that you just created.
Secrets Manager automatically adds several random characters to the name at the end of the ARN when you initially create a secret. This affects only the ARN and not the actual friendly name. This ensures that if you create a new secret with the same name as an old secret that you previously deleted, then users with access to the old secret don't automatically get access to the new secret because the ARNs are different.
name: Option<String>The friendly name of the secret that you just created.
version_id: Option<String>The unique identifier associated with the version of the secret you just created.
replication_status: Option<Vec<ReplicationStatusType>>Describes a list of replication status objects as InProgress, Failed or InSync.
Implementations
The Amazon Resource Name (ARN) of the secret that you just created.
Secrets Manager automatically adds several random characters to the name at the end of the ARN when you initially create a secret. This affects only the ARN and not the actual friendly name. This ensures that if you create a new secret with the same name as an old secret that you previously deleted, then users with access to the old secret don't automatically get access to the new secret because the ARNs are different.
The unique identifier associated with the version of the secret you just created.
Describes a list of replication status objects as InProgress, Failed or InSync.
Creates a new builder-style object to manufacture CreateSecretOutput
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for CreateSecretOutput
impl Send for CreateSecretOutput
impl Sync for CreateSecretOutput
impl Unpin for CreateSecretOutput
impl UnwindSafe for CreateSecretOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more