CfnEnvironmentProps
- class aws_cdk.aws_finspace.CfnEnvironmentProps(*, name, data_bundles=None, description=None, federation_mode=None, federation_parameters=None, kms_key_id=None, superuser_parameters=None, tags=None)
Bases:
object
Properties for defining a
CfnEnvironment
.- Parameters:
name (
str
) – The name of the FinSpace environment.data_bundles (
Optional
[Sequence
[str
]]) – (deprecated) ARNs of FinSpace Data Bundles to install.description (
Optional
[str
]) – The description of the FinSpace environment.federation_mode (
Optional
[str
]) – The authentication mode for the environment.federation_parameters (
Union
[IResolvable
,FederationParametersProperty
,Dict
[str
,Any
],None
]) – Configuration information when authentication mode is FEDERATED.kms_key_id (
Optional
[str
]) – The KMS key id used to encrypt in the FinSpace environment.superuser_parameters (
Union
[IResolvable
,SuperuserParametersProperty
,Dict
[str
,Any
],None
]) – Configuration information for the superuser.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – An array of key-value pairs to apply to this resource.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-finspace-environment.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_finspace as finspace cfn_environment_props = finspace.CfnEnvironmentProps( name="name", # the properties below are optional data_bundles=["dataBundles"], description="description", federation_mode="federationMode", federation_parameters=finspace.CfnEnvironment.FederationParametersProperty( application_call_back_url="applicationCallBackUrl", attribute_map=[finspace.CfnEnvironment.AttributeMapItemsProperty( key="key", value="value" )], federation_provider_name="federationProviderName", federation_urn="federationUrn", saml_metadata_document="samlMetadataDocument", saml_metadata_url="samlMetadataUrl" ), kms_key_id="kmsKeyId", superuser_parameters=finspace.CfnEnvironment.SuperuserParametersProperty( email_address="emailAddress", first_name="firstName", last_name="lastName" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- data_bundles
(deprecated) ARNs of FinSpace Data Bundles to install.
- Deprecated:
this property has been deprecated
- See:
- Stability:
deprecated
- description
The description of the FinSpace environment.
- federation_mode
The authentication mode for the environment.
- federation_parameters
Configuration information when authentication mode is FEDERATED.
- kms_key_id
The KMS key id used to encrypt in the FinSpace environment.
- name
The name of the FinSpace environment.
- superuser_parameters
Configuration information for the superuser.
- tags
An array of key-value pairs to apply to this resource.