interface ContentRedirectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppStream.CfnStack.ContentRedirectionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappstream#CfnStack_ContentRedirectionProperty |
Java | software.amazon.awscdk.services.appstream.CfnStack.ContentRedirectionProperty |
Python | aws_cdk.aws_appstream.CfnStack.ContentRedirectionProperty |
TypeScript | aws-cdk-lib » aws_appstream » CfnStack » ContentRedirectionProperty |
The content redirection settings for the stack.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appstream as appstream } from 'aws-cdk-lib';
const contentRedirectionProperty: appstream.CfnStack.ContentRedirectionProperty = {
hostToClient: {
enabled: false,
// the properties below are optional
allowedUrls: ['allowedUrls'],
deniedUrls: ['deniedUrls'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| host | IResolvable | Url | The configuration for URL redirection. |
hostToClient?
Type:
IResolvable | Url
(optional)
The configuration for URL redirection.

.NET
Go
Java
Python
TypeScript