pub struct CreateIntegrationResourcePropertyFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to CreateIntegrationResourceProperty.
This API can be used for setting up the ResourceProperty of the Glue connection (for the source) or Glue database ARN (for the target). These properties can include the role to access the connection or database. To set both source and target properties the same API needs to be invoked with the Glue connection ARN as ResourceArn with SourceProcessingProperties and the Glue database ARN as ResourceArn with TargetProcessingProperties respectively.
Implementations§
Source§impl CreateIntegrationResourcePropertyFluentBuilder
impl CreateIntegrationResourcePropertyFluentBuilder
Sourcepub fn as_input(&self) -> &CreateIntegrationResourcePropertyInputBuilder
pub fn as_input(&self) -> &CreateIntegrationResourcePropertyInputBuilder
Access the CreateIntegrationResourceProperty as a reference.
Sourcepub async fn send(
self,
) -> Result<CreateIntegrationResourcePropertyOutput, SdkError<CreateIntegrationResourcePropertyError, HttpResponse>>
pub async fn send( self, ) -> Result<CreateIntegrationResourcePropertyOutput, SdkError<CreateIntegrationResourcePropertyError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
Sourcepub fn customize(
self,
) -> CustomizableOperation<CreateIntegrationResourcePropertyOutput, CreateIntegrationResourcePropertyError, Self>
pub fn customize( self, ) -> CustomizableOperation<CreateIntegrationResourcePropertyOutput, CreateIntegrationResourcePropertyError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
Sourcepub fn resource_arn(self, input: impl Into<String>) -> Self
pub fn resource_arn(self, input: impl Into<String>) -> Self
The connection ARN of the source, or the database ARN of the target.
Sourcepub fn set_resource_arn(self, input: Option<String>) -> Self
pub fn set_resource_arn(self, input: Option<String>) -> Self
The connection ARN of the source, or the database ARN of the target.
Sourcepub fn get_resource_arn(&self) -> &Option<String>
pub fn get_resource_arn(&self) -> &Option<String>
The connection ARN of the source, or the database ARN of the target.
Sourcepub fn source_processing_properties(
self,
input: SourceProcessingProperties,
) -> Self
pub fn source_processing_properties( self, input: SourceProcessingProperties, ) -> Self
The resource properties associated with the integration source.
Sourcepub fn set_source_processing_properties(
self,
input: Option<SourceProcessingProperties>,
) -> Self
pub fn set_source_processing_properties( self, input: Option<SourceProcessingProperties>, ) -> Self
The resource properties associated with the integration source.
Sourcepub fn get_source_processing_properties(
&self,
) -> &Option<SourceProcessingProperties>
pub fn get_source_processing_properties( &self, ) -> &Option<SourceProcessingProperties>
The resource properties associated with the integration source.
Sourcepub fn target_processing_properties(
self,
input: TargetProcessingProperties,
) -> Self
pub fn target_processing_properties( self, input: TargetProcessingProperties, ) -> Self
The resource properties associated with the integration target.
Sourcepub fn set_target_processing_properties(
self,
input: Option<TargetProcessingProperties>,
) -> Self
pub fn set_target_processing_properties( self, input: Option<TargetProcessingProperties>, ) -> Self
The resource properties associated with the integration target.
Sourcepub fn get_target_processing_properties(
&self,
) -> &Option<TargetProcessingProperties>
pub fn get_target_processing_properties( &self, ) -> &Option<TargetProcessingProperties>
The resource properties associated with the integration target.
Appends an item to Tags.
To override the contents of this collection use set_tags.
Metadata assigned to the resource consisting of a list of key-value pairs.
Metadata assigned to the resource consisting of a list of key-value pairs.
Metadata assigned to the resource consisting of a list of key-value pairs.
Trait Implementations§
Source§impl Clone for CreateIntegrationResourcePropertyFluentBuilder
impl Clone for CreateIntegrationResourcePropertyFluentBuilder
Source§fn clone(&self) -> CreateIntegrationResourcePropertyFluentBuilder
fn clone(&self) -> CreateIntegrationResourcePropertyFluentBuilder
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for CreateIntegrationResourcePropertyFluentBuilder
impl !RefUnwindSafe for CreateIntegrationResourcePropertyFluentBuilder
impl Send for CreateIntegrationResourcePropertyFluentBuilder
impl Sync for CreateIntegrationResourcePropertyFluentBuilder
impl Unpin for CreateIntegrationResourcePropertyFluentBuilder
impl UnsafeUnpin for CreateIntegrationResourcePropertyFluentBuilder
impl !UnwindSafe for CreateIntegrationResourcePropertyFluentBuilder
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§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