Struct aws_sdk_acm::input::RequestCertificateInput
source · [−]#[non_exhaustive]pub struct RequestCertificateInput { /* private fields */ }
Implementations
sourceimpl RequestCertificateInput
impl RequestCertificateInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RequestCertificate, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RequestCertificate, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<RequestCertificate
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RequestCertificateInput
.
sourceimpl RequestCertificateInput
impl RequestCertificateInput
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
Fully qualified domain name (FQDN), such as www.example.com, that you want to secure with an ACM certificate. Use an asterisk (*) to create a wildcard certificate that protects several sites in the same domain. For example, *.example.com protects www.example.com, site.example.com, and images.example.com.
The first domain name you enter cannot exceed 64 octets, including periods. Each subsequent Subject Alternative Name (SAN), however, can be up to 253 octets in length.
sourcepub fn validation_method(&self) -> Option<&ValidationMethod>
pub fn validation_method(&self) -> Option<&ValidationMethod>
The method you want to use if you are requesting a public certificate to validate that you own or control domain. You can validate with DNS or validate with email. We recommend that you use DNS validation.
sourcepub fn subject_alternative_names(&self) -> Option<&[String]>
pub fn subject_alternative_names(&self) -> Option<&[String]>
Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate. For example, add the name www.example.net to a certificate for which the DomainName
field is www.example.com if users can reach your site by using either name. The maximum number of domain names that you can add to an ACM certificate is 100. However, the initial quota is 10 domain names. If you need more than 10 names, you must request a quota increase. For more information, see Quotas.
The maximum length of a SAN DNS name is 253 octets. The name is made up of multiple labels separated by periods. No label can be longer than 63 octets. Consider the following examples:
-
(63 octets).(63 octets).(63 octets).(61 octets)
is legal because the total length is 253 octets (63+1+63+1+63+1+61) and no label exceeds 63 octets. -
(64 octets).(63 octets).(63 octets).(61 octets)
is not legal because the total length exceeds 253 octets (64+1+63+1+63+1+61) and the first label exceeds 63 octets. -
(63 octets).(63 octets).(63 octets).(62 octets)
is not legal because the total length of the DNS name (63+1+63+1+63+1+62) exceeds 253 octets.
sourcepub fn idempotency_token(&self) -> Option<&str>
pub fn idempotency_token(&self) -> Option<&str>
Customer chosen string that can be used to distinguish between calls to RequestCertificate
. Idempotency tokens time out after one hour. Therefore, if you call RequestCertificate
multiple times with the same idempotency token within one hour, ACM recognizes that you are requesting only one certificate and will issue only one. If you change the idempotency token for each call, ACM recognizes that you are requesting multiple certificates.
sourcepub fn domain_validation_options(&self) -> Option<&[DomainValidationOption]>
pub fn domain_validation_options(&self) -> Option<&[DomainValidationOption]>
The domain name that you want ACM to use to send you emails so that you can validate domain ownership.
sourcepub fn options(&self) -> Option<&CertificateOptions>
pub fn options(&self) -> Option<&CertificateOptions>
Currently, you can use this parameter to specify whether to add the certificate to a certificate transparency log. Certificate transparency makes it possible to detect SSL/TLS certificates that have been mistakenly or maliciously issued. Certificates that have not been logged typically produce an error message in a browser. For more information, see Opting Out of Certificate Transparency Logging.
The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. If you do not provide an ARN and you are trying to request a private certificate, ACM will attempt to issue a public certificate. For more information about private CAs, see the Amazon Web Services Certificate Manager Private Certificate Authority (PCA) user guide. The ARN must have the following form:
arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
One or more resource tags to associate with the certificate.
Trait Implementations
sourceimpl Clone for RequestCertificateInput
impl Clone for RequestCertificateInput
sourcefn clone(&self) -> RequestCertificateInput
fn clone(&self) -> RequestCertificateInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for RequestCertificateInput
impl Debug for RequestCertificateInput
sourceimpl PartialEq<RequestCertificateInput> for RequestCertificateInput
impl PartialEq<RequestCertificateInput> for RequestCertificateInput
sourcefn eq(&self, other: &RequestCertificateInput) -> bool
fn eq(&self, other: &RequestCertificateInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RequestCertificateInput) -> bool
fn ne(&self, other: &RequestCertificateInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for RequestCertificateInput
Auto Trait Implementations
impl RefUnwindSafe for RequestCertificateInput
impl Send for RequestCertificateInput
impl Sync for RequestCertificateInput
impl Unpin for RequestCertificateInput
impl UnwindSafe for RequestCertificateInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
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
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more