resourceexplorer2

package
v0.104.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 30, 2024 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (
	IndexStateEnumActive   = IndexStateEnum("ACTIVE")
	IndexStateEnumCreating = IndexStateEnum("CREATING")
	IndexStateEnumDeleting = IndexStateEnum("DELETING")
	IndexStateEnumDeleted  = IndexStateEnum("DELETED")
	IndexStateEnumUpdating = IndexStateEnum("UPDATING")
)
View Source
const (
	IndexTypeLocal      = IndexType("LOCAL")
	IndexTypeAggregator = IndexType("AGGREGATOR")
)

Variables

This section is empty.

Functions

This section is empty.

Types

type DefaultViewAssociation

type DefaultViewAssociation struct {
	pulumi.CustomResourceState

	// The AWS principal that the default view is associated with, used as the unique identifier for this resource.
	AssociatedAwsPrincipal pulumi.StringOutput `pulumi:"associatedAwsPrincipal"`
	ViewArn                pulumi.StringOutput `pulumi:"viewArn"`
}

Definition of AWS::ResourceExplorer2::DefaultViewAssociation Resource Type

func GetDefaultViewAssociation

func GetDefaultViewAssociation(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *DefaultViewAssociationState, opts ...pulumi.ResourceOption) (*DefaultViewAssociation, error)

GetDefaultViewAssociation gets an existing DefaultViewAssociation resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewDefaultViewAssociation

func NewDefaultViewAssociation(ctx *pulumi.Context,
	name string, args *DefaultViewAssociationArgs, opts ...pulumi.ResourceOption) (*DefaultViewAssociation, error)

NewDefaultViewAssociation registers a new resource with the given unique name, arguments, and options.

func (*DefaultViewAssociation) ElementType

func (*DefaultViewAssociation) ElementType() reflect.Type

func (*DefaultViewAssociation) ToDefaultViewAssociationOutput

func (i *DefaultViewAssociation) ToDefaultViewAssociationOutput() DefaultViewAssociationOutput

func (*DefaultViewAssociation) ToDefaultViewAssociationOutputWithContext

func (i *DefaultViewAssociation) ToDefaultViewAssociationOutputWithContext(ctx context.Context) DefaultViewAssociationOutput

type DefaultViewAssociationArgs

type DefaultViewAssociationArgs struct {
	ViewArn pulumi.StringInput
}

The set of arguments for constructing a DefaultViewAssociation resource.

func (DefaultViewAssociationArgs) ElementType

func (DefaultViewAssociationArgs) ElementType() reflect.Type

type DefaultViewAssociationInput

type DefaultViewAssociationInput interface {
	pulumi.Input

	ToDefaultViewAssociationOutput() DefaultViewAssociationOutput
	ToDefaultViewAssociationOutputWithContext(ctx context.Context) DefaultViewAssociationOutput
}

type DefaultViewAssociationOutput

type DefaultViewAssociationOutput struct{ *pulumi.OutputState }

func (DefaultViewAssociationOutput) AssociatedAwsPrincipal

func (o DefaultViewAssociationOutput) AssociatedAwsPrincipal() pulumi.StringOutput

The AWS principal that the default view is associated with, used as the unique identifier for this resource.

func (DefaultViewAssociationOutput) ElementType

func (DefaultViewAssociationOutput) ToDefaultViewAssociationOutput

func (o DefaultViewAssociationOutput) ToDefaultViewAssociationOutput() DefaultViewAssociationOutput

func (DefaultViewAssociationOutput) ToDefaultViewAssociationOutputWithContext

func (o DefaultViewAssociationOutput) ToDefaultViewAssociationOutputWithContext(ctx context.Context) DefaultViewAssociationOutput

func (DefaultViewAssociationOutput) ViewArn

type DefaultViewAssociationState

type DefaultViewAssociationState struct {
}

func (DefaultViewAssociationState) ElementType

type Index

