pub struct VaultOutputs {
pub vault_id: String,
}Expand description
Outputs generated by a successfully provisioned Vault.
Fields§
§vault_id: StringPlatform-specific vault identifier.
- AWS: Account and region (e.g., “123456789012:us-west-2”) - implicit reference to Secrets Manager
- GCP: Project and location (e.g., “projects/my-project/locations/us-central1”) - implicit reference to Secret Manager
- Azure: Key Vault resource ID (e.g., “/subscriptions/…/resourceGroups/…/providers/Microsoft.KeyVault/vaults/my-vault”)
Trait Implementations§
Source§impl Clone for VaultOutputs
impl Clone for VaultOutputs
Source§fn clone(&self) -> VaultOutputs
fn clone(&self) -> VaultOutputs
Returns a duplicate 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 VaultOutputs
impl Debug for VaultOutputs
Source§impl<'de> Deserialize<'de> for VaultOutputs
impl<'de> Deserialize<'de> for VaultOutputs
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for VaultOutputs
impl PartialEq for VaultOutputs
Source§impl ResourceOutputsDefinition for VaultOutputs
impl ResourceOutputsDefinition for VaultOutputs
Source§fn resource_type() -> ResourceType
fn resource_type() -> ResourceType
Returns the resource type this output corresponds to
Source§fn box_clone(&self) -> Box<dyn ResourceOutputsDefinition>
fn box_clone(&self) -> Box<dyn ResourceOutputsDefinition>
Creates a boxed clone of this resource outputs
Source§fn outputs_eq(&self, other: &dyn ResourceOutputsDefinition) -> bool
fn outputs_eq(&self, other: &dyn ResourceOutputsDefinition) -> bool
For equality comparison between resource outputs
Source§impl Serialize for VaultOutputs
impl Serialize for VaultOutputs
impl Eq for VaultOutputs
impl StructuralPartialEq for VaultOutputs
Auto Trait Implementations§
impl Freeze for VaultOutputs
impl RefUnwindSafe for VaultOutputs
impl Send for VaultOutputs
impl Sync for VaultOutputs
impl Unpin for VaultOutputs
impl UnsafeUnpin for VaultOutputs
impl UnwindSafe for VaultOutputs
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.