Show / Hide Table of Contents

Class GetRegexPatternSet

Inheritance
System.Object
GetRegexPatternSet
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.WafV2
Assembly: Pulumi.Aws.dll
Syntax
public static class GetRegexPatternSet

Methods

View Source

InvokeAsync(GetRegexPatternSetArgs, InvokeOptions)

Retrieves the summary of a WAFv2 Regex Pattern Set.

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var example = Output.Create(Aws.WafV2.GetRegexPatternSet.InvokeAsync(new Aws.WafV2.GetRegexPatternSetArgs
    {
        Name = "some-regex-pattern-set",
        Scope = "REGIONAL",
    }));
}

}

{{% /example %}} {{% /examples %}}

Declaration
public static Task<GetRegexPatternSetResult> InvokeAsync(GetRegexPatternSetArgs args, InvokeOptions options = null)
Parameters
Type Name Description
GetRegexPatternSetArgs args
InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetRegexPatternSetResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.