interface CfnPortalMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnPortalMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnPortalMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnPortalMixinProps |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnPortalMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnPortalMixinProps |
Properties for CfnPortalPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-portal.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as workspacesweb_mixins } from '@aws-cdk/mixins-preview/aws-workspacesweb';
const cfnPortalMixinProps: workspacesweb_mixins.CfnPortalMixinProps = {
additionalEncryptionContext: {
additionalEncryptionContextKey: 'additionalEncryptionContext',
},
authenticationType: 'authenticationType',
browserSettingsArn: 'browserSettingsArn',
customerManagedKey: 'customerManagedKey',
dataProtectionSettingsArn: 'dataProtectionSettingsArn',
displayName: 'displayName',
instanceType: 'instanceType',
ipAccessSettingsArn: 'ipAccessSettingsArn',
maxConcurrentSessions: 123,
networkSettingsArn: 'networkSettingsArn',
sessionLoggerArn: 'sessionLoggerArn',
tags: [{
key: 'key',
value: 'value',
}],
trustStoreArn: 'trustStoreArn',
userAccessLoggingSettingsArn: 'userAccessLoggingSettingsArn',
userSettingsArn: 'userSettingsArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | { [string]: string } | IResolvable | The additional encryption context of the portal. |
| authentication | string | The type of authentication integration points used when signing into the web portal. Defaults to Standard . |
| browser | string | The ARN of the browser settings that is associated with this web portal. |
| customer | string | The customer managed key of the web portal. |
| data | string | The ARN of the data protection settings. |
| display | string | The name of the web portal. |
| instance | string | The type and resources of the underlying instance. |
| ip | string | The ARN of the IP access settings that is associated with the web portal. |
| max | number | The maximum number of concurrent sessions for the portal. |
| network | string | The ARN of the network settings that is associated with the web portal. |
| session | string | The ARN of the session logger that is associated with the portal. |
| tags? | Cfn[] | The tags to add to the web portal. |
| trust | string | The ARN of the trust store that is associated with the web portal. |
| user | string | The ARN of the user access logging settings that is associated with the web portal. |
| user | string | The ARN of the user settings that is associated with the web portal. |
additionalEncryptionContext?
Type:
{ [string]: string } | IResolvable
(optional)
The additional encryption context of the portal.
authenticationType?
Type:
string
(optional)
The type of authentication integration points used when signing into the web portal. Defaults to Standard .
Standard web portals are authenticated directly through your identity provider (IdP). User and group access to your web portal is controlled through your IdP. You need to include an IdP resource in your template to integrate your IdP with your web portal. Completing the configuration for your IdP requires exchanging WorkSpaces Secure Browser’s SP metadata with your IdP’s IdP metadata. If your IdP requires the SP metadata first before returning the IdP metadata, you should follow these steps:
Create and deploy a CloudFormation template with a
Standardportal with noIdentityProviderresource.Retrieve the SP metadata using
Fn:GetAtt, the WorkSpaces Secure Browser console, or by the calling theGetPortalServiceProviderMetadataAPI.Submit the data to your IdP.
Add an
IdentityProviderresource to your CloudFormation template.
IAM Identity Center web portals are authenticated through AWS IAM Identity Center . They provide additional features, such as IdP-initiated authentication. Identity sources (including external identity provider integration) and other identity provider information must be configured in IAM Identity Center . User and group assignment must be done through the WorkSpaces Secure Browser console. These cannot be configured in CloudFormation.
browserSettingsArn?
Type:
string
(optional)
The ARN of the browser settings that is associated with this web portal.
customerManagedKey?
Type:
string
(optional)
The customer managed key of the web portal.
Pattern : ^arn:[\w+=\/,.@-]+:kms:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:key\/[a-zA-Z0-9-]+$
dataProtectionSettingsArn?
Type:
string
(optional)
The ARN of the data protection settings.
displayName?
Type:
string
(optional)
The name of the web portal.
instanceType?
Type:
string
(optional)
The type and resources of the underlying instance.
ipAccessSettingsArn?
Type:
string
(optional)
The ARN of the IP access settings that is associated with the web portal.
maxConcurrentSessions?
Type:
number
(optional)
The maximum number of concurrent sessions for the portal.
networkSettingsArn?
Type:
string
(optional)
The ARN of the network settings that is associated with the web portal.
sessionLoggerArn?
Type:
string
(optional)
The ARN of the session logger that is associated with the portal.
tags?
Type:
Cfn[]
(optional)
The tags to add to the web portal.
A tag is a key-value pair.
trustStoreArn?
Type:
string
(optional)
The ARN of the trust store that is associated with the web portal.
userAccessLoggingSettingsArn?
Type:
string
(optional)
The ARN of the user access logging settings that is associated with the web portal.
userSettingsArn?
Type:
string
(optional)
The ARN of the user settings that is associated with the web portal.

.NET
Go
Java
Python
TypeScript