aws

package
v1.24.0 Latest Latest
Warning

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

Go to latest
Published: Mar 3, 2020 License: Apache-2.0 Imports: 5 Imported by: 2

Documentation ¶

Overview ¶

Package aws exports types, functions, subpackages for provisioning aws resources.// A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

> This provider is a derived work of the [Terraform Provider](https://github.com/terraform-providers/terraform-provider-aws) > distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature, > first check the [`pulumi/pulumi-aws` repo](https://github.com/pulumi/pulumi-aws/issues); however, if that doesn't turn up anything, > please consult the source [`terraform-providers/terraform-provider-aws` repo](https://github.com/terraform-providers/terraform-provider-aws/issues).

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

nolint: lll

Index ¶

Constants ¶

This section is empty.

Variables ¶

This section is empty.

Functions ¶

This section is empty.

Types ¶

type GetAmiArgs ¶

type GetAmiArgs struct {
	// Limit search to users with *explicit* launch permission on
	// the image. Valid items are the numeric account ID or `self`.
	ExecutableUsers []string `pulumi:"executableUsers"`
	// One or more name/value pairs to filter off of. There are
	// several valid keys, for a full reference, check out
	// [describe-images in the AWS CLI reference][1].
	Filters []GetAmiFilter `pulumi:"filters"`
	// If more than one result is returned, use the most
	// recent AMI.
	MostRecent *bool `pulumi:"mostRecent"`
	// A regex string to apply to the AMI list returned
	// by AWS. This allows more advanced filtering not supported from the AWS API. This
	// filtering is done locally on what AWS returns, and could have a performance
	// impact if the result is large. It is recommended to combine this with other
	// options to narrow down the list AWS returns.
	NameRegex *string `pulumi:"nameRegex"`
	// List of AMI owners to limit search. At least 1 value must be specified. Valid values: an AWS account ID, `self` (the current account), or an AWS owner alias (e.g. `amazon`, `aws-marketplace`, `microsoft`).
	Owners []string               `pulumi:"owners"`
	Tags   map[string]interface{} `pulumi:"tags"`
}

A collection of arguments for invoking getAmi.

type GetAmiBlockDeviceMapping ¶ added in v1.19.0

type GetAmiBlockDeviceMapping struct {
	DeviceName  string                 `pulumi:"deviceName"`
	Ebs         map[string]interface{} `pulumi:"ebs"`
	NoDevice    string                 `pulumi:"noDevice"`
	VirtualName string                 `pulumi:"virtualName"`
}

type GetAmiBlockDeviceMappingArgs ¶ added in v1.19.0

type GetAmiBlockDeviceMappingArgs struct {
	DeviceName  pulumi.StringInput `pulumi:"deviceName"`
	Ebs         pulumi.MapInput    `pulumi:"ebs"`
	NoDevice    pulumi.StringInput `pulumi:"noDevice"`
	VirtualName pulumi.StringInput `pulumi:"virtualName"`
}

func (GetAmiBlockDeviceMappingArgs) ElementType ¶ added in v1.19.0

func (GetAmiBlockDeviceMappingArgs) ToGetAmiBlockDeviceMappingOutput ¶ added in v1.19.0

func (i GetAmiBlockDeviceMappingArgs) ToGetAmiBlockDeviceMappingOutput() GetAmiBlockDeviceMappingOutput

func (GetAmiBlockDeviceMappingArgs) ToGetAmiBlockDeviceMappingOutputWithContext ¶ added in v1.19.0

func (i GetAmiBlockDeviceMappingArgs) ToGetAmiBlockDeviceMappingOutputWithContext(ctx context.Context) GetAmiBlockDeviceMappingOutput

type GetAmiBlockDeviceMappingArray ¶ added in v1.19.0

type GetAmiBlockDeviceMappingArray []GetAmiBlockDeviceMappingInput

func (GetAmiBlockDeviceMappingArray) ElementType ¶ added in v1.19.0

func (GetAmiBlockDeviceMappingArray) ToGetAmiBlockDeviceMappingArrayOutput ¶ added in v1.19.0

func (i GetAmiBlockDeviceMappingArray) ToGetAmiBlockDeviceMappingArrayOutput() GetAmiBlockDeviceMappingArrayOutput

func (GetAmiBlockDeviceMappingArray) ToGetAmiBlockDeviceMappingArrayOutputWithContext ¶ added in v1.19.0

func (i GetAmiBlockDeviceMappingArray) ToGetAmiBlockDeviceMappingArrayOutputWithContext(ctx context.Context) GetAmiBlockDeviceMappingArrayOutput

type GetAmiBlockDeviceMappingArrayInput ¶ added in v1.19.0

type GetAmiBlockDeviceMappingArrayInput interface {
	pulumi.Input

	ToGetAmiBlockDeviceMappingArrayOutput() GetAmiBlockDeviceMappingArrayOutput
	ToGetAmiBlockDeviceMappingArrayOutputWithContext(context.Context) GetAmiBlockDeviceMappingArrayOutput
}

type GetAmiBlockDeviceMappingArrayOutput ¶ added in v1.19.0

type GetAmiBlockDeviceMappingArrayOutput struct{ *pulumi.OutputState }

func (GetAmiBlockDeviceMappingArrayOutput) ElementType ¶ added in v1.19.0

func (GetAmiBlockDeviceMappingArrayOutput) Index ¶ added in v1.19.0

func (GetAmiBlockDeviceMappingArrayOutput) ToGetAmiBlockDeviceMappingArrayOutput ¶ added in v1.19.0

func (o GetAmiBlockDeviceMappingArrayOutput) ToGetAmiBlockDeviceMappingArrayOutput() GetAmiBlockDeviceMappingArrayOutput

func (GetAmiBlockDeviceMappingArrayOutput) ToGetAmiBlockDeviceMappingArrayOutputWithContext ¶ added in v1.19.0

func (o GetAmiBlockDeviceMappingArrayOutput) ToGetAmiBlockDeviceMappingArrayOutputWithContext(ctx context.Context) GetAmiBlockDeviceMappingArrayOutput

type GetAmiBlockDeviceMappingInput ¶ added in v1.19.0

type GetAmiBlockDeviceMappingInput interface {
	pulumi.Input

	ToGetAmiBlockDeviceMappingOutput() GetAmiBlockDeviceMappingOutput
	ToGetAmiBlockDeviceMappingOutputWithContext(context.Context) GetAmiBlockDeviceMappingOutput
}

type GetAmiBlockDeviceMappingOutput ¶ added in v1.19.0

type GetAmiBlockDeviceMappingOutput struct{ *pulumi.OutputState }

func (GetAmiBlockDeviceMappingOutput) DeviceName ¶ added in v1.19.0

func (GetAmiBlockDeviceMappingOutput) Ebs ¶ added in v1.19.0

func (GetAmiBlockDeviceMappingOutput) ElementType ¶ added in v1.19.0

func (GetAmiBlockDeviceMappingOutput) NoDevice ¶ added in v1.19.0

func (GetAmiBlockDeviceMappingOutput) ToGetAmiBlockDeviceMappingOutput ¶ added in v1.19.0

func (o GetAmiBlockDeviceMappingOutput) ToGetAmiBlockDeviceMappingOutput() GetAmiBlockDeviceMappingOutput

func (GetAmiBlockDeviceMappingOutput) ToGetAmiBlockDeviceMappingOutputWithContext ¶ added in v1.19.0

func (o GetAmiBlockDeviceMappingOutput) ToGetAmiBlockDeviceMappingOutputWithContext(ctx context.Context) GetAmiBlockDeviceMappingOutput

func (GetAmiBlockDeviceMappingOutput) VirtualName ¶ added in v1.19.0

type GetAmiFilter ¶ added in v1.19.0

type GetAmiFilter struct {
	// The name of the AMI that was provided during image creation.
	Name   string   `pulumi:"name"`
	Values []string `pulumi:"values"`
}

type GetAmiFilterArgs ¶ added in v1.19.0

type GetAmiFilterArgs struct {
	// The name of the AMI that was provided during image creation.
	Name   pulumi.StringInput      `pulumi:"name"`
	Values pulumi.StringArrayInput `pulumi:"values"`
}

func (GetAmiFilterArgs) ElementType ¶ added in v1.19.0

func (GetAmiFilterArgs) ElementType() reflect.Type

func (GetAmiFilterArgs) ToGetAmiFilterOutput ¶ added in v1.19.0

func (i GetAmiFilterArgs) ToGetAmiFilterOutput() GetAmiFilterOutput

func (GetAmiFilterArgs) ToGetAmiFilterOutputWithContext ¶ added in v1.19.0

func (i GetAmiFilterArgs) ToGetAmiFilterOutputWithContext(ctx context.Context) GetAmiFilterOutput

type GetAmiFilterArray ¶ added in v1.19.0

type GetAmiFilterArray []GetAmiFilterInput

func (GetAmiFilterArray) ElementType ¶ added in v1.19.0

func (GetAmiFilterArray) ElementType() reflect.Type

func (GetAmiFilterArray) ToGetAmiFilterArrayOutput ¶ added in v1.19.0

func (i GetAmiFilterArray) ToGetAmiFilterArrayOutput() GetAmiFilterArrayOutput

func (GetAmiFilterArray) ToGetAmiFilterArrayOutputWithContext ¶ added in v1.19.0

func (i GetAmiFilterArray) ToGetAmiFilterArrayOutputWithContext(ctx context.Context) GetAmiFilterArrayOutput

type GetAmiFilterArrayInput ¶ added in v1.19.0

type GetAmiFilterArrayInput interface {
	pulumi.Input

	ToGetAmiFilterArrayOutput() GetAmiFilterArrayOutput
	ToGetAmiFilterArrayOutputWithContext(context.Context) GetAmiFilterArrayOutput
}

type GetAmiFilterArrayOutput ¶ added in v1.19.0

type GetAmiFilterArrayOutput struct{ *pulumi.OutputState }

func (GetAmiFilterArrayOutput) ElementType ¶ added in v1.19.0

func (GetAmiFilterArrayOutput) ElementType() reflect.Type

func (GetAmiFilterArrayOutput) Index ¶ added in v1.19.0

func (GetAmiFilterArrayOutput) ToGetAmiFilterArrayOutput ¶ added in v1.19.0

func (o GetAmiFilterArrayOutput) ToGetAmiFilterArrayOutput() GetAmiFilterArrayOutput

func (GetAmiFilterArrayOutput) ToGetAmiFilterArrayOutputWithContext ¶ added in v1.19.0

func (o GetAmiFilterArrayOutput) ToGetAmiFilterArrayOutputWithContext(ctx context.Context) GetAmiFilterArrayOutput

type GetAmiFilterInput ¶ added in v1.19.0

type GetAmiFilterInput interface {
	pulumi.Input

	ToGetAmiFilterOutput() GetAmiFilterOutput
	ToGetAmiFilterOutputWithContext(context.Context) GetAmiFilterOutput
}

type GetAmiFilterOutput ¶ added in v1.19.0

type GetAmiFilterOutput struct{ *pulumi.OutputState }

func (GetAmiFilterOutput) ElementType ¶ added in v1.19.0

func (GetAmiFilterOutput) ElementType() reflect.Type

func (GetAmiFilterOutput) Name ¶ added in v1.19.0

The name of the AMI that was provided during image creation.

func (GetAmiFilterOutput) ToGetAmiFilterOutput ¶ added in v1.19.0

func (o GetAmiFilterOutput) ToGetAmiFilterOutput() GetAmiFilterOutput

func (GetAmiFilterOutput) ToGetAmiFilterOutputWithContext ¶ added in v1.19.0

func (o GetAmiFilterOutput) ToGetAmiFilterOutputWithContext(ctx context.Context) GetAmiFilterOutput

func (GetAmiFilterOutput) Values ¶ added in v1.19.0

type GetAmiIdsArgs ¶

type GetAmiIdsArgs struct {
	// Limit search to users with *explicit* launch
	// permission on  the image. Valid items are the numeric account ID or `self`.
	ExecutableUsers []string `pulumi:"executableUsers"`
	// One or more name/value pairs to filter off of. There
	// are several valid keys, for a full reference, check out
	// [describe-images in the AWS CLI reference][1].
	Filters []GetAmiIdsFilter `pulumi:"filters"`
	// A regex string to apply to the AMI list returned
	// by AWS. This allows more advanced filtering not supported from the AWS API.
	// This filtering is done locally on what AWS returns, and could have a performance
	// impact if the result is large. It is recommended to combine this with other
	// options to narrow down the list AWS returns.
	NameRegex *string `pulumi:"nameRegex"`
	// List of AMI owners to limit search. At least 1 value must be specified. Valid values: an AWS account ID, `self` (the current account), or an AWS owner alias (e.g. `amazon`, `aws-marketplace`, `microsoft`).
	Owners []string `pulumi:"owners"`
	// Used to sort AMIs by creation time.
	SortAscending *bool `pulumi:"sortAscending"`
}

A collection of arguments for invoking getAmiIds.

type GetAmiIdsFilter ¶ added in v1.19.0

type GetAmiIdsFilter struct {
	Name   string   `pulumi:"name"`
	Values []string `pulumi:"values"`
}

type GetAmiIdsFilterArgs ¶ added in v1.19.0

type GetAmiIdsFilterArgs struct {
	Name   pulumi.StringInput      `pulumi:"name"`
	Values pulumi.StringArrayInput `pulumi:"values"`
}

func (GetAmiIdsFilterArgs) ElementType ¶ added in v1.19.0

func (GetAmiIdsFilterArgs) ElementType() reflect.Type

func (GetAmiIdsFilterArgs) ToGetAmiIdsFilterOutput ¶ added in v1.19.0

func (i GetAmiIdsFilterArgs) ToGetAmiIdsFilterOutput() GetAmiIdsFilterOutput

func (GetAmiIdsFilterArgs) ToGetAmiIdsFilterOutputWithContext ¶ added in v1.19.0

func (i GetAmiIdsFilterArgs) ToGetAmiIdsFilterOutputWithContext(ctx context.Context) GetAmiIdsFilterOutput

type GetAmiIdsFilterArray ¶ added in v1.19.0

type GetAmiIdsFilterArray []GetAmiIdsFilterInput

func (GetAmiIdsFilterArray) ElementType ¶ added in v1.19.0

func (GetAmiIdsFilterArray) ElementType() reflect.Type

func (GetAmiIdsFilterArray) ToGetAmiIdsFilterArrayOutput ¶ added in v1.19.0

func (i GetAmiIdsFilterArray) ToGetAmiIdsFilterArrayOutput() GetAmiIdsFilterArrayOutput

func (GetAmiIdsFilterArray) ToGetAmiIdsFilterArrayOutputWithContext ¶ added in v1.19.0

func (i GetAmiIdsFilterArray) ToGetAmiIdsFilterArrayOutputWithContext(ctx context.Context) GetAmiIdsFilterArrayOutput

type GetAmiIdsFilterArrayInput ¶ added in v1.19.0

type GetAmiIdsFilterArrayInput interface {
	pulumi.Input

	ToGetAmiIdsFilterArrayOutput() GetAmiIdsFilterArrayOutput
	ToGetAmiIdsFilterArrayOutputWithContext(context.Context) GetAmiIdsFilterArrayOutput
}

type GetAmiIdsFilterArrayOutput ¶ added in v1.19.0

type GetAmiIdsFilterArrayOutput struct{ *pulumi.OutputState }

func (GetAmiIdsFilterArrayOutput) ElementType ¶ added in v1.19.0

func (GetAmiIdsFilterArrayOutput) ElementType() reflect.Type

func (GetAmiIdsFilterArrayOutput) Index ¶ added in v1.19.0

func (GetAmiIdsFilterArrayOutput) ToGetAmiIdsFilterArrayOutput ¶ added in v1.19.0

func (o GetAmiIdsFilterArrayOutput) ToGetAmiIdsFilterArrayOutput() GetAmiIdsFilterArrayOutput

func (GetAmiIdsFilterArrayOutput) ToGetAmiIdsFilterArrayOutputWithContext ¶ added in v1.19.0

func (o GetAmiIdsFilterArrayOutput) ToGetAmiIdsFilterArrayOutputWithContext(ctx context.Context) GetAmiIdsFilterArrayOutput

type GetAmiIdsFilterInput ¶ added in v1.19.0

type GetAmiIdsFilterInput interface {
	pulumi.Input

	ToGetAmiIdsFilterOutput() GetAmiIdsFilterOutput
	ToGetAmiIdsFilterOutputWithContext(context.Context) GetAmiIdsFilterOutput
}

type GetAmiIdsFilterOutput ¶ added in v1.19.0

type GetAmiIdsFilterOutput struct{ *pulumi.OutputState }

func (GetAmiIdsFilterOutput) ElementType ¶ added in v1.19.0

func (GetAmiIdsFilterOutput) ElementType() reflect.Type

func (GetAmiIdsFilterOutput) Name ¶ added in v1.19.0

func (GetAmiIdsFilterOutput) ToGetAmiIdsFilterOutput ¶ added in v1.19.0

func (o GetAmiIdsFilterOutput) ToGetAmiIdsFilterOutput() GetAmiIdsFilterOutput

func (GetAmiIdsFilterOutput) ToGetAmiIdsFilterOutputWithContext ¶ added in v1.19.0

func (o GetAmiIdsFilterOutput) ToGetAmiIdsFilterOutputWithContext(ctx context.Context) GetAmiIdsFilterOutput

func (GetAmiIdsFilterOutput) Values ¶ added in v1.19.0

type GetAmiIdsResult ¶

type GetAmiIdsResult struct {
	ExecutableUsers []string          `pulumi:"executableUsers"`
	Filters         []GetAmiIdsFilter `pulumi:"filters"`
	// id is the provider-assigned unique ID for this managed resource.
	Id            string   `pulumi:"id"`
	Ids           []string `pulumi:"ids"`
	NameRegex     *string  `pulumi:"nameRegex"`
	Owners        []string `pulumi:"owners"`
	SortAscending *bool    `pulumi:"sortAscending"`
}

A collection of values returned by getAmiIds.

func GetAmiIds ¶ added in v1.19.0

func GetAmiIds(ctx *pulumi.Context, args *GetAmiIdsArgs, opts ...pulumi.InvokeOption) (*GetAmiIdsResult, error)

Use this data source to get a list of AMI IDs matching the specified criteria.

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/ami_ids.html.markdown.

type GetAmiProductCode ¶ added in v1.19.0

type GetAmiProductCode struct {
	ProductCodeId   string `pulumi:"productCodeId"`
	ProductCodeType string `pulumi:"productCodeType"`
}

type GetAmiProductCodeArgs ¶ added in v1.19.0

type GetAmiProductCodeArgs struct {
	ProductCodeId   pulumi.StringInput `pulumi:"productCodeId"`
	ProductCodeType pulumi.StringInput `pulumi:"productCodeType"`
}

func (GetAmiProductCodeArgs) ElementType ¶ added in v1.19.0

func (GetAmiProductCodeArgs) ElementType() reflect.Type

func (GetAmiProductCodeArgs) ToGetAmiProductCodeOutput ¶ added in v1.19.0

func (i GetAmiProductCodeArgs) ToGetAmiProductCodeOutput() GetAmiProductCodeOutput

func (GetAmiProductCodeArgs) ToGetAmiProductCodeOutputWithContext ¶ added in v1.19.0

func (i GetAmiProductCodeArgs) ToGetAmiProductCodeOutputWithContext(ctx context.Context) GetAmiProductCodeOutput

type GetAmiProductCodeArray ¶ added in v1.19.0

type GetAmiProductCodeArray []GetAmiProductCodeInput

func (GetAmiProductCodeArray) ElementType ¶ added in v1.19.0

func (GetAmiProductCodeArray) ElementType() reflect.Type

func (GetAmiProductCodeArray) ToGetAmiProductCodeArrayOutput ¶ added in v1.19.0

func (i GetAmiProductCodeArray) ToGetAmiProductCodeArrayOutput() GetAmiProductCodeArrayOutput

func (GetAmiProductCodeArray) ToGetAmiProductCodeArrayOutputWithContext ¶ added in v1.19.0

func (i GetAmiProductCodeArray) ToGetAmiProductCodeArrayOutputWithContext(ctx context.Context) GetAmiProductCodeArrayOutput

type GetAmiProductCodeArrayInput ¶ added in v1.19.0

type GetAmiProductCodeArrayInput interface {
	pulumi.Input

	ToGetAmiProductCodeArrayOutput() GetAmiProductCodeArrayOutput
	ToGetAmiProductCodeArrayOutputWithContext(context.Context) GetAmiProductCodeArrayOutput
}

type GetAmiProductCodeArrayOutput ¶ added in v1.19.0

type GetAmiProductCodeArrayOutput struct{ *pulumi.OutputState }

func (GetAmiProductCodeArrayOutput) ElementType ¶ added in v1.19.0

func (GetAmiProductCodeArrayOutput) Index ¶ added in v1.19.0

func (GetAmiProductCodeArrayOutput) ToGetAmiProductCodeArrayOutput ¶ added in v1.19.0

func (o GetAmiProductCodeArrayOutput) ToGetAmiProductCodeArrayOutput() GetAmiProductCodeArrayOutput

func (GetAmiProductCodeArrayOutput) ToGetAmiProductCodeArrayOutputWithContext ¶ added in v1.19.0

func (o GetAmiProductCodeArrayOutput) ToGetAmiProductCodeArrayOutputWithContext(ctx context.Context) GetAmiProductCodeArrayOutput

type GetAmiProductCodeInput ¶ added in v1.19.0

type GetAmiProductCodeInput interface {
	pulumi.Input

	ToGetAmiProductCodeOutput() GetAmiProductCodeOutput
	ToGetAmiProductCodeOutputWithContext(context.Context) GetAmiProductCodeOutput
}

type GetAmiProductCodeOutput ¶ added in v1.19.0

type GetAmiProductCodeOutput struct{ *pulumi.OutputState }

func (GetAmiProductCodeOutput) ElementType ¶ added in v1.19.0

func (GetAmiProductCodeOutput) ElementType() reflect.Type

func (GetAmiProductCodeOutput) ProductCodeId ¶ added in v1.19.0

func (o GetAmiProductCodeOutput) ProductCodeId() pulumi.StringOutput

func (GetAmiProductCodeOutput) ProductCodeType ¶ added in v1.19.0

func (o GetAmiProductCodeOutput) ProductCodeType() pulumi.StringOutput

func (GetAmiProductCodeOutput) ToGetAmiProductCodeOutput ¶ added in v1.19.0

func (o GetAmiProductCodeOutput) ToGetAmiProductCodeOutput() GetAmiProductCodeOutput

func (GetAmiProductCodeOutput) ToGetAmiProductCodeOutputWithContext ¶ added in v1.19.0

func (o GetAmiProductCodeOutput) ToGetAmiProductCodeOutputWithContext(ctx context.Context) GetAmiProductCodeOutput

type GetAmiResult ¶

type GetAmiResult struct {
	// The OS architecture of the AMI (ie: `i386` or `x8664`).
	Architecture string `pulumi:"architecture"`
	// The block device mappings of the AMI.
	// * `block_device_mappings.#.device_name` - The physical name of the device.
	// * `block_device_mappings.#.ebs.delete_on_termination` - `true` if the EBS volume
	// will be deleted on termination.
	// * `block_device_mappings.#.ebs.encrypted` - `true` if the EBS volume
	// is encrypted.
	// * `block_device_mappings.#.ebs.iops` - `0` if the EBS volume is
	// not a provisioned IOPS image, otherwise the supported IOPS count.
	// * `block_device_mappings.#.ebs.snapshot_id` - The ID of the snapshot.
	// * `block_device_mappings.#.ebs.volume_size` - The size of the volume, in GiB.
	// * `block_device_mappings.#.ebs.volume_type` - The volume type.
	// * `block_device_mappings.#.no_device` - Suppresses the specified device
	// included in the block device mapping of the AMI.
	// * `block_device_mappings.#.virtual_name` - The virtual device name (for
	// instance stores).
	BlockDeviceMappings []GetAmiBlockDeviceMapping `pulumi:"blockDeviceMappings"`
	// The date and time the image was created.
	CreationDate string `pulumi:"creationDate"`
	// The description of the AMI that was provided during image
	// creation.
	Description     string         `pulumi:"description"`
	ExecutableUsers []string       `pulumi:"executableUsers"`
	Filters         []GetAmiFilter `pulumi:"filters"`
	// The hypervisor type of the image.
	Hypervisor string `pulumi:"hypervisor"`
	// id is the provider-assigned unique ID for this managed resource.
	Id string `pulumi:"id"`
	// The ID of the AMI. Should be the same as the resource `id`.
	ImageId string `pulumi:"imageId"`
	// The location of the AMI.
	ImageLocation string `pulumi:"imageLocation"`
	// The AWS account alias (for example, `amazon`, `self`) or
	// the AWS account ID of the AMI owner.
	ImageOwnerAlias string `pulumi:"imageOwnerAlias"`
	// The type of image.
	ImageType string `pulumi:"imageType"`
	// The kernel associated with the image, if any. Only applicable
	// for machine images.
	KernelId   string `pulumi:"kernelId"`
	MostRecent *bool  `pulumi:"mostRecent"`
	// The name of the AMI that was provided during image creation.
	Name      string  `pulumi:"name"`
	NameRegex *string `pulumi:"nameRegex"`
	// The AWS account ID of the image owner.
	OwnerId string   `pulumi:"ownerId"`
	Owners  []string `pulumi:"owners"`
	// The value is Windows for `Windows` AMIs; otherwise blank.
	Platform string `pulumi:"platform"`
	// Any product codes associated with the AMI.
	// * `product_codes.#.product_code_id` - The product code.
	// * `product_codes.#.product_code_type` - The type of product code.
	ProductCodes []GetAmiProductCode `pulumi:"productCodes"`
	// `true` if the image has public launch permissions.
	Public bool `pulumi:"public"`
	// The RAM disk associated with the image, if any. Only applicable
	// for machine images.
	RamdiskId string `pulumi:"ramdiskId"`
	// The device name of the root device.
	RootDeviceName string `pulumi:"rootDeviceName"`
	// The type of root device (ie: `ebs` or `instance-store`).
	RootDeviceType string `pulumi:"rootDeviceType"`
	// The snapshot id associated with the root device, if any
	// (only applies to `ebs` root devices).
	RootSnapshotId string `pulumi:"rootSnapshotId"`
	// Specifies whether enhanced networking is enabled.
	SriovNetSupport string `pulumi:"sriovNetSupport"`
	// The current state of the AMI. If the state is `available`, the image
	// is successfully registered and can be used to launch an instance.
	State string `pulumi:"state"`
	// Describes a state change. Fields are `UNSET` if not available.
	// * `state_reason.code` - The reason code for the state change.
	// * `state_reason.message` - The message for the state change.
	StateReason map[string]interface{} `pulumi:"stateReason"`
	// Any tags assigned to the image.
	// * `tags.#.key` - The key name of the tag.
	// * `tags.#.value` - The value of the tag.
	Tags map[string]interface{} `pulumi:"tags"`
	// The type of virtualization of the AMI (ie: `hvm` or
	// `paravirtual`).
	VirtualizationType string `pulumi:"virtualizationType"`
}

A collection of values returned by getAmi.

func GetAmi ¶ added in v1.19.0

func GetAmi(ctx *pulumi.Context, args *GetAmiArgs, opts ...pulumi.InvokeOption) (*GetAmiResult, error)

Use this data source to get the ID of a registered AMI for use in other resources.

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/ami.html.markdown.

type GetArnArgs ¶

type GetArnArgs struct {
	// The ARN to parse.
	Arn string `pulumi:"arn"`
}

A collection of arguments for invoking getArn.

type GetArnResult ¶

type GetArnResult struct {
	// The [ID](https://docs.aws.amazon.com/general/latest/gr/acct-identifiers.html) of the AWS account that owns the resource, without the hyphens.
	Account string `pulumi:"account"`
	Arn     string `pulumi:"arn"`
	// id is the provider-assigned unique ID for this managed resource.
	Id string `pulumi:"id"`
	// The partition that the resource is in.
	Partition string `pulumi:"partition"`
	// The region the resource resides in.
	// Note that the ARNs for some resources do not require a region, so this component might be omitted.
	Region string `pulumi:"region"`
	// The content of this part of the ARN varies by service.
	// It often includes an indicator of the type of resource—for example, an IAM user or Amazon RDS database —followed by a slash (/) or a colon (:), followed by the resource name itself.
	Resource string `pulumi:"resource"`
	// The [service namespace](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces) that identifies the AWS product.
	Service string `pulumi:"service"`
}

A collection of values returned by getArn.

func GetArn ¶ added in v1.19.0

func GetArn(ctx *pulumi.Context, args *GetArnArgs, opts ...pulumi.InvokeOption) (*GetArnResult, error)

Parses an Amazon Resource Name (ARN) into its constituent parts.

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/arn.html.markdown.

type GetAutoscalingGroupsArgs ¶

type GetAutoscalingGroupsArgs struct {
	// A filter used to scope the list e.g. by tags. See [related docs](http://docs.aws.amazon.com/AutoScaling/latest/APIReference/API_Filter.html).
	Filters []GetAutoscalingGroupsFilter `pulumi:"filters"`
}

A collection of arguments for invoking getAutoscalingGroups.

type GetAutoscalingGroupsFilter ¶ added in v1.19.0

type GetAutoscalingGroupsFilter struct {
	// The name of the filter. The valid values are: `auto-scaling-group`, `key`, `value`, and `propagate-at-launch`.
	Name string `pulumi:"name"`
	// The value of the filter.
	Values []string `pulumi:"values"`
}

type GetAutoscalingGroupsFilterArgs ¶ added in v1.19.0

type GetAutoscalingGroupsFilterArgs struct {
	// The name of the filter. The valid values are: `auto-scaling-group`, `key`, `value`, and `propagate-at-launch`.
	Name pulumi.StringInput `pulumi:"name"`
	// The value of the filter.
	Values pulumi.StringArrayInput `pulumi:"values"`
}

func (GetAutoscalingGroupsFilterArgs) ElementType ¶ added in v1.19.0

func (GetAutoscalingGroupsFilterArgs) ToGetAutoscalingGroupsFilterOutput ¶ added in v1.19.0

func (i GetAutoscalingGroupsFilterArgs) ToGetAutoscalingGroupsFilterOutput() GetAutoscalingGroupsFilterOutput

func (GetAutoscalingGroupsFilterArgs) ToGetAutoscalingGroupsFilterOutputWithContext ¶ added in v1.19.0

func (i GetAutoscalingGroupsFilterArgs) ToGetAutoscalingGroupsFilterOutputWithContext(ctx context.Context) GetAutoscalingGroupsFilterOutput

type GetAutoscalingGroupsFilterArray ¶ added in v1.19.0

type GetAutoscalingGroupsFilterArray []GetAutoscalingGroupsFilterInput

func (GetAutoscalingGroupsFilterArray) ElementType ¶ added in v1.19.0

func (GetAutoscalingGroupsFilterArray) ToGetAutoscalingGroupsFilterArrayOutput ¶ added in v1.19.0

func (i GetAutoscalingGroupsFilterArray) ToGetAutoscalingGroupsFilterArrayOutput() GetAutoscalingGroupsFilterArrayOutput

func (GetAutoscalingGroupsFilterArray) ToGetAutoscalingGroupsFilterArrayOutputWithContext ¶ added in v1.19.0

func (i GetAutoscalingGroupsFilterArray) ToGetAutoscalingGroupsFilterArrayOutputWithContext(ctx context.Context) GetAutoscalingGroupsFilterArrayOutput

type GetAutoscalingGroupsFilterArrayInput ¶ added in v1.19.0

type GetAutoscalingGroupsFilterArrayInput interface {
	pulumi.Input

	ToGetAutoscalingGroupsFilterArrayOutput() GetAutoscalingGroupsFilterArrayOutput
	ToGetAutoscalingGroupsFilterArrayOutputWithContext(context.Context) GetAutoscalingGroupsFilterArrayOutput
}

type GetAutoscalingGroupsFilterArrayOutput ¶ added in v1.19.0

type GetAutoscalingGroupsFilterArrayOutput struct{ *pulumi.OutputState }

func (GetAutoscalingGroupsFilterArrayOutput) ElementType ¶ added in v1.19.0

func (GetAutoscalingGroupsFilterArrayOutput) Index ¶ added in v1.19.0

func (GetAutoscalingGroupsFilterArrayOutput) ToGetAutoscalingGroupsFilterArrayOutput ¶ added in v1.19.0

func (o GetAutoscalingGroupsFilterArrayOutput) ToGetAutoscalingGroupsFilterArrayOutput() GetAutoscalingGroupsFilterArrayOutput

func (GetAutoscalingGroupsFilterArrayOutput) ToGetAutoscalingGroupsFilterArrayOutputWithContext ¶ added in v1.19.0

func (o GetAutoscalingGroupsFilterArrayOutput) ToGetAutoscalingGroupsFilterArrayOutputWithContext(ctx context.Context) GetAutoscalingGroupsFilterArrayOutput

type GetAutoscalingGroupsFilterInput ¶ added in v1.19.0

type GetAutoscalingGroupsFilterInput interface {
	pulumi.Input

	ToGetAutoscalingGroupsFilterOutput() GetAutoscalingGroupsFilterOutput
	ToGetAutoscalingGroupsFilterOutputWithContext(context.Context) GetAutoscalingGroupsFilterOutput
}

type GetAutoscalingGroupsFilterOutput ¶ added in v1.19.0

type GetAutoscalingGroupsFilterOutput struct{ *pulumi.OutputState }

func (GetAutoscalingGroupsFilterOutput) ElementType ¶ added in v1.19.0

func (GetAutoscalingGroupsFilterOutput) Name ¶ added in v1.19.0

The name of the filter. The valid values are: `auto-scaling-group`, `key`, `value`, and `propagate-at-launch`.

func (GetAutoscalingGroupsFilterOutput) ToGetAutoscalingGroupsFilterOutput ¶ added in v1.19.0

func (o GetAutoscalingGroupsFilterOutput) ToGetAutoscalingGroupsFilterOutput() GetAutoscalingGroupsFilterOutput

func (GetAutoscalingGroupsFilterOutput) ToGetAutoscalingGroupsFilterOutputWithContext ¶ added in v1.19.0

func (o GetAutoscalingGroupsFilterOutput) ToGetAutoscalingGroupsFilterOutputWithContext(ctx context.Context) GetAutoscalingGroupsFilterOutput

func (GetAutoscalingGroupsFilterOutput) Values ¶ added in v1.19.0

The value of the filter.

type GetAutoscalingGroupsResult ¶

type GetAutoscalingGroupsResult struct {
	// A list of the Autoscaling Groups Arns in the current region.
	Arns    []string                     `pulumi:"arns"`
	Filters []GetAutoscalingGroupsFilter `pulumi:"filters"`
	// id is the provider-assigned unique ID for this managed resource.
	Id string `pulumi:"id"`
	// A list of the Autoscaling Groups in the current region.
	Names []string `pulumi:"names"`
}

A collection of values returned by getAutoscalingGroups.

func GetAutoscalingGroups ¶ added in v1.19.0

func GetAutoscalingGroups(ctx *pulumi.Context, args *GetAutoscalingGroupsArgs, opts ...pulumi.InvokeOption) (*GetAutoscalingGroupsResult, error)

The Autoscaling Groups data source allows access to the list of AWS ASGs within a specific region. This will allow you to pass a list of AutoScaling Groups to other resources.

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/autoscaling_groups.html.markdown.

type GetAvailabilityZoneArgs ¶

type GetAvailabilityZoneArgs struct {
	// The full name of the availability zone to select.
	Name *string `pulumi:"name"`
	// A specific availability zone state to require. May
	// be any of `"available"`, `"information"` or `"impaired"`.
	State *string `pulumi:"state"`
	// The zone ID of the availability zone to select.
	ZoneId *string `pulumi:"zoneId"`
}

A collection of arguments for invoking getAvailabilityZone.

type GetAvailabilityZoneResult ¶

type GetAvailabilityZoneResult struct {
	// id is the provider-assigned unique ID for this managed resource.
	Id string `pulumi:"id"`
	// The name of the selected availability zone.
	Name string `pulumi:"name"`
	// The part of the AZ name that appears after the region name,
	// uniquely identifying the AZ within its region.
	NameSuffix string `pulumi:"nameSuffix"`
	// The region where the selected availability zone resides.
	// This is always the region selected on the provider, since this data source
	// searches only within that region.
	Region string `pulumi:"region"`
	// The current state of the AZ.
	State string `pulumi:"state"`
	// (Optional) The zone ID of the selected availability zone.
	ZoneId string `pulumi:"zoneId"`
}

A collection of values returned by getAvailabilityZone.

func GetAvailabilityZone ¶ added in v1.19.0

func GetAvailabilityZone(ctx *pulumi.Context, args *GetAvailabilityZoneArgs, opts ...pulumi.InvokeOption) (*GetAvailabilityZoneResult, error)

`.getAvailabilityZone` provides details about a specific availability zone (AZ) in the current region.

This can be used both to validate an availability zone given in a variable and to split the AZ name into its component parts of an AWS region and an AZ identifier letter. The latter may be useful e.g. for implementing a consistent subnet numbering scheme across several regions by mapping both the region and the subnet letter to network numbers.

This is different from the `.getAvailabilityZones` (plural) data source, which provides a list of the available zones.

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/availability_zone.html.markdown.

type GetAvailabilityZonesArgs ¶

type GetAvailabilityZonesArgs struct {
	// List of blacklisted Availability Zone names.
	BlacklistedNames []string `pulumi:"blacklistedNames"`
	// List of blacklisted Availability Zone IDs.
	BlacklistedZoneIds []string `pulumi:"blacklistedZoneIds"`
	// Allows to filter list of Availability Zones based on their
	// current state. Can be either `"available"`, `"information"`, `"impaired"` or
	// `"unavailable"`. By default the list includes a complete set of Availability Zones
	// to which the underlying AWS account has access, regardless of their state.
	State *string `pulumi:"state"`
}

A collection of arguments for invoking getAvailabilityZones.

type GetAvailabilityZonesResult ¶

type GetAvailabilityZonesResult struct {
	BlacklistedNames   []string `pulumi:"blacklistedNames"`
	BlacklistedZoneIds []string `pulumi:"blacklistedZoneIds"`
	// id is the provider-assigned unique ID for this managed resource.
	Id string `pulumi:"id"`
	// A list of the Availability Zone names available to the account.
	Names []string `pulumi:"names"`
	State *string  `pulumi:"state"`
	// A list of the Availability Zone IDs available to the account.
	ZoneIds []string `pulumi:"zoneIds"`
}

A collection of values returned by getAvailabilityZones.

func GetAvailabilityZones ¶ added in v1.19.0

func GetAvailabilityZones(ctx *pulumi.Context, args *GetAvailabilityZonesArgs, opts ...pulumi.InvokeOption) (*GetAvailabilityZonesResult, error)

The Availability Zones data source allows access to the list of AWS Availability Zones which can be accessed by an AWS account within the region configured in the provider.

This is different from the `.getAvailabilityZone` (singular) data source, which provides some details about a specific availability zone.

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/availability_zones.html.markdown.

type GetBillingServiceAccountResult ¶

type GetBillingServiceAccountResult struct {
	// The ARN of the AWS billing service account.
	Arn string `pulumi:"arn"`
	// id is the provider-assigned unique ID for this managed resource.
	Id string `pulumi:"id"`
}

A collection of values returned by getBillingServiceAccount.

func GetBillingServiceAccount ¶ added in v1.19.0

func GetBillingServiceAccount(ctx *pulumi.Context, opts ...pulumi.InvokeOption) (*GetBillingServiceAccountResult, error)

Use this data source to get the Account ID of the [AWS Billing and Cost Management Service Account](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-getting-started.html#step-2) for the purpose of whitelisting in S3 bucket policy.

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/billing_service_account.html.markdown.

type GetCallerIdentityResult ¶

type GetCallerIdentityResult struct {
	// The AWS Account ID number of the account that owns or contains the calling entity.
	AccountId string `pulumi:"accountId"`
	// The AWS ARN associated with the calling entity.
	Arn string `pulumi:"arn"`
	// id is the provider-assigned unique ID for this managed resource.
	Id string `pulumi:"id"`
	// The unique identifier of the calling entity.
	UserId string `pulumi:"userId"`
}

A collection of values returned by getCallerIdentity.

func GetCallerIdentity ¶ added in v1.19.0

func GetCallerIdentity(ctx *pulumi.Context, opts ...pulumi.InvokeOption) (*GetCallerIdentityResult, error)

Use this data source to get the access to the effective Account ID, User ID, and ARN in which this provider is authorized.

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/caller_identity.html.markdown.

type GetCanonicalUserIdResult ¶

type GetCanonicalUserIdResult struct {
	// The human-friendly name linked to the canonical user ID. The bucket owner's display name. **NOTE:** [This value](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTServiceGET.html) is only included in the response in the US East (N. Virginia), US West (N. California), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Sydney), Asia Pacific (Tokyo), EU (Ireland), and South America (SĂŁo Paulo) regions.
	DisplayName string `pulumi:"displayName"`
	// id is the provider-assigned unique ID for this managed resource.
	Id string `pulumi:"id"`
}

A collection of values returned by getCanonicalUserId.

func GetCanonicalUserId ¶ added in v1.19.0

func GetCanonicalUserId(ctx *pulumi.Context, opts ...pulumi.InvokeOption) (*GetCanonicalUserIdResult, error)

The Canonical User ID data source allows access to the [canonical user ID](http://docs.aws.amazon.com/general/latest/gr/acct-identifiers.html) for the effective account in which this provider is working.

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/canonical_user_id.html.markdown.

type GetElasticIpArgs ¶

type GetElasticIpArgs struct {
	// One or more name/value pairs to use as filters. There are several valid keys, for a full reference, check out the [EC2 API Reference](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeAddresses.html).
	Filters []GetElasticIpFilter `pulumi:"filters"`
	// The allocation id of the specific VPC EIP to retrieve. If a classic EIP is required, do NOT set `id`, only set `publicIp`
	Id *string `pulumi:"id"`
	// The public IP of the specific EIP to retrieve.
	PublicIp *string `pulumi:"publicIp"`
	// A mapping of tags, each pair of which must exactly match a pair on the desired Elastic IP
	Tags map[string]interface{} `pulumi:"tags"`
}

A collection of arguments for invoking getElasticIp.

type GetElasticIpFilter ¶ added in v1.19.0

type GetElasticIpFilter struct {
	Name   string   `pulumi:"name"`
	Values []string `pulumi:"values"`
}

type GetElasticIpFilterArgs ¶ added in v1.19.0

type GetElasticIpFilterArgs struct {
	Name   pulumi.StringInput      `pulumi:"name"`
	Values pulumi.StringArrayInput `pulumi:"values"`
}

func (GetElasticIpFilterArgs) ElementType ¶ added in v1.19.0

func (GetElasticIpFilterArgs) ElementType() reflect.Type

func (GetElasticIpFilterArgs) ToGetElasticIpFilterOutput ¶ added in v1.19.0

func (i GetElasticIpFilterArgs) ToGetElasticIpFilterOutput() GetElasticIpFilterOutput

func (GetElasticIpFilterArgs) ToGetElasticIpFilterOutputWithContext ¶ added in v1.19.0

func (i GetElasticIpFilterArgs) ToGetElasticIpFilterOutputWithContext(ctx context.Context) GetElasticIpFilterOutput

type GetElasticIpFilterArray ¶ added in v1.19.0

type GetElasticIpFilterArray []GetElasticIpFilterInput

func (GetElasticIpFilterArray) ElementType ¶ added in v1.19.0

func (GetElasticIpFilterArray) ElementType() reflect.Type

func (GetElasticIpFilterArray) ToGetElasticIpFilterArrayOutput ¶ added in v1.19.0

func (i GetElasticIpFilterArray) ToGetElasticIpFilterArrayOutput() GetElasticIpFilterArrayOutput

func (GetElasticIpFilterArray) ToGetElasticIpFilterArrayOutputWithContext ¶ added in v1.19.0

func (i GetElasticIpFilterArray) ToGetElasticIpFilterArrayOutputWithContext(ctx context.Context) GetElasticIpFilterArrayOutput

type GetElasticIpFilterArrayInput ¶ added in v1.19.0

type GetElasticIpFilterArrayInput interface {
	pulumi.Input

	ToGetElasticIpFilterArrayOutput() GetElasticIpFilterArrayOutput
	ToGetElasticIpFilterArrayOutputWithContext(context.Context) GetElasticIpFilterArrayOutput
}

type GetElasticIpFilterArrayOutput ¶ added in v1.19.0

type GetElasticIpFilterArrayOutput struct{ *pulumi.OutputState }

func (GetElasticIpFilterArrayOutput) ElementType ¶ added in v1.19.0

func (GetElasticIpFilterArrayOutput) Index ¶ added in v1.19.0

func (GetElasticIpFilterArrayOutput) ToGetElasticIpFilterArrayOutput ¶ added in v1.19.0

func (o GetElasticIpFilterArrayOutput) ToGetElasticIpFilterArrayOutput() GetElasticIpFilterArrayOutput

func (GetElasticIpFilterArrayOutput) ToGetElasticIpFilterArrayOutputWithContext ¶ added in v1.19.0

func (o GetElasticIpFilterArrayOutput) ToGetElasticIpFilterArrayOutputWithContext(ctx context.Context) GetElasticIpFilterArrayOutput

type GetElasticIpFilterInput ¶ added in v1.19.0

type GetElasticIpFilterInput interface {
	pulumi.Input

	ToGetElasticIpFilterOutput() GetElasticIpFilterOutput
	ToGetElasticIpFilterOutputWithContext(context.Context) GetElasticIpFilterOutput
}

type GetElasticIpFilterOutput ¶ added in v1.19.0

type GetElasticIpFilterOutput struct{ *pulumi.OutputState }

func (GetElasticIpFilterOutput) ElementType ¶ added in v1.19.0

func (GetElasticIpFilterOutput) ElementType() reflect.Type

func (GetElasticIpFilterOutput) Name ¶ added in v1.19.0

func (GetElasticIpFilterOutput) ToGetElasticIpFilterOutput ¶ added in v1.19.0

func (o GetElasticIpFilterOutput) ToGetElasticIpFilterOutput() GetElasticIpFilterOutput

func (GetElasticIpFilterOutput) ToGetElasticIpFilterOutputWithContext ¶ added in v1.19.0

func (o GetElasticIpFilterOutput) ToGetElasticIpFilterOutputWithContext(ctx context.Context) GetElasticIpFilterOutput

func (GetElasticIpFilterOutput) Values ¶ added in v1.19.0

type GetElasticIpResult ¶

type GetElasticIpResult struct {
	// The ID representing the association of the address with an instance in a VPC.
	AssociationId string `pulumi:"associationId"`
	// Indicates whether the address is for use in EC2-Classic (standard) or in a VPC (vpc).
	Domain  string               `pulumi:"domain"`
	Filters []GetElasticIpFilter `pulumi:"filters"`
	// If VPC Elastic IP, the allocation identifier. If EC2-Classic Elastic IP, the public IP address.
	Id string `pulumi:"id"`
	// The ID of the instance that the address is associated with (if any).
	InstanceId string `pulumi:"instanceId"`
	// The ID of the network interface.
	NetworkInterfaceId string `pulumi:"networkInterfaceId"`
	// The ID of the AWS account that owns the network interface.
	NetworkInterfaceOwnerId string `pulumi:"networkInterfaceOwnerId"`
	// The Private DNS associated with the Elastic IP address.
	PrivateDns string `pulumi:"privateDns"`
	// The private IP address associated with the Elastic IP address.
	PrivateIp string `pulumi:"privateIp"`
	// Public DNS associated with the Elastic IP address.
	PublicDns string `pulumi:"publicDns"`
	// Public IP address of Elastic IP.
	PublicIp string `pulumi:"publicIp"`
	// The ID of an address pool.
	PublicIpv4Pool string `pulumi:"publicIpv4Pool"`
	// Key-value map of tags associated with Elastic IP.
	Tags map[string]interface{} `pulumi:"tags"`
}

A collection of values returned by getElasticIp.

func GetElasticIp ¶ added in v1.19.0

func GetElasticIp(ctx *pulumi.Context, args *GetElasticIpArgs, opts ...pulumi.InvokeOption) (*GetElasticIpResult, error)

`ec2.Eip` provides details about a specific Elastic IP.

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/eip.html.markdown.

type GetIpRangesArgs ¶

type GetIpRangesArgs struct {
	// Filter IP ranges by regions (or include all regions, if
	// omitted). Valid items are `global` (for `cloudfront`) as well as all AWS regions
	// (e.g. `eu-central-1`)
	Regions []string `pulumi:"regions"`
	// Filter IP ranges by services. Valid items are `amazon`
	// (for amazon.com), `amazonConnect`, `apiGateway`, `cloud9`, `cloudfront`,
	// `codebuild`, `dynamodb`, `ec2`, `ec2InstanceConnect`, `globalaccelerator`,
	// `route53`, `route53Healthchecks`, `s3` and `workspacesGateways`. See the
	// [`service` attribute][2] documentation for other possible values.
	Services []string `pulumi:"services"`
	// Custom URL for source JSON file. Syntax must match [AWS IP Address Ranges documention][1]. Defaults to `https://ip-ranges.amazonaws.com/ip-ranges.json`.
	Url *string `pulumi:"url"`
}

A collection of arguments for invoking getIpRanges.

type GetIpRangesResult ¶

type GetIpRangesResult struct {
	// The lexically ordered list of CIDR blocks.
	CidrBlocks []string `pulumi:"cidrBlocks"`
	// The publication time of the IP ranges (e.g. `2016-08-03-23-46-05`).
	CreateDate string `pulumi:"createDate"`
	// id is the provider-assigned unique ID for this managed resource.
	Id string `pulumi:"id"`
	// The lexically ordered list of IPv6 CIDR blocks.
	Ipv6CidrBlocks []string `pulumi:"ipv6CidrBlocks"`
	Regions        []string `pulumi:"regions"`
	Services       []string `pulumi:"services"`
	// The publication time of the IP ranges, in Unix epoch time format
	// (e.g. `1470267965`).
	SyncToken int     `pulumi:"syncToken"`
	Url       *string `pulumi:"url"`
}

A collection of values returned by getIpRanges.

func GetIpRanges ¶ added in v1.19.0

func GetIpRanges(ctx *pulumi.Context, args *GetIpRangesArgs, opts ...pulumi.InvokeOption) (*GetIpRangesResult, error)

Use this data source to get the IP ranges of various AWS products and services. For more information about the contents of this data source and required JSON syntax if referencing a custom URL, see the [AWS IP Address Ranges documention][1].

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/ip_ranges.html.markdown.

type GetPartitionResult ¶

type GetPartitionResult struct {
	DnsSuffix string `pulumi:"dnsSuffix"`
	// id is the provider-assigned unique ID for this managed resource.
	Id        string `pulumi:"id"`
	Partition string `pulumi:"partition"`
}

A collection of values returned by getPartition.

func GetPartition ¶ added in v1.19.0

func GetPartition(ctx *pulumi.Context, opts ...pulumi.InvokeOption) (*GetPartitionResult, error)

Use this data source to lookup current AWS partition in which this provider is working

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/partition.html.markdown.

type GetPrefixListArgs ¶

type GetPrefixListArgs struct {
	// The name of the prefix list to select.
	Name *string `pulumi:"name"`
	// The ID of the prefix list to select.
	PrefixListId *string `pulumi:"prefixListId"`
}

A collection of arguments for invoking getPrefixList.

type GetPrefixListResult ¶

type GetPrefixListResult struct {
	// The list of CIDR blocks for the AWS service associated
	// with the prefix list.
	CidrBlocks []string `pulumi:"cidrBlocks"`
	// id is the provider-assigned unique ID for this managed resource.
	Id string `pulumi:"id"`
	// The name of the selected prefix list.
	Name         string  `pulumi:"name"`
	PrefixListId *string `pulumi:"prefixListId"`
}

A collection of values returned by getPrefixList.

func GetPrefixList ¶ added in v1.19.0

func GetPrefixList(ctx *pulumi.Context, args *GetPrefixListArgs, opts ...pulumi.InvokeOption) (*GetPrefixListResult, error)

`.getPrefixList` provides details about a specific prefix list (PL) in the current region.

This can be used both to validate a prefix list given in a variable and to obtain the CIDR blocks (IP address ranges) for the associated AWS service. The latter may be useful e.g. for adding network ACL rules.

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/prefix_list.html.markdown.

type GetRegionArgs ¶

type GetRegionArgs struct {
	// The EC2 endpoint of the region to select.
	Endpoint *string `pulumi:"endpoint"`
	// The full name of the region to select.
	Name *string `pulumi:"name"`
}

A collection of arguments for invoking getRegion.

type GetRegionResult ¶

type GetRegionResult struct {
	// The region's description in this format: "Location (Region name)".
	Description string `pulumi:"description"`
	// The EC2 endpoint for the selected region.
	Endpoint string `pulumi:"endpoint"`
	// id is the provider-assigned unique ID for this managed resource.
	Id string `pulumi:"id"`
	// The name of the selected region.
	Name string `pulumi:"name"`
}

A collection of values returned by getRegion.

func GetRegion ¶ added in v1.19.0

func GetRegion(ctx *pulumi.Context, args *GetRegionArgs, opts ...pulumi.InvokeOption) (*GetRegionResult, error)

`.getRegion` provides details about a specific AWS region.

As well as validating a given region name this resource can be used to discover the name of the region configured within the provider. The latter can be useful in a child module which is inheriting an AWS provider configuration from its parent module.

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/region.html.markdown.

type Provider ¶ added in v1.19.0

type Provider struct {
	pulumi.ProviderResourceState
}

The provider type for the aws package. By default, resources use package-wide configuration settings, however an explicit `Provider` instance may be created and passed during resource construction to achieve fine-grained programmatic control over provider settings. See the [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.

> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/index.html.markdown.

func NewProvider ¶ added in v1.19.0

func NewProvider(ctx *pulumi.Context,
	name string, args *ProviderArgs, opts ...pulumi.ResourceOption) (*Provider, error)

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

type ProviderArgs ¶ added in v1.19.0

type ProviderArgs struct {
	// The access key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
	AccessKey           pulumi.StringPtrInput
	AllowedAccountIds   pulumi.StringArrayInput
	AssumeRole          ProviderAssumeRolePtrInput
	Endpoints           ProviderEndpointArrayInput
	ForbiddenAccountIds pulumi.StringArrayInput
	// Resource tag key prefixes to ignore across all resources.
	IgnoreTagPrefixes pulumi.StringArrayInput
	// Resource tag keys to ignore across all resources.
	IgnoreTags pulumi.StringArrayInput
	// Explicitly allow the provider to perform "insecure" SSL requests. If omitted,default value is `false`
	Insecure pulumi.BoolPtrInput
	// The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.
	MaxRetries pulumi.IntPtrInput
	// The profile for API operations. If not set, the default profile created with `aws configure` will be used.
	Profile pulumi.StringPtrInput
	// The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc.
	Region pulumi.StringPtrInput
	// Set this to true to force the request to use path-style addressing, i.e., http://s3.amazonaws.com/BUCKET/KEY. By
	// default, the S3 client will use virtual hosted bucket addressing when possible (http://BUCKET.s3.amazonaws.com/KEY).
	// Specific to the Amazon S3 service.
	S3ForcePathStyle pulumi.BoolPtrInput
	// The secret key for API operations. You can retrieve this from the 'Security & Credentials' section of the AWS console.
	SecretKey pulumi.StringPtrInput
	// The path to the shared credentials file. If not set this defaults to ~/.aws/credentials.
	SharedCredentialsFile pulumi.StringPtrInput
	// Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS
	// available/implemented.
	SkipCredentialsValidation pulumi.BoolPtrInput
	// Skip getting the supported EC2 platforms. Used by users that don't have ec2:DescribeAccountAttributes permissions.
	SkipGetEc2Platforms  pulumi.BoolPtrInput
	SkipMetadataApiCheck pulumi.BoolPtrInput
	// Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are
	// not public (yet).
	SkipRegionValidation pulumi.BoolPtrInput
	// Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.
	SkipRequestingAccountId pulumi.BoolPtrInput
	// session token. A session token is only required if you are using temporary security credentials.
	Token pulumi.StringPtrInput
}

The set of arguments for constructing a Provider resource.

func (ProviderArgs) ElementType ¶ added in v1.19.0

func (ProviderArgs) ElementType() reflect.Type

type ProviderAssumeRole ¶ added in v1.19.0

type ProviderAssumeRole struct {
	ExternalId  *string `pulumi:"externalId"`
	Policy      *string `pulumi:"policy"`
	RoleArn     *string `pulumi:"roleArn"`
	SessionName *string `pulumi:"sessionName"`
}

type ProviderAssumeRoleArgs ¶ added in v1.19.0

type ProviderAssumeRoleArgs struct {
	ExternalId  pulumi.StringPtrInput `pulumi:"externalId"`
	Policy      pulumi.StringPtrInput `pulumi:"policy"`
	RoleArn     pulumi.StringPtrInput `pulumi:"roleArn"`
	SessionName pulumi.StringPtrInput `pulumi:"sessionName"`
}

func (ProviderAssumeRoleArgs) ElementType ¶ added in v1.19.0

func (ProviderAssumeRoleArgs) ElementType() reflect.Type

func (ProviderAssumeRoleArgs) ToProviderAssumeRoleOutput ¶ added in v1.19.0

func (i ProviderAssumeRoleArgs) ToProviderAssumeRoleOutput() ProviderAssumeRoleOutput

func (ProviderAssumeRoleArgs) ToProviderAssumeRoleOutputWithContext ¶ added in v1.19.0

func (i ProviderAssumeRoleArgs) ToProviderAssumeRoleOutputWithContext(ctx context.Context) ProviderAssumeRoleOutput

func (ProviderAssumeRoleArgs) ToProviderAssumeRolePtrOutput ¶ added in v1.19.0

func (i ProviderAssumeRoleArgs) ToProviderAssumeRolePtrOutput() ProviderAssumeRolePtrOutput

func (ProviderAssumeRoleArgs) ToProviderAssumeRolePtrOutputWithContext ¶ added in v1.19.0

func (i ProviderAssumeRoleArgs) ToProviderAssumeRolePtrOutputWithContext(ctx context.Context) ProviderAssumeRolePtrOutput

type ProviderAssumeRoleInput ¶ added in v1.19.0

type ProviderAssumeRoleInput interface {
	pulumi.Input

	ToProviderAssumeRoleOutput() ProviderAssumeRoleOutput
	ToProviderAssumeRoleOutputWithContext(context.Context) ProviderAssumeRoleOutput
}

type ProviderAssumeRoleOutput ¶ added in v1.19.0

type ProviderAssumeRoleOutput struct{ *pulumi.OutputState }

func (ProviderAssumeRoleOutput) ElementType ¶ added in v1.19.0

func (ProviderAssumeRoleOutput) ElementType() reflect.Type

func (ProviderAssumeRoleOutput) ExternalId ¶ added in v1.19.0

func (ProviderAssumeRoleOutput) Policy ¶ added in v1.19.0

func (ProviderAssumeRoleOutput) RoleArn ¶ added in v1.19.0

func (ProviderAssumeRoleOutput) SessionName ¶ added in v1.19.0

func (ProviderAssumeRoleOutput) ToProviderAssumeRoleOutput ¶ added in v1.19.0

func (o ProviderAssumeRoleOutput) ToProviderAssumeRoleOutput() ProviderAssumeRoleOutput

func (ProviderAssumeRoleOutput) ToProviderAssumeRoleOutputWithContext ¶ added in v1.19.0

func (o ProviderAssumeRoleOutput) ToProviderAssumeRoleOutputWithContext(ctx context.Context) ProviderAssumeRoleOutput

func (ProviderAssumeRoleOutput) ToProviderAssumeRolePtrOutput ¶ added in v1.19.0

func (o ProviderAssumeRoleOutput) ToProviderAssumeRolePtrOutput() ProviderAssumeRolePtrOutput

func (ProviderAssumeRoleOutput) ToProviderAssumeRolePtrOutputWithContext ¶ added in v1.19.0

func (o ProviderAssumeRoleOutput) ToProviderAssumeRolePtrOutputWithContext(ctx context.Context) ProviderAssumeRolePtrOutput

type ProviderAssumeRolePtrInput ¶ added in v1.19.0

type ProviderAssumeRolePtrInput interface {
	pulumi.Input

	ToProviderAssumeRolePtrOutput() ProviderAssumeRolePtrOutput
	ToProviderAssumeRolePtrOutputWithContext(context.Context) ProviderAssumeRolePtrOutput
}

func ProviderAssumeRolePtr ¶ added in v1.19.0

func ProviderAssumeRolePtr(v *ProviderAssumeRoleArgs) ProviderAssumeRolePtrInput

type ProviderAssumeRolePtrOutput ¶ added in v1.19.0

type ProviderAssumeRolePtrOutput struct{ *pulumi.OutputState }

func (ProviderAssumeRolePtrOutput) Elem ¶ added in v1.19.0

func (ProviderAssumeRolePtrOutput) ElementType ¶ added in v1.19.0

func (ProviderAssumeRolePtrOutput) ExternalId ¶ added in v1.19.0

func (ProviderAssumeRolePtrOutput) Policy ¶ added in v1.19.0

func (ProviderAssumeRolePtrOutput) RoleArn ¶ added in v1.19.0

func (ProviderAssumeRolePtrOutput) SessionName ¶ added in v1.19.0

func (ProviderAssumeRolePtrOutput) ToProviderAssumeRolePtrOutput ¶ added in v1.19.0

func (o ProviderAssumeRolePtrOutput) ToProviderAssumeRolePtrOutput() ProviderAssumeRolePtrOutput

func (ProviderAssumeRolePtrOutput) ToProviderAssumeRolePtrOutputWithContext ¶ added in v1.19.0

func (o ProviderAssumeRolePtrOutput) ToProviderAssumeRolePtrOutputWithContext(ctx context.Context) ProviderAssumeRolePtrOutput

type ProviderEndpoint ¶ added in v1.19.0

type ProviderEndpoint struct {
	Accessanalyzer         *string `pulumi:"accessanalyzer"`
	Acm                    *string `pulumi:"acm"`
	Acmpca                 *string `pulumi:"acmpca"`
	Amplify                *string `pulumi:"amplify"`
	Apigateway             *string `pulumi:"apigateway"`
	Applicationautoscaling *string `pulumi:"applicationautoscaling"`
	Applicationinsights    *string `pulumi:"applicationinsights"`
	Appmesh                *string `pulumi:"appmesh"`
	Appstream              *string `pulumi:"appstream"`
	Appsync                *string `pulumi:"appsync"`
	Athena                 *string `pulumi:"athena"`
	Autoscaling            *string `pulumi:"autoscaling"`
	Autoscalingplans       *string `pulumi:"autoscalingplans"`
	Backup                 *string `pulumi:"backup"`
	Batch                  *string `pulumi:"batch"`
	Budgets                *string `pulumi:"budgets"`
	Cloud9                 *string `pulumi:"cloud9"`
	Cloudformation         *string `pulumi:"cloudformation"`
	Cloudfront             *string `pulumi:"cloudfront"`
	Cloudhsm               *string `pulumi:"cloudhsm"`
	Cloudsearch            *string `pulumi:"cloudsearch"`
	Cloudtrail             *string `pulumi:"cloudtrail"`
	Cloudwatch             *string `pulumi:"cloudwatch"`
	Cloudwatchevents       *string `pulumi:"cloudwatchevents"`
	Cloudwatchlogs         *string `pulumi:"cloudwatchlogs"`
	Codebuild              *string `pulumi:"codebuild"`
	Codecommit             *string `pulumi:"codecommit"`
	Codedeploy             *string `pulumi:"codedeploy"`
	Codepipeline           *string `pulumi:"codepipeline"`
	Cognitoidentity        *string `pulumi:"cognitoidentity"`
	Cognitoidp             *string `pulumi:"cognitoidp"`
	Configservice          *string `pulumi:"configservice"`
	Cur                    *string `pulumi:"cur"`
	Dataexchange           *string `pulumi:"dataexchange"`
	Datapipeline           *string `pulumi:"datapipeline"`
	Datasync               *string `pulumi:"datasync"`
	Dax                    *string `pulumi:"dax"`
	Devicefarm             *string `pulumi:"devicefarm"`
	Directconnect          *string `pulumi:"directconnect"`
	Dlm                    *string `pulumi:"dlm"`
	Dms                    *string `pulumi:"dms"`
	Docdb                  *string `pulumi:"docdb"`
	Ds                     *string `pulumi:"ds"`
	Dynamodb               *string `pulumi:"dynamodb"`
	Ec2                    *string `pulumi:"ec2"`
	Ecr                    *string `pulumi:"ecr"`
	Ecs                    *string `pulumi:"ecs"`
	Efs                    *string `pulumi:"efs"`
	Eks                    *string `pulumi:"eks"`
	Elasticache            *string `pulumi:"elasticache"`
	Elasticbeanstalk       *string `pulumi:"elasticbeanstalk"`
	Elastictranscoder      *string `pulumi:"elastictranscoder"`
	Elb                    *string `pulumi:"elb"`
	Emr                    *string `pulumi:"emr"`
	Es                     *string `pulumi:"es"`
	Firehose               *string `pulumi:"firehose"`
	Fms                    *string `pulumi:"fms"`
	Forecast               *string `pulumi:"forecast"`
	Fsx                    *string `pulumi:"fsx"`
	Gamelift               *string `pulumi:"gamelift"`
	Glacier                *string `pulumi:"glacier"`
	Globalaccelerator      *string `pulumi:"globalaccelerator"`
	Glue                   *string `pulumi:"glue"`
	Greengrass             *string `pulumi:"greengrass"`
	Guardduty              *string `pulumi:"guardduty"`
	Iam                    *string `pulumi:"iam"`
	Imagebuilder           *string `pulumi:"imagebuilder"`
	Inspector              *string `pulumi:"inspector"`
	Iot                    *string `pulumi:"iot"`
	Iotanalytics           *string `pulumi:"iotanalytics"`
	Iotevents              *string `pulumi:"iotevents"`
	Kafka                  *string `pulumi:"kafka"`
	Kinesis                *string `pulumi:"kinesis"`
	KinesisAnalytics       *string `pulumi:"kinesisAnalytics"`
	Kinesisanalytics       *string `pulumi:"kinesisanalytics"`
	Kinesisvideo           *string `pulumi:"kinesisvideo"`
	Kms                    *string `pulumi:"kms"`
	Lakeformation          *string `pulumi:"lakeformation"`
	Lambda                 *string `pulumi:"lambda"`
	Lexmodels              *string `pulumi:"lexmodels"`
	Licensemanager         *string `pulumi:"licensemanager"`
	Lightsail              *string `pulumi:"lightsail"`
	Macie                  *string `pulumi:"macie"`
	Managedblockchain      *string `pulumi:"managedblockchain"`
	Marketplacecatalog     *string `pulumi:"marketplacecatalog"`
	Mediaconnect           *string `pulumi:"mediaconnect"`
	Mediaconvert           *string `pulumi:"mediaconvert"`
	Medialive              *string `pulumi:"medialive"`
	Mediapackage           *string `pulumi:"mediapackage"`
	Mediastore             *string `pulumi:"mediastore"`
	Mediastoredata         *string `pulumi:"mediastoredata"`
	Mq                     *string `pulumi:"mq"`
	Neptune                *string `pulumi:"neptune"`
	Opsworks               *string `pulumi:"opsworks"`
	Organizations          *string `pulumi:"organizations"`
	Personalize            *string `pulumi:"personalize"`
	Pinpoint               *string `pulumi:"pinpoint"`
	Pricing                *string `pulumi:"pricing"`
	Qldb                   *string `pulumi:"qldb"`
	Quicksight             *string `pulumi:"quicksight"`
	R53                    *string `pulumi:"r53"`
	Ram                    *string `pulumi:"ram"`
	Rds                    *string `pulumi:"rds"`
	Redshift               *string `pulumi:"redshift"`
	Resourcegroups         *string `pulumi:"resourcegroups"`
	Route53                *string `pulumi:"route53"`
	Route53resolver        *string `pulumi:"route53resolver"`
	S3                     *string `pulumi:"s3"`
	S3control              *string `pulumi:"s3control"`
	Sagemaker              *string `pulumi:"sagemaker"`
	Sdb                    *string `pulumi:"sdb"`
	Secretsmanager         *string `pulumi:"secretsmanager"`
	Securityhub            *string `pulumi:"securityhub"`
	Serverlessrepo         *string `pulumi:"serverlessrepo"`
	Servicecatalog         *string `pulumi:"servicecatalog"`
	Servicediscovery       *string `pulumi:"servicediscovery"`
	Servicequotas          *string `pulumi:"servicequotas"`
	Ses                    *string `pulumi:"ses"`
	Shield                 *string `pulumi:"shield"`
	Sns                    *string `pulumi:"sns"`
	Sqs                    *string `pulumi:"sqs"`
	Ssm                    *string `pulumi:"ssm"`
	Stepfunctions          *string `pulumi:"stepfunctions"`
	Storagegateway         *string `pulumi:"storagegateway"`
	Sts                    *string `pulumi:"sts"`
	Swf                    *string `pulumi:"swf"`
	Transfer               *string `pulumi:"transfer"`
	Waf                    *string `pulumi:"waf"`
	Wafregional            *string `pulumi:"wafregional"`
	Wafv2                  *string `pulumi:"wafv2"`
	Worklink               *string `pulumi:"worklink"`
	Workmail               *string `pulumi:"workmail"`
	Workspaces             *string `pulumi:"workspaces"`
	Xray                   *string `pulumi:"xray"`
}

type ProviderEndpointArgs ¶ added in v1.19.0

type ProviderEndpointArgs struct {
	Accessanalyzer         pulumi.StringPtrInput `pulumi:"accessanalyzer"`
	Acm                    pulumi.StringPtrInput `pulumi:"acm"`
	Acmpca                 pulumi.StringPtrInput `pulumi:"acmpca"`
	Amplify                pulumi.StringPtrInput `pulumi:"amplify"`
	Apigateway             pulumi.StringPtrInput `pulumi:"apigateway"`
	Applicationautoscaling pulumi.StringPtrInput `pulumi:"applicationautoscaling"`
	Applicationinsights    pulumi.StringPtrInput `pulumi:"applicationinsights"`
	Appmesh                pulumi.StringPtrInput `pulumi:"appmesh"`
	Appstream              pulumi.StringPtrInput `pulumi:"appstream"`
	Appsync                pulumi.StringPtrInput `pulumi:"appsync"`
	Athena                 pulumi.StringPtrInput `pulumi:"athena"`
	Autoscaling            pulumi.StringPtrInput `pulumi:"autoscaling"`
	Autoscalingplans       pulumi.StringPtrInput `pulumi:"autoscalingplans"`
	Backup                 pulumi.StringPtrInput `pulumi:"backup"`
	Batch                  pulumi.StringPtrInput `pulumi:"batch"`
	Budgets                pulumi.StringPtrInput `pulumi:"budgets"`
	Cloud9                 pulumi.StringPtrInput `pulumi:"cloud9"`
	Cloudformation         pulumi.StringPtrInput `pulumi:"cloudformation"`
	Cloudfront             pulumi.StringPtrInput `pulumi:"cloudfront"`
	Cloudhsm               pulumi.StringPtrInput `pulumi:"cloudhsm"`
	Cloudsearch            pulumi.StringPtrInput `pulumi:"cloudsearch"`
	Cloudtrail             pulumi.StringPtrInput `pulumi:"cloudtrail"`
	Cloudwatch             pulumi.StringPtrInput `pulumi:"cloudwatch"`
	Cloudwatchevents       pulumi.StringPtrInput `pulumi:"cloudwatchevents"`
	Cloudwatchlogs         pulumi.StringPtrInput `pulumi:"cloudwatchlogs"`
	Codebuild              pulumi.StringPtrInput `pulumi:"codebuild"`
	Codecommit             pulumi.StringPtrInput `pulumi:"codecommit"`
	Codedeploy             pulumi.StringPtrInput `pulumi:"codedeploy"`
	Codepipeline           pulumi.StringPtrInput `pulumi:"codepipeline"`
	Cognitoidentity        pulumi.StringPtrInput `pulumi:"cognitoidentity"`
	Cognitoidp             pulumi.StringPtrInput `pulumi:"cognitoidp"`
	Configservice          pulumi.StringPtrInput `pulumi:"configservice"`
	Cur                    pulumi.StringPtrInput `pulumi:"cur"`
	Dataexchange           pulumi.StringPtrInput `pulumi:"dataexchange"`
	Datapipeline           pulumi.StringPtrInput `pulumi:"datapipeline"`
	Datasync               pulumi.StringPtrInput `pulumi:"datasync"`
	Dax                    pulumi.StringPtrInput `pulumi:"dax"`
	Devicefarm             pulumi.StringPtrInput `pulumi:"devicefarm"`
	Directconnect          pulumi.StringPtrInput `pulumi:"directconnect"`
	Dlm                    pulumi.StringPtrInput `pulumi:"dlm"`
	Dms                    pulumi.StringPtrInput `pulumi:"dms"`
	Docdb                  pulumi.StringPtrInput `pulumi:"docdb"`
	Ds                     pulumi.StringPtrInput `pulumi:"ds"`
	Dynamodb               pulumi.StringPtrInput `pulumi:"dynamodb"`
	Ec2                    pulumi.StringPtrInput `pulumi:"ec2"`
	Ecr                    pulumi.StringPtrInput `pulumi:"ecr"`
	Ecs                    pulumi.StringPtrInput `pulumi:"ecs"`
	Efs                    pulumi.StringPtrInput `pulumi:"efs"`
	Eks                    pulumi.StringPtrInput `pulumi:"eks"`
	Elasticache            pulumi.StringPtrInput `pulumi:"elasticache"`
	Elasticbeanstalk       pulumi.StringPtrInput `pulumi:"elasticbeanstalk"`
	Elastictranscoder      pulumi.StringPtrInput `pulumi:"elastictranscoder"`
	Elb                    pulumi.StringPtrInput `pulumi:"elb"`
	Emr                    pulumi.StringPtrInput `pulumi:"emr"`
	Es                     pulumi.StringPtrInput `pulumi:"es"`
	Firehose               pulumi.StringPtrInput `pulumi:"firehose"`
	Fms                    pulumi.StringPtrInput `pulumi:"fms"`
	Forecast               pulumi.StringPtrInput `pulumi:"forecast"`
	Fsx                    pulumi.StringPtrInput `pulumi:"fsx"`
	Gamelift               pulumi.StringPtrInput `pulumi:"gamelift"`
	Glacier                pulumi.StringPtrInput `pulumi:"glacier"`
	Globalaccelerator      pulumi.StringPtrInput `pulumi:"globalaccelerator"`
	Glue                   pulumi.StringPtrInput `pulumi:"glue"`
	Greengrass             pulumi.StringPtrInput `pulumi:"greengrass"`
	Guardduty              pulumi.StringPtrInput `pulumi:"guardduty"`
	Iam                    pulumi.StringPtrInput `pulumi:"iam"`
	Imagebuilder           pulumi.StringPtrInput `pulumi:"imagebuilder"`
	Inspector              pulumi.StringPtrInput `pulumi:"inspector"`
	Iot                    pulumi.StringPtrInput `pulumi:"iot"`
	Iotanalytics           pulumi.StringPtrInput `pulumi:"iotanalytics"`
	Iotevents              pulumi.StringPtrInput `pulumi:"iotevents"`
	Kafka                  pulumi.StringPtrInput `pulumi:"kafka"`
	Kinesis                pulumi.StringPtrInput `pulumi:"kinesis"`
	KinesisAnalytics       pulumi.StringPtrInput `pulumi:"kinesisAnalytics"`
	Kinesisanalytics       pulumi.StringPtrInput `pulumi:"kinesisanalytics"`
	Kinesisvideo           pulumi.StringPtrInput `pulumi:"kinesisvideo"`
	Kms                    pulumi.StringPtrInput `pulumi:"kms"`
	Lakeformation          pulumi.StringPtrInput `pulumi:"lakeformation"`
	Lambda                 pulumi.StringPtrInput `pulumi:"lambda"`
	Lexmodels              pulumi.StringPtrInput `pulumi:"lexmodels"`
	Licensemanager         pulumi.StringPtrInput `pulumi:"licensemanager"`
	Lightsail              pulumi.StringPtrInput `pulumi:"lightsail"`
	Macie                  pulumi.StringPtrInput `pulumi:"macie"`
	Managedblockchain      pulumi.StringPtrInput `pulumi:"managedblockchain"`
	Marketplacecatalog     pulumi.StringPtrInput `pulumi:"marketplacecatalog"`
	Mediaconnect           pulumi.StringPtrInput `pulumi:"mediaconnect"`
	Mediaconvert           pulumi.StringPtrInput `pulumi:"mediaconvert"`
	Medialive              pulumi.StringPtrInput `pulumi:"medialive"`
	Mediapackage           pulumi.StringPtrInput `pulumi:"mediapackage"`
	Mediastore             pulumi.StringPtrInput `pulumi:"mediastore"`
	Mediastoredata         pulumi.StringPtrInput `pulumi:"mediastoredata"`
	Mq                     pulumi.StringPtrInput `pulumi:"mq"`
	Neptune                pulumi.StringPtrInput `pulumi:"neptune"`
	Opsworks               pulumi.StringPtrInput `pulumi:"opsworks"`
	Organizations          pulumi.StringPtrInput `pulumi:"organizations"`
	Personalize            pulumi.StringPtrInput `pulumi:"personalize"`
	Pinpoint               pulumi.StringPtrInput `pulumi:"pinpoint"`
	Pricing                pulumi.StringPtrInput `pulumi:"pricing"`
	Qldb                   pulumi.StringPtrInput `pulumi:"qldb"`
	Quicksight             pulumi.StringPtrInput `pulumi:"quicksight"`
	R53                    pulumi.StringPtrInput `pulumi:"r53"`
	Ram                    pulumi.StringPtrInput `pulumi:"ram"`
	Rds                    pulumi.StringPtrInput `pulumi:"rds"`
	Redshift               pulumi.StringPtrInput `pulumi:"redshift"`
	Resourcegroups         pulumi.StringPtrInput `pulumi:"resourcegroups"`
	Route53                pulumi.StringPtrInput `pulumi:"route53"`
	Route53resolver        pulumi.StringPtrInput `pulumi:"route53resolver"`
	S3                     pulumi.StringPtrInput `pulumi:"s3"`
	S3control              pulumi.StringPtrInput `pulumi:"s3control"`
	Sagemaker              pulumi.StringPtrInput `pulumi:"sagemaker"`
	Sdb                    pulumi.StringPtrInput `pulumi:"sdb"`
	Secretsmanager         pulumi.StringPtrInput `pulumi:"secretsmanager"`
	Securityhub            pulumi.StringPtrInput `pulumi:"securityhub"`
	Serverlessrepo         pulumi.StringPtrInput `pulumi:"serverlessrepo"`
	Servicecatalog         pulumi.StringPtrInput `pulumi:"servicecatalog"`
	Servicediscovery       pulumi.StringPtrInput `pulumi:"servicediscovery"`
	Servicequotas          pulumi.StringPtrInput `pulumi:"servicequotas"`
	Ses                    pulumi.StringPtrInput `pulumi:"ses"`
	Shield                 pulumi.StringPtrInput `pulumi:"shield"`
	Sns                    pulumi.StringPtrInput `pulumi:"sns"`
	Sqs                    pulumi.StringPtrInput `pulumi:"sqs"`
	Ssm                    pulumi.StringPtrInput `pulumi:"ssm"`
	Stepfunctions          pulumi.StringPtrInput `pulumi:"stepfunctions"`
	Storagegateway         pulumi.StringPtrInput `pulumi:"storagegateway"`
	Sts                    pulumi.StringPtrInput `pulumi:"sts"`
	Swf                    pulumi.StringPtrInput `pulumi:"swf"`
	Transfer               pulumi.StringPtrInput `pulumi:"transfer"`
	Waf                    pulumi.StringPtrInput `pulumi:"waf"`
	Wafregional            pulumi.StringPtrInput `pulumi:"wafregional"`
	Wafv2                  pulumi.StringPtrInput `pulumi:"wafv2"`
	Worklink               pulumi.StringPtrInput `pulumi:"worklink"`
	Workmail               pulumi.StringPtrInput `pulumi:"workmail"`
	Workspaces             pulumi.StringPtrInput `pulumi:"workspaces"`
	Xray                   pulumi.StringPtrInput `pulumi:"xray"`
}

func (ProviderEndpointArgs) ElementType ¶ added in v1.19.0

func (ProviderEndpointArgs) ElementType() reflect.Type

func (ProviderEndpointArgs) ToProviderEndpointOutput ¶ added in v1.19.0

func (i ProviderEndpointArgs) ToProviderEndpointOutput() ProviderEndpointOutput

func (ProviderEndpointArgs) ToProviderEndpointOutputWithContext ¶ added in v1.19.0

func (i ProviderEndpointArgs) ToProviderEndpointOutputWithContext(ctx context.Context) ProviderEndpointOutput

type ProviderEndpointArray ¶ added in v1.19.0

type ProviderEndpointArray []ProviderEndpointInput

func (ProviderEndpointArray) ElementType ¶ added in v1.19.0

func (ProviderEndpointArray) ElementType() reflect.Type

func (ProviderEndpointArray) ToProviderEndpointArrayOutput ¶ added in v1.19.0

func (i ProviderEndpointArray) ToProviderEndpointArrayOutput() ProviderEndpointArrayOutput

func (ProviderEndpointArray) ToProviderEndpointArrayOutputWithContext ¶ added in v1.19.0

func (i ProviderEndpointArray) ToProviderEndpointArrayOutputWithContext(ctx context.Context) ProviderEndpointArrayOutput

type ProviderEndpointArrayInput ¶ added in v1.19.0

type ProviderEndpointArrayInput interface {
	pulumi.Input

	ToProviderEndpointArrayOutput() ProviderEndpointArrayOutput
	ToProviderEndpointArrayOutputWithContext(context.Context) ProviderEndpointArrayOutput
}

type ProviderEndpointArrayOutput ¶ added in v1.19.0

type ProviderEndpointArrayOutput struct{ *pulumi.OutputState }

func (ProviderEndpointArrayOutput) ElementType ¶ added in v1.19.0

func (ProviderEndpointArrayOutput) Index ¶ added in v1.19.0

func (ProviderEndpointArrayOutput) ToProviderEndpointArrayOutput ¶ added in v1.19.0

func (o ProviderEndpointArrayOutput) ToProviderEndpointArrayOutput() ProviderEndpointArrayOutput

func (ProviderEndpointArrayOutput) ToProviderEndpointArrayOutputWithContext ¶ added in v1.19.0

func (o ProviderEndpointArrayOutput) ToProviderEndpointArrayOutputWithContext(ctx context.Context) ProviderEndpointArrayOutput

type ProviderEndpointInput ¶ added in v1.19.0

type ProviderEndpointInput interface {
	pulumi.Input

	ToProviderEndpointOutput() ProviderEndpointOutput
	ToProviderEndpointOutputWithContext(context.Context) ProviderEndpointOutput
}

type ProviderEndpointOutput ¶ added in v1.19.0

type ProviderEndpointOutput struct{ *pulumi.OutputState }

func (ProviderEndpointOutput) Accessanalyzer ¶ added in v1.19.0

func (o ProviderEndpointOutput) Accessanalyzer() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Acm ¶ added in v1.19.0

func (ProviderEndpointOutput) Acmpca ¶ added in v1.19.0

func (ProviderEndpointOutput) Amplify ¶ added in v1.19.0

func (ProviderEndpointOutput) Apigateway ¶ added in v1.19.0

func (ProviderEndpointOutput) Applicationautoscaling ¶ added in v1.19.0

func (o ProviderEndpointOutput) Applicationautoscaling() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Applicationinsights ¶ added in v1.19.0

func (o ProviderEndpointOutput) Applicationinsights() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Appmesh ¶ added in v1.19.0

func (ProviderEndpointOutput) Appstream ¶ added in v1.19.0

func (ProviderEndpointOutput) Appsync ¶ added in v1.19.0

func (ProviderEndpointOutput) Athena ¶ added in v1.19.0

func (ProviderEndpointOutput) Autoscaling ¶ added in v1.19.0

func (ProviderEndpointOutput) Autoscalingplans ¶ added in v1.19.0

func (o ProviderEndpointOutput) Autoscalingplans() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Backup ¶ added in v1.19.0

func (ProviderEndpointOutput) Batch ¶ added in v1.19.0

func (ProviderEndpointOutput) Budgets ¶ added in v1.19.0

func (ProviderEndpointOutput) Cloud9 ¶ added in v1.19.0

func (ProviderEndpointOutput) Cloudformation ¶ added in v1.19.0

func (o ProviderEndpointOutput) Cloudformation() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Cloudfront ¶ added in v1.19.0

func (ProviderEndpointOutput) Cloudhsm ¶ added in v1.19.0

func (ProviderEndpointOutput) Cloudsearch ¶ added in v1.19.0

func (ProviderEndpointOutput) Cloudtrail ¶ added in v1.19.0

func (ProviderEndpointOutput) Cloudwatch ¶ added in v1.19.0

func (ProviderEndpointOutput) Cloudwatchevents ¶ added in v1.19.0

func (o ProviderEndpointOutput) Cloudwatchevents() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Cloudwatchlogs ¶ added in v1.19.0

func (o ProviderEndpointOutput) Cloudwatchlogs() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Codebuild ¶ added in v1.19.0

func (ProviderEndpointOutput) Codecommit ¶ added in v1.19.0

func (ProviderEndpointOutput) Codedeploy ¶ added in v1.19.0

func (ProviderEndpointOutput) Codepipeline ¶ added in v1.19.0

func (ProviderEndpointOutput) Cognitoidentity ¶ added in v1.19.0

func (o ProviderEndpointOutput) Cognitoidentity() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Cognitoidp ¶ added in v1.19.0

func (ProviderEndpointOutput) Configservice ¶ added in v1.19.0

func (o ProviderEndpointOutput) Configservice() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Cur ¶ added in v1.19.0

func (ProviderEndpointOutput) Dataexchange ¶ added in v1.19.0

func (ProviderEndpointOutput) Datapipeline ¶ added in v1.19.0

func (ProviderEndpointOutput) Datasync ¶ added in v1.19.0

func (ProviderEndpointOutput) Dax ¶ added in v1.19.0

func (ProviderEndpointOutput) Devicefarm ¶ added in v1.19.0

func (ProviderEndpointOutput) Directconnect ¶ added in v1.19.0

func (o ProviderEndpointOutput) Directconnect() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Dlm ¶ added in v1.19.0

func (ProviderEndpointOutput) Dms ¶ added in v1.19.0

func (ProviderEndpointOutput) Docdb ¶ added in v1.19.0

func (ProviderEndpointOutput) Ds ¶ added in v1.19.0

func (ProviderEndpointOutput) Dynamodb ¶ added in v1.19.0

func (ProviderEndpointOutput) Ec2 ¶ added in v1.19.0

func (ProviderEndpointOutput) Ecr ¶ added in v1.19.0

func (ProviderEndpointOutput) Ecs ¶ added in v1.19.0

func (ProviderEndpointOutput) Efs ¶ added in v1.19.0

func (ProviderEndpointOutput) Eks ¶ added in v1.19.0

func (ProviderEndpointOutput) Elasticache ¶ added in v1.19.0

func (ProviderEndpointOutput) Elasticbeanstalk ¶ added in v1.19.0

func (o ProviderEndpointOutput) Elasticbeanstalk() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Elastictranscoder ¶ added in v1.19.0

func (o ProviderEndpointOutput) Elastictranscoder() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Elb ¶ added in v1.19.0

func (ProviderEndpointOutput) ElementType ¶ added in v1.19.0

func (ProviderEndpointOutput) ElementType() reflect.Type

func (ProviderEndpointOutput) Emr ¶ added in v1.19.0

func (ProviderEndpointOutput) Es ¶ added in v1.19.0

func (ProviderEndpointOutput) Firehose ¶ added in v1.19.0

func (ProviderEndpointOutput) Fms ¶ added in v1.19.0

func (ProviderEndpointOutput) Forecast ¶ added in v1.19.0

func (ProviderEndpointOutput) Fsx ¶ added in v1.19.0

func (ProviderEndpointOutput) Gamelift ¶ added in v1.19.0

func (ProviderEndpointOutput) Glacier ¶ added in v1.19.0

func (ProviderEndpointOutput) Globalaccelerator ¶ added in v1.19.0

func (o ProviderEndpointOutput) Globalaccelerator() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Glue ¶ added in v1.19.0

func (ProviderEndpointOutput) Greengrass ¶ added in v1.19.0

func (ProviderEndpointOutput) Guardduty ¶ added in v1.19.0

func (ProviderEndpointOutput) Iam ¶ added in v1.19.0

func (ProviderEndpointOutput) Imagebuilder ¶ added in v1.19.0

func (ProviderEndpointOutput) Inspector ¶ added in v1.19.0

func (ProviderEndpointOutput) Iot ¶ added in v1.19.0

func (ProviderEndpointOutput) Iotanalytics ¶ added in v1.19.0

func (ProviderEndpointOutput) Iotevents ¶ added in v1.19.0

func (ProviderEndpointOutput) Kafka ¶ added in v1.19.0

func (ProviderEndpointOutput) Kinesis ¶ added in v1.19.0

func (ProviderEndpointOutput) KinesisAnalytics ¶ added in v1.19.0

func (o ProviderEndpointOutput) KinesisAnalytics() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Kinesisanalytics ¶ added in v1.19.0

func (o ProviderEndpointOutput) Kinesisanalytics() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Kinesisvideo ¶ added in v1.19.0

func (ProviderEndpointOutput) Kms ¶ added in v1.19.0

func (ProviderEndpointOutput) Lakeformation ¶ added in v1.19.0

func (o ProviderEndpointOutput) Lakeformation() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Lambda ¶ added in v1.19.0

func (ProviderEndpointOutput) Lexmodels ¶ added in v1.19.0

func (ProviderEndpointOutput) Licensemanager ¶ added in v1.19.0

func (o ProviderEndpointOutput) Licensemanager() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Lightsail ¶ added in v1.19.0

func (ProviderEndpointOutput) Macie ¶ added in v1.19.0

func (ProviderEndpointOutput) Managedblockchain ¶ added in v1.19.0

func (o ProviderEndpointOutput) Managedblockchain() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Marketplacecatalog ¶ added in v1.19.0

func (o ProviderEndpointOutput) Marketplacecatalog() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Mediaconnect ¶ added in v1.19.0

func (ProviderEndpointOutput) Mediaconvert ¶ added in v1.19.0

func (ProviderEndpointOutput) Medialive ¶ added in v1.19.0

func (ProviderEndpointOutput) Mediapackage ¶ added in v1.19.0

func (ProviderEndpointOutput) Mediastore ¶ added in v1.19.0

func (ProviderEndpointOutput) Mediastoredata ¶ added in v1.19.0

func (o ProviderEndpointOutput) Mediastoredata() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Mq ¶ added in v1.19.0

func (ProviderEndpointOutput) Neptune ¶ added in v1.19.0

func (ProviderEndpointOutput) Opsworks ¶ added in v1.19.0

func (ProviderEndpointOutput) Organizations ¶ added in v1.19.0

func (o ProviderEndpointOutput) Organizations() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Personalize ¶ added in v1.19.0

func (ProviderEndpointOutput) Pinpoint ¶ added in v1.19.0

func (ProviderEndpointOutput) Pricing ¶ added in v1.19.0

func (ProviderEndpointOutput) Qldb ¶ added in v1.19.0

func (ProviderEndpointOutput) Quicksight ¶ added in v1.19.0

func (ProviderEndpointOutput) R53 ¶ added in v1.19.0

func (ProviderEndpointOutput) Ram ¶ added in v1.19.0

func (ProviderEndpointOutput) Rds ¶ added in v1.19.0

func (ProviderEndpointOutput) Redshift ¶ added in v1.19.0

func (ProviderEndpointOutput) Resourcegroups ¶ added in v1.19.0

func (o ProviderEndpointOutput) Resourcegroups() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Route53 ¶ added in v1.19.0

func (ProviderEndpointOutput) Route53resolver ¶ added in v1.19.0

func (o ProviderEndpointOutput) Route53resolver() pulumi.StringPtrOutput

func (ProviderEndpointOutput) S3 ¶ added in v1.19.0

func (ProviderEndpointOutput) S3control ¶ added in v1.19.0

func (ProviderEndpointOutput) Sagemaker ¶ added in v1.19.0

func (ProviderEndpointOutput) Sdb ¶ added in v1.19.0

func (ProviderEndpointOutput) Secretsmanager ¶ added in v1.19.0

func (o ProviderEndpointOutput) Secretsmanager() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Securityhub ¶ added in v1.19.0

func (ProviderEndpointOutput) Serverlessrepo ¶ added in v1.19.0

func (o ProviderEndpointOutput) Serverlessrepo() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Servicecatalog ¶ added in v1.19.0

func (o ProviderEndpointOutput) Servicecatalog() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Servicediscovery ¶ added in v1.19.0

func (o ProviderEndpointOutput) Servicediscovery() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Servicequotas ¶ added in v1.19.0

func (o ProviderEndpointOutput) Servicequotas() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Ses ¶ added in v1.19.0

func (ProviderEndpointOutput) Shield ¶ added in v1.19.0

func (ProviderEndpointOutput) Sns ¶ added in v1.19.0

func (ProviderEndpointOutput) Sqs ¶ added in v1.19.0

func (ProviderEndpointOutput) Ssm ¶ added in v1.19.0

func (ProviderEndpointOutput) Stepfunctions ¶ added in v1.19.0

func (o ProviderEndpointOutput) Stepfunctions() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Storagegateway ¶ added in v1.19.0

func (o ProviderEndpointOutput) Storagegateway() pulumi.StringPtrOutput

func (ProviderEndpointOutput) Sts ¶ added in v1.19.0

func (ProviderEndpointOutput) Swf ¶ added in v1.19.0

func (ProviderEndpointOutput) ToProviderEndpointOutput ¶ added in v1.19.0

func (o ProviderEndpointOutput) ToProviderEndpointOutput() ProviderEndpointOutput

func (ProviderEndpointOutput) ToProviderEndpointOutputWithContext ¶ added in v1.19.0

func (o ProviderEndpointOutput) ToProviderEndpointOutputWithContext(ctx context.Context) ProviderEndpointOutput

func (ProviderEndpointOutput) Transfer ¶ added in v1.19.0

func (ProviderEndpointOutput) Waf ¶ added in v1.19.0

func (ProviderEndpointOutput) Wafregional ¶ added in v1.19.0

func (ProviderEndpointOutput) Wafv2 ¶ added in v1.19.0

func (ProviderEndpointOutput) Workmail ¶ added in v1.22.0

func (ProviderEndpointOutput) Workspaces ¶ added in v1.19.0

func (ProviderEndpointOutput) Xray ¶ added in v1.19.0

Directories ¶

Path Synopsis
nolint: lll
nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll
nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll
nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll
nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll
nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll
nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll
nolint: lll
nolint: lll
nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll
nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll nolint: lll nolint: lll nolint: lll
nolint: lll
nolint: lll

Jump to

Keyboard shortcuts

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