interface CfnPortalProps
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_workspacesweb.CfnPortalProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspacesweb#CfnPortalProps |
![]() | software.amazon.awscdk.services.workspacesweb.CfnPortalProps |
![]() | aws_cdk.aws_workspacesweb.CfnPortalProps |
![]() | aws-cdk-lib » aws_workspacesweb » CfnPortalProps |
Properties for defining a CfnPortal
.
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 { aws_workspacesweb as workspacesweb } from 'aws-cdk-lib';
const cfnPortalProps: workspacesweb.CfnPortalProps = {
additionalEncryptionContext: {
additionalEncryptionContextKey: 'additionalEncryptionContext',
},
authenticationType: 'authenticationType',
browserSettingsArn: 'browserSettingsArn',
customerManagedKey: 'customerManagedKey',
dataProtectionSettingsArn: 'dataProtectionSettingsArn',
displayName: 'displayName',
instanceType: 'instanceType',
ipAccessSettingsArn: 'ipAccessSettingsArn',
maxConcurrentSessions: 123,
networkSettingsArn: 'networkSettingsArn',
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. |
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
Standard
portal with noIdentityProvider
resource.Retrieve the SP metadata using
Fn:GetAtt
, the WorkSpaces Secure Browser console, or by the calling theGetPortalServiceProviderMetadata
API.Submit the data to your IdP.
Add an
IdentityProvider
resource 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.
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.