pub struct UpdateSignalCatalog { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateSignalCatalog
.
Updates a signal catalog.
Implementations§
source§impl UpdateSignalCatalog
impl UpdateSignalCatalog
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateSignalCatalog, AwsResponseRetryClassifier>, SdkError<UpdateSignalCatalogError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateSignalCatalog, AwsResponseRetryClassifier>, SdkError<UpdateSignalCatalogError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateSignalCatalogOutput, SdkError<UpdateSignalCatalogError>>
pub async fn send(
self
) -> Result<UpdateSignalCatalogOutput, SdkError<UpdateSignalCatalogError>>
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 set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the signal catalog to update.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A brief description of the signal catalog to update.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A brief description of the signal catalog to update.
sourcepub fn nodes_to_add(self, input: Node) -> Self
pub fn nodes_to_add(self, input: Node) -> Self
Appends an item to nodesToAdd
.
To override the contents of this collection use set_nodes_to_add
.
A list of information about nodes to add to the signal catalog.
sourcepub fn set_nodes_to_add(self, input: Option<Vec<Node>>) -> Self
pub fn set_nodes_to_add(self, input: Option<Vec<Node>>) -> Self
A list of information about nodes to add to the signal catalog.
sourcepub fn nodes_to_update(self, input: Node) -> Self
pub fn nodes_to_update(self, input: Node) -> Self
Appends an item to nodesToUpdate
.
To override the contents of this collection use set_nodes_to_update
.
A list of information about nodes to update in the signal catalog.
sourcepub fn set_nodes_to_update(self, input: Option<Vec<Node>>) -> Self
pub fn set_nodes_to_update(self, input: Option<Vec<Node>>) -> Self
A list of information about nodes to update in the signal catalog.
sourcepub fn nodes_to_remove(self, input: impl Into<String>) -> Self
pub fn nodes_to_remove(self, input: impl Into<String>) -> Self
Appends an item to nodesToRemove
.
To override the contents of this collection use set_nodes_to_remove
.
A list of fullyQualifiedName
of nodes to remove from the signal catalog.
sourcepub fn set_nodes_to_remove(self, input: Option<Vec<String>>) -> Self
pub fn set_nodes_to_remove(self, input: Option<Vec<String>>) -> Self
A list of fullyQualifiedName
of nodes to remove from the signal catalog.
Trait Implementations§
source§impl Clone for UpdateSignalCatalog
impl Clone for UpdateSignalCatalog
source§fn clone(&self) -> UpdateSignalCatalog
fn clone(&self) -> UpdateSignalCatalog
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more