type Index struct {
	pulumi.CustomResourceState

	Arn        pulumi.StringOutput    `pulumi:"arn"`
	IndexState IndexStateEnumOutput   `pulumi:"indexState"`
	Tags       pulumi.StringMapOutput `pulumi:"tags"`
	Type       IndexTypeOutput        `pulumi:"type"`
}

Definition of AWS::ResourceExplorer2::Index Resource Type

## Example Usage ### Example

```go package main

import (

"github.com/pulumi/pulumi-aws-native/sdk/go/aws/resourceexplorer2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := resourceexplorer2.NewIndex(ctx, "sampleIndex", &resourceexplorer2.IndexArgs{
			Type: resourceexplorer2.IndexTypeAggregator,
			Tags: pulumi.StringMap{
				"purpose": pulumi.String("ResourceExplorer Sample Stack"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}

``` ### Example

```go package main

import (

"github.com/pulumi/pulumi-aws-native/sdk/go/aws/resourceexplorer2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := resourceexplorer2.NewIndex(ctx, "sampleIndex", &resourceexplorer2.IndexArgs{
			Type: resourceexplorer2.IndexTypeAggregator,
			Tags: pulumi.StringMap{
				"purpose": pulumi.String("ResourceExplorer Sample Stack"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}

```

func GetIndex

func GetIndex(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *IndexState, opts ...pulumi.ResourceOption) (*Index, error)

GetIndex gets an existing Index resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewIndex

func NewIndex(ctx *pulumi.Context,
	name string, args *IndexArgs, opts ...pulumi.ResourceOption) (*Index, error)

NewIndex registers a new resource with the given unique name, arguments, and options.

func (*Index) ElementType

func (*Index) ElementType() reflect.Type

func (*Index) ToIndexOutput

func (i *Index) ToIndexOutput() IndexOutput

func (*Index) ToIndexOutputWithContext

func (i *Index) ToIndexOutputWithContext(ctx context.Context) IndexOutput

type IndexArgs

type IndexArgs struct {
	Tags pulumi.StringMapInput
	Type IndexTypeInput
}

The set of arguments for constructing a Index resource.

func (IndexArgs) ElementType

func (IndexArgs) ElementType() reflect.Type

type IndexInput

type IndexInput interface {
	pulumi.Input

	ToIndexOutput() IndexOutput
	ToIndexOutputWithContext(ctx context.Context) IndexOutput
}

type IndexOutput

type IndexOutput struct{ *pulumi.OutputState }

func (IndexOutput) Arn

func (IndexOutput) ElementType

func (IndexOutput) ElementType() reflect.Type

func (IndexOutput) IndexState

func (o IndexOutput) IndexState() IndexStateEnumOutput

func (IndexOutput) Tags

func (IndexOutput) ToIndexOutput

func (o IndexOutput) ToIndexOutput() IndexOutput

func (IndexOutput) ToIndexOutputWithContext

func (o IndexOutput) ToIndexOutputWithContext(ctx context.Context) IndexOutput

func (IndexOutput) Type

func (o IndexOutput) Type() IndexTypeOutput

type IndexState

type IndexState struct {
}

func (IndexState) ElementType

func (IndexState) ElementType() reflect.Type

type IndexStateEnum

type IndexStateEnum string

type IndexStateEnumOutput

type IndexStateEnumOutput struct{ *pulumi.OutputState }

func (IndexStateEnumOutput) ElementType

func (IndexStateEnumOutput) ElementType() reflect.Type

func (IndexStateEnumOutput) ToIndexStateEnumOutput

func (o IndexStateEnumOutput) ToIndexStateEnumOutput() IndexStateEnumOutput

func (IndexStateEnumOutput) ToIndexStateEnumOutputWithContext

func (o IndexStateEnumOutput) ToIndexStateEnumOutputWithContext(ctx context.Context) IndexStateEnumOutput

func (IndexStateEnumOutput) ToIndexStateEnumPtrOutput

