Show / Hide Table of Contents

Class CfnStack.UrlRedirectionConfigProperty

The configuration for URL redirection.

Inheritance
object
CfnStack.UrlRedirectionConfigProperty
Implements
CfnStack.IUrlRedirectionConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppStream
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnStack.UrlRedirectionConfigProperty : CfnStack.IUrlRedirectionConfigProperty
Syntax (vb)
Public Class CfnStack.UrlRedirectionConfigProperty Implements CfnStack.IUrlRedirectionConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-urlredirectionconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppStream;

             var urlRedirectionConfigProperty = new UrlRedirectionConfigProperty {
                 Enabled = false,

                 // the properties below are optional
                 AllowedUrls = new [] { "allowedUrls" },
                 DeniedUrls = new [] { "deniedUrls" }
             };

Synopsis

Constructors

UrlRedirectionConfigProperty()

The configuration for URL redirection.

Properties

AllowedUrls

The URLs that are allowed for redirection.

DeniedUrls

The URLs that are denied for redirection.

Enabled

Specifies whether URL redirection is enabled or disabled.

Constructors

UrlRedirectionConfigProperty()

The configuration for URL redirection.

public UrlRedirectionConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-urlredirectionconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppStream;

             var urlRedirectionConfigProperty = new UrlRedirectionConfigProperty {
                 Enabled = false,

                 // the properties below are optional
                 AllowedUrls = new [] { "allowedUrls" },
                 DeniedUrls = new [] { "deniedUrls" }
             };

Properties

AllowedUrls

The URLs that are allowed for redirection.

public string[]? AllowedUrls { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-urlredirectionconfig.html#cfn-appstream-stack-urlredirectionconfig-allowedurls

DeniedUrls

The URLs that are denied for redirection.

public string[]? DeniedUrls { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-urlredirectionconfig.html#cfn-appstream-stack-urlredirectionconfig-deniedurls

Enabled

Specifies whether URL redirection is enabled or disabled.

public object Enabled { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-urlredirectionconfig.html#cfn-appstream-stack-urlredirectionconfig-enabled

Type union: either bool or IResolvable

Implements

CfnStack.IUrlRedirectionConfigProperty
Back to top Generated by DocFX