fn get_secret_value_output()

in aws_secretsmanager_caching/src/secret_store/memory_store/mod.rs [116:132]


    fn get_secret_value_output(suffix: Option<&str>) -> GetSecretValueOutputDef {
        GetSecretValueOutputDef {
            name: match suffix {
                Some(suffix) => Some(format!("{}{}", NAME, suffix)),
                None => Some(NAME.to_string()),
            },
            arn: match suffix {
                Some(suffix) => Some(format!("{}{}", ARN, suffix)),
                None => Some(ARN.to_string()),
            },
            version_id: Some(VERSION_ID.to_string()),
            secret_string: Some(SECRET_STRING.to_string()),
            secret_binary: None,
            version_stages: Some(vec!["AWSCURRENT".to_string()]),
            created_date: None,
        }
    }