Create Portal
| workspacesweb_create_portal | R Documentation |
Creates a web portal¶
Description¶
Creates a web portal.
Usage¶
workspacesweb_create_portal(additionalEncryptionContext,
authenticationType, clientToken, customerManagedKey, displayName,
instanceType, maxConcurrentSessions, tags)
Arguments¶
additionalEncryptionContextThe additional encryption context of the portal.
authenticationTypeThe type of authentication integration points used when signing into the web portal. Defaults to
Standard.Standardweb portals are authenticated directly through your identity provider. You need to callcreate_identity_providerto integrate your identity provider with your web portal. User and group access to your web portal is controlled through your identity provider.IAM Identity Centerweb portals are authenticated through IAM Identity Center (successor to Single Sign-On). Identity sources (including external identity provider integration), plus user and group access to your web portal, can be configured in the IAM Identity Center.clientTokenA unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token returns the result from the original successful request.
If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK.
customerManagedKeyThe customer managed key of the web portal.
displayNameThe name of the web portal. This is not visible to users who log into the web portal.
instanceTypeThe type and resources of the underlying instance.
maxConcurrentSessionsThe maximum number of concurrent sessions for the portal.
tagsThe tags to add to the web portal. A tag is a key-value pair.
Value¶
A list with the following syntax:
Request syntax¶
svc$create_portal(
additionalEncryptionContext = list(
"string"
),
authenticationType = "Standard"|"IAM_Identity_Center",
clientToken = "string",
customerManagedKey = "string",
displayName = "string",
instanceType = "standard.regular"|"standard.large"|"standard.xlarge",
maxConcurrentSessions = 123,
tags = list(
list(
Key = "string",
Value = "string"
)
)
)