Struct aws_sdk_iot::types::OpenSearchAction
source · #[non_exhaustive]pub struct OpenSearchAction {
pub role_arn: String,
pub endpoint: String,
pub index: String,
pub type: String,
pub id: String,
}
Expand description
Describes an action that writes data to an Amazon OpenSearch Service domain.
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.role_arn: String
The IAM role ARN that has access to OpenSearch.
endpoint: String
The endpoint of your OpenSearch domain.
index: String
The OpenSearch index where you want to store your data.
type: String
The type of document you are storing.
id: String
The unique identifier for the document you are storing.
Implementations§
source§impl OpenSearchAction
impl OpenSearchAction
sourcepub fn builder() -> OpenSearchActionBuilder
pub fn builder() -> OpenSearchActionBuilder
Creates a new builder-style object to manufacture OpenSearchAction
.
Trait Implementations§
source§impl Clone for OpenSearchAction
impl Clone for OpenSearchAction
source§fn clone(&self) -> OpenSearchAction
fn clone(&self) -> OpenSearchAction
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 Debug for OpenSearchAction
impl Debug for OpenSearchAction
source§impl PartialEq for OpenSearchAction
impl PartialEq for OpenSearchAction
source§fn eq(&self, other: &OpenSearchAction) -> bool
fn eq(&self, other: &OpenSearchAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OpenSearchAction
Auto Trait Implementations§
impl Freeze for OpenSearchAction
impl RefUnwindSafe for OpenSearchAction
impl Send for OpenSearchAction
impl Sync for OpenSearchAction
impl Unpin for OpenSearchAction
impl UnwindSafe for OpenSearchAction
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
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>
Creates a shared type from an unshared type.