func (o IndexStateEnumOutput) ToIndexStateEnumPtrOutput() IndexStateEnumPtrOutput

func (IndexStateEnumOutput) ToIndexStateEnumPtrOutputWithContext

func (o IndexStateEnumOutput) ToIndexStateEnumPtrOutputWithContext(ctx context.Context) IndexStateEnumPtrOutput

func (IndexStateEnumOutput) ToStringOutput

func (o IndexStateEnumOutput) ToStringOutput() pulumi.StringOutput

func (IndexStateEnumOutput) ToStringOutputWithContext

func (o IndexStateEnumOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (IndexStateEnumOutput) ToStringPtrOutput

func (o IndexStateEnumOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (IndexStateEnumOutput) ToStringPtrOutputWithContext

func (o IndexStateEnumOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type IndexStateEnumPtrOutput

type IndexStateEnumPtrOutput struct{ *pulumi.OutputState }

func (IndexStateEnumPtrOutput) Elem

func (IndexStateEnumPtrOutput) ElementType

func (IndexStateEnumPtrOutput) ElementType() reflect.Type

func (IndexStateEnumPtrOutput) ToIndexStateEnumPtrOutput

func (o IndexStateEnumPtrOutput) ToIndexStateEnumPtrOutput() IndexStateEnumPtrOutput

func (IndexStateEnumPtrOutput) ToIndexStateEnumPtrOutputWithContext

func (o IndexStateEnumPtrOutput) ToIndexStateEnumPtrOutputWithContext(ctx context.Context) IndexStateEnumPtrOutput

func (IndexStateEnumPtrOutput) ToStringPtrOutput

func (o IndexStateEnumPtrOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (IndexStateEnumPtrOutput) ToStringPtrOutputWithContext

func (o IndexStateEnumPtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type IndexType

type IndexType string

func (IndexType) ElementType

func (IndexType) ElementType() reflect.Type

func (IndexType) ToIndexTypeOutput

func (e IndexType) ToIndexTypeOutput() IndexTypeOutput

func (IndexType) ToIndexTypeOutputWithContext

func (e IndexType) ToIndexTypeOutputWithContext(ctx context.Context) IndexTypeOutput

func (IndexType) ToIndexTypePtrOutput

func (e IndexType) ToIndexTypePtrOutput() IndexTypePtrOutput

func (IndexType) ToIndexTypePtrOutputWithContext

func (e IndexType) ToIndexTypePtrOutputWithContext(ctx context.Context) IndexTypePtrOutput

func (IndexType) ToStringOutput

func (e IndexType) ToStringOutput() pulumi.StringOutput

func (IndexType) ToStringOutputWithContext

func (e IndexType) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (IndexType) ToStringPtrOutput

func (e IndexType) ToStringPtrOutput() pulumi.StringPtrOutput

func (IndexType) ToStringPtrOutputWithContext

func (e IndexType) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type IndexTypeInput

type IndexTypeInput interface {
	pulumi.Input

	ToIndexTypeOutput() IndexTypeOutput
	ToIndexTypeOutputWithContext(context.Context) IndexTypeOutput
}

IndexTypeInput is an input type that accepts values of the IndexType enum A concrete instance of `IndexTypeInput` can be one of the following:

IndexTypeLocal
IndexTypeAggregator

type IndexTypeOutput

type IndexTypeOutput struct{ *pulumi.OutputState }

func (IndexTypeOutput) ElementType

func (IndexTypeOutput) ElementType() reflect.Type

func (IndexTypeOutput) ToIndexTypeOutput

func (o IndexTypeOutput) ToIndexTypeOutput() IndexTypeOutput

func (IndexTypeOutput) ToIndexTypeOutputWithContext

func (o IndexTypeOutput) ToIndexTypeOutputWithContext(ctx context.Context) IndexTypeOutput

func (IndexTypeOutput) ToIndexTypePtrOutput

func (o IndexTypeOutput) ToIndexTypePtrOutput() IndexTypePtrOutput

func (IndexTypeOutput) ToIndexTypePtrOutputWithContext

func (o IndexTypeOutput) ToIndexTypePtrOutputWithContext(ctx context.Context) IndexTypePtrOutput

func (IndexTypeOutput) ToStringOutput

func (o IndexTypeOutput) ToStringOutput() pulumi.StringOutput

func (IndexTypeOutput) ToStringOutputWithContext

func (o IndexTypeOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (IndexTypeOutput) ToStringPtrOutput

func (o IndexTypeOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (IndexTypeOutput) ToStringPtrOutputWithContext

func (o IndexTypeOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type IndexTypePtrInput

type IndexTypePtrInput interface {
	pulumi.Input

	ToIndexTypePtrOutput() IndexTypePtrOutput
	ToIndexTypePtrOutputWithContext(context.Context) IndexTypePtrOutput
}

func IndexTypePtr

func IndexTypePtr(v string) IndexTypePtrInput

type IndexTypePtrOutput

type IndexTypePtrOutput struct{ *pulumi.OutputState }

func (IndexTypePtrOutput) Elem

func (IndexTypePtrOutput) ElementType

func (IndexTypePtrOutput) ElementType() reflect.Type

func (IndexTypePtrOutput) ToIndexTypePtrOutput

func (o IndexTypePtrOutput) ToIndexTypePtrOutput() IndexTypePtrOutput

func (IndexTypePtrOutput) ToIndexTypePtrOutputWithContext

func (o IndexTypePtrOutput) ToIndexTypePtrOutputWithContext(ctx context.Context) IndexTypePtrOutput

func (IndexTypePtrOutput) ToStringPtrOutput

func (o IndexTypePtrOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (IndexTypePtrOutput) ToStringPtrOutputWithContext

func (o IndexTypePtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type LookupDefaultViewAssociationArgs

type LookupDefaultViewAssociationArgs struct {
	// The AWS principal that the default view is associated with, used as the unique identifier for this resource.
	AssociatedAwsPrincipal string `pulumi:"associatedAwsPrincipal"`
}

type LookupDefaultViewAssociationOutputArgs

type LookupDefaultViewAssociationOutputArgs struct {
	// The AWS principal that the default view is associated with, used as the unique identifier for this resource.
	AssociatedAwsPrincipal pulumi.StringInput `pulumi:"associatedAwsPrincipal"`
}

func (LookupDefaultViewAssociationOutputArgs) ElementType

type LookupDefaultViewAssociationResult

type LookupDefaultViewAssociationResult struct {
	// The AWS principal that the default view is associated with, used as the unique identifier for this resource.
	AssociatedAwsPrincipal *string `pulumi:"associatedAwsPrincipal"`
	ViewArn                *string `pulumi:"viewArn"`
}

func LookupDefaultViewAssociation

func LookupDefaultViewAssociation(ctx *pulumi.Context, args *LookupDefaultViewAssociationArgs, opts ...pulumi.InvokeOption) (*LookupDefaultViewAssociationResult, error)

Definition of AWS::ResourceExplorer2::DefaultViewAssociation Resource Type

type LookupDefaultViewAssociationResultOutput

type LookupDefaultViewAssociationResultOutput struct{ *pulumi.OutputState }

func (LookupDefaultViewAssociationResultOutput) AssociatedAwsPrincipal

The AWS principal that the default view is associated with, used as the unique identifier for this resource.

func (LookupDefaultViewAssociationResultOutput) ElementType

func (LookupDefaultViewAssociationResultOutput) ToLookupDefaultViewAssociationResultOutput

func (o LookupDefaultViewAssociationResultOutput) ToLookupDefaultViewAssociationResultOutput() LookupDefaultViewAssociationResultOutput

func (LookupDefaultViewAssociationResultOutput) ToLookupDefaultViewAssociationResultOutputWithContext

func (o LookupDefaultViewAssociationResultOutput) ToLookupDefaultViewAssociationResultOutputWithContext(ctx context.Context) LookupDefaultViewAssociationResultOutput

func (LookupDefaultViewAssociationResultOutput) ViewArn

type LookupIndexArgs

type LookupIndexArgs struct {
	Arn string `pulumi:"arn"`
}

type LookupIndexOutputArgs

type LookupIndexOutputArgs struct {
	Arn pulumi.StringInput `pulumi:"arn"`
}

func (LookupIndexOutputArgs) ElementType

func (LookupIndexOutputArgs) ElementType() reflect.Type

type LookupIndexResult

type LookupIndexResult struct {
	Arn        *string           `pulumi:"arn"`
	IndexState *IndexStateEnum   `pulumi:"indexState"`
	Tags       map[string]string `pulumi:"tags"`
	Type       *IndexType        `pulumi:"type"`
}

func LookupIndex

func LookupIndex(ctx *pulumi.Context, args *LookupIndexArgs, opts ...pulumi.InvokeOption) (*LookupIndexResult, error)

Definition of AWS::ResourceExplorer2::Index Resource Type

type LookupIndexResultOutput

type LookupIndexResultOutput struct{ *pulumi.OutputState }

func (LookupIndexResultOutput) Arn

func (LookupIndexResultOutput) ElementType

func (LookupIndexResultOutput) ElementType() reflect.Type

func (LookupIndexResultOutput) IndexState

func (LookupIndexResultOutput) Tags

func (LookupIndexResultOutput) ToLookupIndexResultOutput

func (o LookupIndexResultOutput) ToLookupIndexResultOutput() LookupIndexResultOutput

func (LookupIndexResultOutput) ToLookupIndexResultOutputWithContext

func (o LookupIndexResultOutput) ToLookupIndexResultOutputWithContext(ctx context.Context) LookupIndexResultOutput

func (LookupIndexResultOutput) Type

type LookupViewArgs

type LookupViewArgs struct {
	ViewArn string `pulumi:"viewArn"`
}

type LookupViewOutputArgs

type LookupViewOutputArgs struct {
	ViewArn pulumi.StringInput `pulumi:"viewArn"`
}

func (LookupViewOutputArgs) ElementType

func (LookupViewOutputArgs) ElementType() reflect.Type

type LookupViewResult

type LookupViewResult struct {
	Filters            *ViewSearchFilter      `pulumi:"filters"`
	IncludedProperties []ViewIncludedProperty `pulumi:"includedProperties"`
	Tags               map[string]string      `pulumi:"tags"`
	ViewArn            *string                `pulumi:"viewArn"`
}

func LookupView

func LookupView(ctx *pulumi.Context, args *LookupViewArgs, opts ...pulumi.InvokeOption) (*LookupViewResult, error)

Definition of AWS::ResourceExplorer2::View Resource Type

type LookupViewResultOutput

type LookupViewResultOutput struct{ *pulumi.OutputState }

func (LookupViewResultOutput) ElementType

func (LookupViewResultOutput) ElementType() reflect.Type

func (LookupViewResultOutput) Filters

func (LookupViewResultOutput) IncludedProperties

func (LookupViewResultOutput) Tags

func (LookupViewResultOutput) ToLookupViewResultOutput

func (o LookupViewResultOutput) ToLookupViewResultOutput() LookupViewResultOutput

func (LookupViewResultOutput) ToLookupViewResultOutputWithContext

func (o LookupViewResultOutput) ToLookupViewResultOutputWithContext(ctx context.Context) LookupViewResultOutput

func (LookupViewResultOutput) ViewArn

type View

type View struct {
	pulumi.CustomResourceState

	Filters            ViewSearchFilterPtrOutput       `pulumi:"filters"`
	IncludedProperties ViewIncludedPropertyArrayOutput `pulumi:"includedProperties"`
	Scope              pulumi.StringPtrOutput          `pulumi:"scope"`
	Tags               pulumi.StringMapOutput          `pulumi:"tags"`
	ViewArn            pulumi.StringOutput             `pulumi:"viewArn"`
	ViewName           pulumi.StringOutput             `pulumi:"viewName"`
}

Definition of AWS::ResourceExplorer2::View Resource Type

func GetView

func GetView(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *ViewState, opts ...pulumi.ResourceOption) (*View, error)

GetView gets an existing View resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewView

func NewView(ctx *pulumi.Context,
	name string, args *ViewArgs, opts ...pulumi.ResourceOption) (*View, error)

NewView registers a new resource with the given unique name, arguments, and options.

func (*View) ElementType

func (*View) ElementType() reflect.Type

func (*View) ToViewOutput

func (i *View) ToViewOutput() ViewOutput

func (*View) ToViewOutputWithContext

func (i *View) ToViewOutputWithContext(ctx context.Context) ViewOutput

type ViewArgs

type ViewArgs struct {
	Filters            ViewSearchFilterPtrInput
	IncludedProperties ViewIncludedPropertyArrayInput
	Scope              pulumi.StringPtrInput
	Tags               pulumi.StringMapInput
	ViewName           pulumi.StringPtrInput
}

The set of arguments for constructing a View resource.

func (ViewArgs) ElementType

func (ViewArgs) ElementType() reflect.Type

type ViewIncludedProperty

type ViewIncludedProperty struct {
	Name string `pulumi:"name"`
}

type ViewIncludedPropertyArgs

type ViewIncludedPropertyArgs struct {
	Name pulumi.StringInput `pulumi:"name"`
}

func (ViewIncludedPropertyArgs) ElementType

func (ViewIncludedPropertyArgs) ElementType() reflect.Type

func (ViewIncludedPropertyArgs) ToViewIncludedPropertyOutput

func (i ViewIncludedPropertyArgs) ToViewIncludedPropertyOutput() ViewIncludedPropertyOutput

func (ViewIncludedPropertyArgs) ToViewIncludedPropertyOutputWithContext

func (i ViewIncludedPropertyArgs) ToViewIncludedPropertyOutputWithContext(ctx context.Context) ViewIncludedPropertyOutput

type ViewIncludedPropertyArray

type ViewIncludedPropertyArray []ViewIncludedPropertyInput

func (ViewIncludedPropertyArray) ElementType

func (ViewIncludedPropertyArray) ElementType() reflect.Type

func (ViewIncludedPropertyArray) ToViewIncludedPropertyArrayOutput

func (i ViewIncludedPropertyArray) ToViewIncludedPropertyArrayOutput() ViewIncludedPropertyArrayOutput

func (ViewIncludedPropertyArray) ToViewIncludedPropertyArrayOutputWithContext

func (i ViewIncludedPropertyArray) ToViewIncludedPropertyArrayOutputWithContext(ctx context.Context) ViewIncludedPropertyArrayOutput

type ViewIncludedPropertyArrayInput

type ViewIncludedPropertyArrayInput interface {
	pulumi.Input

	ToViewIncludedPropertyArrayOutput() ViewIncludedPropertyArrayOutput
	ToViewIncludedPropertyArrayOutputWithContext(context.Context) ViewIncludedPropertyArrayOutput
}

ViewIncludedPropertyArrayInput is an input type that accepts ViewIncludedPropertyArray and ViewIncludedPropertyArrayOutput values. You can construct a concrete instance of `ViewIncludedPropertyArrayInput` via:

ViewIncludedPropertyArray{ ViewIncludedPropertyArgs{...} }

type ViewIncludedPropertyArrayOutput

type ViewIncludedPropertyArrayOutput struct{ *pulumi.OutputState }

func (ViewIncludedPropertyArrayOutput) ElementType

func (ViewIncludedPropertyArrayOutput) Index

func (ViewIncludedPropertyArrayOutput) ToViewIncludedPropertyArrayOutput

func (o ViewIncludedPropertyArrayOutput) ToViewIncludedPropertyArrayOutput() ViewIncludedPropertyArrayOutput

func (ViewIncludedPropertyArrayOutput) ToViewIncludedPropertyArrayOutputWithContext

func (o ViewIncludedPropertyArrayOutput) ToViewIncludedPropertyArrayOutputWithContext(ctx context.Context) ViewIncludedPropertyArrayOutput

type ViewIncludedPropertyInput

type ViewIncludedPropertyInput interface {
	pulumi.Input

	ToViewIncludedPropertyOutput() ViewIncludedPropertyOutput
	ToViewIncludedPropertyOutputWithContext(context.Context) ViewIncludedPropertyOutput
}

ViewIncludedPropertyInput is an input type that accepts ViewIncludedPropertyArgs and ViewIncludedPropertyOutput values. You can construct a concrete instance of `ViewIncludedPropertyInput` via:

ViewIncludedPropertyArgs{...}

type ViewIncludedPropertyOutput

type ViewIncludedPropertyOutput struct{ *pulumi.OutputState }

func (ViewIncludedPropertyOutput) ElementType

func (ViewIncludedPropertyOutput) ElementType() reflect.Type

func (ViewIncludedPropertyOutput) Name

func (ViewIncludedPropertyOutput) ToViewIncludedPropertyOutput

func (o ViewIncludedPropertyOutput) ToViewIncludedPropertyOutput() ViewIncludedPropertyOutput

func (ViewIncludedPropertyOutput) ToViewIncludedPropertyOutputWithContext

func (o ViewIncludedPropertyOutput) ToViewIncludedPropertyOutputWithContext(ctx context.Context) ViewIncludedPropertyOutput

type ViewInput

type ViewInput interface {
	pulumi.Input

	ToViewOutput() ViewOutput
	ToViewOutputWithContext(ctx context.Context) ViewOutput
}

type ViewOutput

type ViewOutput struct{ *pulumi.OutputState }

func (ViewOutput) ElementType

func (ViewOutput) ElementType() reflect.Type

func (ViewOutput) Filters

func (ViewOutput) IncludedProperties

func (o ViewOutput) IncludedProperties() ViewIncludedPropertyArrayOutput

func (ViewOutput) Scope added in v0.85.0

func (o ViewOutput) Scope() pulumi.StringPtrOutput

func (ViewOutput) Tags

func (ViewOutput) ToViewOutput

func (o ViewOutput) ToViewOutput() ViewOutput

func (ViewOutput) ToViewOutputWithContext

func (o ViewOutput) ToViewOutputWithContext(ctx context.Context) ViewOutput

func (ViewOutput) ViewArn

func (o ViewOutput) ViewArn() pulumi.StringOutput

func (ViewOutput) ViewName

func (o ViewOutput) ViewName() pulumi.StringOutput

type ViewSearchFilter added in v0.85.0

type ViewSearchFilter struct {
	FilterString string `pulumi:"filterString"`
}

type ViewSearchFilterArgs added in v0.85.0

type ViewSearchFilterArgs struct {
	FilterString pulumi.StringInput `pulumi:"filterString"`
}

func (ViewSearchFilterArgs) ElementType added in v0.85.0

func (ViewSearchFilterArgs) ElementType() reflect.Type

func (ViewSearchFilterArgs) ToViewSearchFilterOutput added in v0.85.0

func (i ViewSearchFilterArgs) ToViewSearchFilterOutput() ViewSearchFilterOutput

func (ViewSearchFilterArgs) ToViewSearchFilterOutputWithContext added in v0.85.0

func (i ViewSearchFilterArgs) ToViewSearchFilterOutputWithContext(ctx context.Context) ViewSearchFilterOutput

func (ViewSearchFilterArgs) ToViewSearchFilterPtrOutput added in v0.85.0

func (i ViewSearchFilterArgs) ToViewSearchFilterPtrOutput() ViewSearchFilterPtrOutput

func (ViewSearchFilterArgs) ToViewSearchFilterPtrOutputWithContext added in v0.85.0

func (i ViewSearchFilterArgs) ToViewSearchFilterPtrOutputWithContext(ctx context.Context) ViewSearchFilterPtrOutput

type ViewSearchFilterInput added in v0.85.0

type ViewSearchFilterInput interface {
	pulumi.Input

	ToViewSearchFilterOutput() ViewSearchFilterOutput
	ToViewSearchFilterOutputWithContext(context.Context) ViewSearchFilterOutput
}

ViewSearchFilterInput is an input type that accepts ViewSearchFilterArgs and ViewSearchFilterOutput values. You can construct a concrete instance of `ViewSearchFilterInput` via:

ViewSearchFilterArgs{...}

type ViewSearchFilterOutput added in v0.85.0

type ViewSearchFilterOutput struct{ *pulumi.OutputState }

func (ViewSearchFilterOutput) ElementType added in v0.85.0

func (ViewSearchFilterOutput) ElementType() reflect.Type

func (ViewSearchFilterOutput) FilterString added in v0.85.0

func (o ViewSearchFilterOutput) FilterString() pulumi.StringOutput

func (ViewSearchFilterOutput) ToViewSearchFilterOutput added in v0.85.0

func (o ViewSearchFilterOutput) ToViewSearchFilterOutput() ViewSearchFilterOutput

func (ViewSearchFilterOutput) ToViewSearchFilterOutputWithContext added in v0.85.0

func (o ViewSearchFilterOutput) ToViewSearchFilterOutputWithContext(ctx context.Context) ViewSearchFilterOutput

func (ViewSearchFilterOutput) ToViewSearchFilterPtrOutput added in v0.85.0

func (o ViewSearchFilterOutput) ToViewSearchFilterPtrOutput() ViewSearchFilterPtrOutput

func (ViewSearchFilterOutput) ToViewSearchFilterPtrOutputWithContext added in v0.85.0

func (o ViewSearchFilterOutput) ToViewSearchFilterPtrOutputWithContext(ctx context.Context) ViewSearchFilterPtrOutput

type ViewSearchFilterPtrInput added in v0.85.0

type ViewSearchFilterPtrInput interface {
	pulumi.Input

	ToViewSearchFilterPtrOutput() ViewSearchFilterPtrOutput
	ToViewSearchFilterPtrOutputWithContext(context.Context) ViewSearchFilterPtrOutput
}

ViewSearchFilterPtrInput is an input type that accepts ViewSearchFilterArgs, ViewSearchFilterPtr and ViewSearchFilterPtrOutput values. You can construct a concrete instance of `ViewSearchFilterPtrInput` via:

        ViewSearchFilterArgs{...}

or:

        nil

func ViewSearchFilterPtr added in v0.85.0

func ViewSearchFilterPtr(v *ViewSearchFilterArgs) ViewSearchFilterPtrInput

type ViewSearchFilterPtrOutput added in v0.85.0

type ViewSearchFilterPtrOutput struct{ *pulumi.OutputState }

func (ViewSearchFilterPtrOutput) Elem added in v0.85.0

func (ViewSearchFilterPtrOutput) ElementType added in v0.85.0

func (ViewSearchFilterPtrOutput) ElementType() reflect.Type

func (ViewSearchFilterPtrOutput) FilterString added in v0.85.0

func (ViewSearchFilterPtrOutput) ToViewSearchFilterPtrOutput added in v0.85.0

func (o ViewSearchFilterPtrOutput) ToViewSearchFilterPtrOutput() ViewSearchFilterPtrOutput

func (ViewSearchFilterPtrOutput) ToViewSearchFilterPtrOutputWithContext added in v0.85.0

func (o ViewSearchFilterPtrOutput) ToViewSearchFilterPtrOutputWithContext(ctx context.Context) ViewSearchFilterPtrOutput

type ViewState

type ViewState struct {
}

func (ViewState) ElementType

func (ViewState) ElementType() reflect.Type

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL