Struct aws_sdk_redshift::operation::create_endpoint_access::builders::CreateEndpointAccessInputBuilder
source · #[non_exhaustive]pub struct CreateEndpointAccessInputBuilder { /* private fields */ }
Expand description
A builder for CreateEndpointAccessInput
.
Implementations§
source§impl CreateEndpointAccessInputBuilder
impl CreateEndpointAccessInputBuilder
sourcepub fn cluster_identifier(self, input: impl Into<String>) -> Self
pub fn cluster_identifier(self, input: impl Into<String>) -> Self
The cluster identifier of the cluster to access.
sourcepub fn set_cluster_identifier(self, input: Option<String>) -> Self
pub fn set_cluster_identifier(self, input: Option<String>) -> Self
The cluster identifier of the cluster to access.
sourcepub fn get_cluster_identifier(&self) -> &Option<String>
pub fn get_cluster_identifier(&self) -> &Option<String>
The cluster identifier of the cluster to access.
sourcepub fn resource_owner(self, input: impl Into<String>) -> Self
pub fn resource_owner(self, input: impl Into<String>) -> Self
The Amazon Web Services account ID of the owner of the cluster. This is only required if the cluster is in another Amazon Web Services account.
sourcepub fn set_resource_owner(self, input: Option<String>) -> Self
pub fn set_resource_owner(self, input: Option<String>) -> Self
The Amazon Web Services account ID of the owner of the cluster. This is only required if the cluster is in another Amazon Web Services account.
sourcepub fn get_resource_owner(&self) -> &Option<String>
pub fn get_resource_owner(&self) -> &Option<String>
The Amazon Web Services account ID of the owner of the cluster. This is only required if the cluster is in another Amazon Web Services account.
sourcepub fn endpoint_name(self, input: impl Into<String>) -> Self
pub fn endpoint_name(self, input: impl Into<String>) -> Self
The Redshift-managed VPC endpoint name.
An endpoint name must contain 1-30 characters. Valid characters are A-Z, a-z, 0-9, and hyphen(-). The first character must be a letter. The name can't contain two consecutive hyphens or end with a hyphen.
This field is required.sourcepub fn set_endpoint_name(self, input: Option<String>) -> Self
pub fn set_endpoint_name(self, input: Option<String>) -> Self
The Redshift-managed VPC endpoint name.
An endpoint name must contain 1-30 characters. Valid characters are A-Z, a-z, 0-9, and hyphen(-). The first character must be a letter. The name can't contain two consecutive hyphens or end with a hyphen.
sourcepub fn get_endpoint_name(&self) -> &Option<String>
pub fn get_endpoint_name(&self) -> &Option<String>
The Redshift-managed VPC endpoint name.
An endpoint name must contain 1-30 characters. Valid characters are A-Z, a-z, 0-9, and hyphen(-). The first character must be a letter. The name can't contain two consecutive hyphens or end with a hyphen.
sourcepub fn subnet_group_name(self, input: impl Into<String>) -> Self
pub fn subnet_group_name(self, input: impl Into<String>) -> Self
The subnet group from which Amazon Redshift chooses the subnet to deploy the endpoint.
This field is required.sourcepub fn set_subnet_group_name(self, input: Option<String>) -> Self
pub fn set_subnet_group_name(self, input: Option<String>) -> Self
The subnet group from which Amazon Redshift chooses the subnet to deploy the endpoint.
sourcepub fn get_subnet_group_name(&self) -> &Option<String>
pub fn get_subnet_group_name(&self) -> &Option<String>
The subnet group from which Amazon Redshift chooses the subnet to deploy the endpoint.
sourcepub fn vpc_security_group_ids(self, input: impl Into<String>) -> Self
pub fn vpc_security_group_ids(self, input: impl Into<String>) -> Self
Appends an item to vpc_security_group_ids
.
To override the contents of this collection use set_vpc_security_group_ids
.
The security group that defines the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.
sourcepub fn set_vpc_security_group_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_vpc_security_group_ids(self, input: Option<Vec<String>>) -> Self
The security group that defines the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.
sourcepub fn get_vpc_security_group_ids(&self) -> &Option<Vec<String>>
pub fn get_vpc_security_group_ids(&self) -> &Option<Vec<String>>
The security group that defines the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.
sourcepub fn build(self) -> Result<CreateEndpointAccessInput, BuildError>
pub fn build(self) -> Result<CreateEndpointAccessInput, BuildError>
Consumes the builder and constructs a CreateEndpointAccessInput
.
source§impl CreateEndpointAccessInputBuilder
impl CreateEndpointAccessInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<CreateEndpointAccessOutput, SdkError<CreateEndpointAccessError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<CreateEndpointAccessOutput, SdkError<CreateEndpointAccessError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateEndpointAccessInputBuilder
impl Clone for CreateEndpointAccessInputBuilder
source§fn clone(&self) -> CreateEndpointAccessInputBuilder
fn clone(&self) -> CreateEndpointAccessInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateEndpointAccessInputBuilder
impl Default for CreateEndpointAccessInputBuilder
source§fn default() -> CreateEndpointAccessInputBuilder
fn default() -> CreateEndpointAccessInputBuilder
source§impl PartialEq for CreateEndpointAccessInputBuilder
impl PartialEq for CreateEndpointAccessInputBuilder
source§fn eq(&self, other: &CreateEndpointAccessInputBuilder) -> bool
fn eq(&self, other: &CreateEndpointAccessInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateEndpointAccessInputBuilder
Auto Trait Implementations§
impl Freeze for CreateEndpointAccessInputBuilder
impl RefUnwindSafe for CreateEndpointAccessInputBuilder
impl Send for CreateEndpointAccessInputBuilder
impl Sync for CreateEndpointAccessInputBuilder
impl Unpin for CreateEndpointAccessInputBuilder
impl UnwindSafe for CreateEndpointAccessInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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