Struct aws_sdk_redshift::operation::create_custom_domain_association::CreateCustomDomainAssociationOutput
source · #[non_exhaustive]pub struct CreateCustomDomainAssociationOutput {
pub custom_domain_name: Option<String>,
pub custom_domain_certificate_arn: Option<String>,
pub cluster_identifier: Option<String>,
pub custom_domain_cert_expiry_time: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.custom_domain_name: Option<String>
The custom domain name for the association result.
custom_domain_certificate_arn: Option<String>
The Amazon Resource Name (ARN) for the certificate associated with the custom domain name.
cluster_identifier: Option<String>
The identifier of the cluster that the custom domain is associated with.
custom_domain_cert_expiry_time: Option<String>
The expiration time for the certificate for the custom domain.
Implementations§
source§impl CreateCustomDomainAssociationOutput
impl CreateCustomDomainAssociationOutput
sourcepub fn custom_domain_name(&self) -> Option<&str>
pub fn custom_domain_name(&self) -> Option<&str>
The custom domain name for the association result.
sourcepub fn custom_domain_certificate_arn(&self) -> Option<&str>
pub fn custom_domain_certificate_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the certificate associated with the custom domain name.
sourcepub fn cluster_identifier(&self) -> Option<&str>
pub fn cluster_identifier(&self) -> Option<&str>
The identifier of the cluster that the custom domain is associated with.
sourcepub fn custom_domain_cert_expiry_time(&self) -> Option<&str>
pub fn custom_domain_cert_expiry_time(&self) -> Option<&str>
The expiration time for the certificate for the custom domain.
source§impl CreateCustomDomainAssociationOutput
impl CreateCustomDomainAssociationOutput
sourcepub fn builder() -> CreateCustomDomainAssociationOutputBuilder
pub fn builder() -> CreateCustomDomainAssociationOutputBuilder
Creates a new builder-style object to manufacture CreateCustomDomainAssociationOutput
.
Trait Implementations§
source§impl Clone for CreateCustomDomainAssociationOutput
impl Clone for CreateCustomDomainAssociationOutput
source§fn clone(&self) -> CreateCustomDomainAssociationOutput
fn clone(&self) -> CreateCustomDomainAssociationOutput
Returns a copy 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 PartialEq for CreateCustomDomainAssociationOutput
impl PartialEq for CreateCustomDomainAssociationOutput
source§fn eq(&self, other: &CreateCustomDomainAssociationOutput) -> bool
fn eq(&self, other: &CreateCustomDomainAssociationOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateCustomDomainAssociationOutput
impl RequestId for CreateCustomDomainAssociationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateCustomDomainAssociationOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateCustomDomainAssociationOutput
impl Send for CreateCustomDomainAssociationOutput
impl Sync for CreateCustomDomainAssociationOutput
impl Unpin for CreateCustomDomainAssociationOutput
impl UnwindSafe for CreateCustomDomainAssociationOutput
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