Struct aws_sdk_databasemigration::input::ImportCertificateInput [−][src]
#[non_exhaustive]pub struct ImportCertificateInput {
pub certificate_identifier: Option<String>,
pub certificate_pem: Option<String>,
pub certificate_wallet: Option<Blob>,
pub tags: Option<Vec<Tag>>,
}
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.certificate_identifier: Option<String>
A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.
certificate_pem: Option<String>
The contents of a .pem
file, which contains an X.509 certificate.
certificate_wallet: Option<Blob>
The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a .sso
file
using the fileb://
prefix. You can't provide the certificate inline.
Example: filebase64("${path.root}/rds-ca-2019-root.sso")
The tags associated with the certificate.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ImportCertificate, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ImportCertificate, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ImportCertificate
>
Creates a new builder-style object to manufacture ImportCertificateInput
A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.
The contents of a .pem
file, which contains an X.509 certificate.
The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a .sso
file
using the fileb://
prefix. You can't provide the certificate inline.
Example: filebase64("${path.root}/rds-ca-2019-root.sso")
The tags associated with the certificate.
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 ImportCertificateInput
impl Send for ImportCertificateInput
impl Sync for ImportCertificateInput
impl Unpin for ImportCertificateInput
impl UnwindSafe for ImportCertificateInput
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