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¶
additionalEncryptionContext |
The additional encryption context of the portal. |
authenticationType |
The type of authentication integration points used when signing
into the web portal. Defaults to
|
clientToken |
A 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. |
customerManagedKey |
The customer managed key of the web portal. |
displayName |
The name of the web portal. This is not visible to users who log into the web portal. |
instanceType |
The type and resources of the underlying instance. |
maxConcurrentSessions |
The maximum number of concurrent sessions for the portal. |
tags |
The tags to add to the web portal. A tag is a key-value pair. |
Value¶
A list with the following syntax:
list(
portalArn = "string",
portalEndpoint = "string"
)
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"
)
)
)