Struct aws_sdk_redshift::operation::describe_custom_domain_associations::builders::DescribeCustomDomainAssociationsInputBuilder
source · #[non_exhaustive]pub struct DescribeCustomDomainAssociationsInputBuilder { /* private fields */ }Expand description
A builder for DescribeCustomDomainAssociationsInput.
Implementations§
source§impl DescribeCustomDomainAssociationsInputBuilder
impl DescribeCustomDomainAssociationsInputBuilder
sourcepub fn custom_domain_name(self, input: impl Into<String>) -> Self
pub fn custom_domain_name(self, input: impl Into<String>) -> Self
The custom domain name for the custom domain association.
sourcepub fn set_custom_domain_name(self, input: Option<String>) -> Self
pub fn set_custom_domain_name(self, input: Option<String>) -> Self
The custom domain name for the custom domain association.
sourcepub fn get_custom_domain_name(&self) -> &Option<String>
pub fn get_custom_domain_name(&self) -> &Option<String>
The custom domain name for the custom domain association.
sourcepub fn custom_domain_certificate_arn(self, input: impl Into<String>) -> Self
pub fn custom_domain_certificate_arn(self, input: impl Into<String>) -> Self
The certificate Amazon Resource Name (ARN) for the custom domain association.
sourcepub fn set_custom_domain_certificate_arn(self, input: Option<String>) -> Self
pub fn set_custom_domain_certificate_arn(self, input: Option<String>) -> Self
The certificate Amazon Resource Name (ARN) for the custom domain association.
sourcepub fn get_custom_domain_certificate_arn(&self) -> &Option<String>
pub fn get_custom_domain_certificate_arn(&self) -> &Option<String>
The certificate Amazon Resource Name (ARN) for the custom domain association.
sourcepub fn max_records(self, input: i32) -> Self
pub fn max_records(self, input: i32) -> Self
The maximum records setting for the associated custom domain.
sourcepub fn set_max_records(self, input: Option<i32>) -> Self
pub fn set_max_records(self, input: Option<i32>) -> Self
The maximum records setting for the associated custom domain.
sourcepub fn get_max_records(&self) -> &Option<i32>
pub fn get_max_records(&self) -> &Option<i32>
The maximum records setting for the associated custom domain.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
The marker for the custom domain association.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
The marker for the custom domain association.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
The marker for the custom domain association.
sourcepub fn build(self) -> Result<DescribeCustomDomainAssociationsInput, BuildError>
pub fn build(self) -> Result<DescribeCustomDomainAssociationsInput, BuildError>
Consumes the builder and constructs a DescribeCustomDomainAssociationsInput.
source§impl DescribeCustomDomainAssociationsInputBuilder
impl DescribeCustomDomainAssociationsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DescribeCustomDomainAssociationsOutput, SdkError<DescribeCustomDomainAssociationsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DescribeCustomDomainAssociationsOutput, SdkError<DescribeCustomDomainAssociationsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeCustomDomainAssociationsInputBuilder
impl Clone for DescribeCustomDomainAssociationsInputBuilder
source§fn clone(&self) -> DescribeCustomDomainAssociationsInputBuilder
fn clone(&self) -> DescribeCustomDomainAssociationsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeCustomDomainAssociationsInputBuilder
impl Default for DescribeCustomDomainAssociationsInputBuilder
source§fn default() -> DescribeCustomDomainAssociationsInputBuilder
fn default() -> DescribeCustomDomainAssociationsInputBuilder
source§impl PartialEq for DescribeCustomDomainAssociationsInputBuilder
impl PartialEq for DescribeCustomDomainAssociationsInputBuilder
source§fn eq(&self, other: &DescribeCustomDomainAssociationsInputBuilder) -> bool
fn eq(&self, other: &DescribeCustomDomainAssociationsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeCustomDomainAssociationsInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeCustomDomainAssociationsInputBuilder
impl RefUnwindSafe for DescribeCustomDomainAssociationsInputBuilder
impl Send for DescribeCustomDomainAssociationsInputBuilder
impl Sync for DescribeCustomDomainAssociationsInputBuilder
impl Unpin for DescribeCustomDomainAssociationsInputBuilder
impl UnwindSafe for DescribeCustomDomainAssociationsInputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more