#[non_exhaustive]pub struct CreateEnvironmentInput {
pub name: Option<String>,
pub description: Option<String>,
pub kms_key_id: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub federation_mode: Option<FederationMode>,
pub federation_parameters: Option<FederationParameters>,
pub superuser_parameters: Option<SuperuserParameters>,
pub data_bundles: Option<Vec<String>>,
}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 FinSpace environment to be created.
description: Option<String>The description of the FinSpace environment to be created.
kms_key_id: Option<String>The KMS key id to encrypt your data in the FinSpace environment.
Add tags to your FinSpace environment.
federation_mode: Option<FederationMode>Authentication mode for the environment.
-
FEDERATED- Users access FinSpace through Single Sign On (SSO) via your Identity provider. -
LOCAL- Users access FinSpace via email and password managed within the FinSpace environment.
federation_parameters: Option<FederationParameters>Configuration information when authentication mode is FEDERATED.
superuser_parameters: Option<SuperuserParameters>Configuration information for the superuser.
data_bundles: Option<Vec<String>>The list of Amazon Resource Names (ARN) of the data bundles to install. Currently supported data bundle ARNs:
-
arn:aws:finspace:${Region}::data-bundle/capital-markets-sample- Contains sample Capital Markets datasets, categories and controlled vocabularies. -
arn:aws:finspace:${Region}::data-bundle/taq(default) - Contains trades and quotes data in addition to sample Capital Markets data.
Implementations§
source§impl CreateEnvironmentInput
impl CreateEnvironmentInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the FinSpace environment to be created.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The KMS key id to encrypt your data in the FinSpace environment.
Add tags to your FinSpace environment.
sourcepub fn federation_mode(&self) -> Option<&FederationMode>
pub fn federation_mode(&self) -> Option<&FederationMode>
Authentication mode for the environment.
-
FEDERATED- Users access FinSpace through Single Sign On (SSO) via your Identity provider. -
LOCAL- Users access FinSpace via email and password managed within the FinSpace environment.
sourcepub fn federation_parameters(&self) -> Option<&FederationParameters>
pub fn federation_parameters(&self) -> Option<&FederationParameters>
Configuration information when authentication mode is FEDERATED.
sourcepub fn superuser_parameters(&self) -> Option<&SuperuserParameters>
pub fn superuser_parameters(&self) -> Option<&SuperuserParameters>
Configuration information for the superuser.
sourcepub fn data_bundles(&self) -> &[String]
pub fn data_bundles(&self) -> &[String]
The list of Amazon Resource Names (ARN) of the data bundles to install. Currently supported data bundle ARNs:
-
arn:aws:finspace:${Region}::data-bundle/capital-markets-sample- Contains sample Capital Markets datasets, categories and controlled vocabularies. -
arn:aws:finspace:${Region}::data-bundle/taq(default) - Contains trades and quotes data in addition to sample Capital Markets data.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .data_bundles.is_none().
source§impl CreateEnvironmentInput
impl CreateEnvironmentInput
sourcepub fn builder() -> CreateEnvironmentInputBuilder
pub fn builder() -> CreateEnvironmentInputBuilder
Creates a new builder-style object to manufacture CreateEnvironmentInput.
Trait Implementations§
source§impl Clone for CreateEnvironmentInput
impl Clone for CreateEnvironmentInput
source§fn clone(&self) -> CreateEnvironmentInput
fn clone(&self) -> CreateEnvironmentInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateEnvironmentInput
impl Debug for CreateEnvironmentInput
source§impl PartialEq for CreateEnvironmentInput
impl PartialEq for CreateEnvironmentInput
source§fn eq(&self, other: &CreateEnvironmentInput) -> bool
fn eq(&self, other: &CreateEnvironmentInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateEnvironmentInput
Auto Trait Implementations§
impl Freeze for CreateEnvironmentInput
impl RefUnwindSafe for CreateEnvironmentInput
impl Send for CreateEnvironmentInput
impl Sync for CreateEnvironmentInput
impl Unpin for CreateEnvironmentInput
impl UnwindSafe for CreateEnvironmentInput
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> 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