interface CfnEnvironmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FinSpace.Mixins.CfnEnvironmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfinspace/mixins#CfnEnvironmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.finspace.mixins.CfnEnvironmentMixinProps |
Python | aws_cdk.mixins_preview.aws_finspace.mixins.CfnEnvironmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_finspace » mixins » CfnEnvironmentMixinProps |
Properties for CfnEnvironmentPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-finspace-environment.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as finspace_mixins } from '@aws-cdk/mixins-preview/aws-finspace';
const cfnEnvironmentMixinProps: finspace_mixins.CfnEnvironmentMixinProps = {
dataBundles: ['dataBundles'],
description: 'description',
federationMode: 'federationMode',
federationParameters: {
applicationCallBackUrl: 'applicationCallBackUrl',
attributeMap: [{
key: 'key',
value: 'value',
}],
federationProviderName: 'federationProviderName',
federationUrn: 'federationUrn',
samlMetadataDocument: 'samlMetadataDocument',
samlMetadataUrl: 'samlMetadataUrl',
},
kmsKeyId: 'kmsKeyId',
name: 'name',
superuserParameters: {
emailAddress: 'emailAddress',
firstName: 'firstName',
lastName: 'lastName',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string[] | ARNs of FinSpace Data Bundles to install. |
| description? | string | The description of the FinSpace environment. |
| federation | string | The authentication mode for the environment. |
| federation | IResolvable | Federation | Configuration information when authentication mode is FEDERATED. |
| kms | string | The KMS key id used to encrypt in the FinSpace environment. |
| name? | string | The name of the FinSpace environment. |
| superuser | IResolvable | Superuser | Configuration information for the superuser. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
dataBundles?
⚠️ Deprecated: this property has been deprecated
Type:
string[]
(optional)
ARNs of FinSpace Data Bundles to install.
description?
Type:
string
(optional)
The description of the FinSpace environment.
federationMode?
Type:
string
(optional)
The authentication mode for the environment.
federationParameters?
Type:
IResolvable | Federation
(optional)
Configuration information when authentication mode is FEDERATED.
kmsKeyId?
Type:
string
(optional)
The KMS key id used to encrypt in the FinSpace environment.
name?
Type:
string
(optional)
The name of the FinSpace environment.
superuserParameters?
Type:
IResolvable | Superuser
(optional)
Configuration information for the superuser.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript