#[non_exhaustive]pub struct CreateTrustStoreInput {
pub name: Option<String>,
pub ca_certificates_bundle_s3_bucket: Option<String>,
pub ca_certificates_bundle_s3_key: Option<String>,
pub ca_certificates_bundle_s3_object_version: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the trust store.
This name must be unique per region and cannot be changed after creation.
ca_certificates_bundle_s3_bucket: Option<String>
The Amazon S3 bucket for the ca certificates bundle.
ca_certificates_bundle_s3_key: Option<String>
The Amazon S3 path for the ca certificates bundle.
ca_certificates_bundle_s3_object_version: Option<String>
The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used.
The tags to assign to the trust store.
Implementations§
source§impl CreateTrustStoreInput
impl CreateTrustStoreInput
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the trust store.
This name must be unique per region and cannot be changed after creation.
sourcepub fn ca_certificates_bundle_s3_bucket(&self) -> Option<&str>
pub fn ca_certificates_bundle_s3_bucket(&self) -> Option<&str>
The Amazon S3 bucket for the ca certificates bundle.
sourcepub fn ca_certificates_bundle_s3_key(&self) -> Option<&str>
pub fn ca_certificates_bundle_s3_key(&self) -> Option<&str>
The Amazon S3 path for the ca certificates bundle.
sourcepub fn ca_certificates_bundle_s3_object_version(&self) -> Option<&str>
pub fn ca_certificates_bundle_s3_object_version(&self) -> Option<&str>
The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used.
The tags to assign to the trust store.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateTrustStoreInput
impl CreateTrustStoreInput
sourcepub fn builder() -> CreateTrustStoreInputBuilder
pub fn builder() -> CreateTrustStoreInputBuilder
Creates a new builder-style object to manufacture CreateTrustStoreInput
.
Trait Implementations§
source§impl Clone for CreateTrustStoreInput
impl Clone for CreateTrustStoreInput
source§fn clone(&self) -> CreateTrustStoreInput
fn clone(&self) -> CreateTrustStoreInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateTrustStoreInput
impl Debug for CreateTrustStoreInput
source§impl PartialEq for CreateTrustStoreInput
impl PartialEq for CreateTrustStoreInput
impl StructuralPartialEq for CreateTrustStoreInput
Auto Trait Implementations§
impl Freeze for CreateTrustStoreInput
impl RefUnwindSafe for CreateTrustStoreInput
impl Send for CreateTrustStoreInput
impl Sync for CreateTrustStoreInput
impl Unpin for CreateTrustStoreInput
impl UnwindSafe for CreateTrustStoreInput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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