1. Packages
  2. AWS
  3. API Docs
  4. ec2
  5. VpcBlockPublicAccessOptions
AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi

aws.ec2.VpcBlockPublicAccessOptions

Explore with Pulumi AI

aws logo
AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi

    Resource for managing an AWS VPC Block Public Access Options.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.ec2.VpcBlockPublicAccessOptions("example", {internetGatewayBlockMode: "block-bidirectional"});
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.ec2.VpcBlockPublicAccessOptions("example", internet_gateway_block_mode="block-bidirectional")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ec2.NewVpcBlockPublicAccessOptions(ctx, "example", &ec2.VpcBlockPublicAccessOptionsArgs{
    			InternetGatewayBlockMode: pulumi.String("block-bidirectional"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Ec2.VpcBlockPublicAccessOptions("example", new()
        {
            InternetGatewayBlockMode = "block-bidirectional",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.ec2.VpcBlockPublicAccessOptions;
    import com.pulumi.aws.ec2.VpcBlockPublicAccessOptionsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new VpcBlockPublicAccessOptions("example", VpcBlockPublicAccessOptionsArgs.builder()
                .internetGatewayBlockMode("block-bidirectional")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:ec2:VpcBlockPublicAccessOptions
        properties:
          internetGatewayBlockMode: block-bidirectional
    

    Create VpcBlockPublicAccessOptions Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new VpcBlockPublicAccessOptions(name: string, args: VpcBlockPublicAccessOptionsArgs, opts?: CustomResourceOptions);
    @overload
    def VpcBlockPublicAccessOptions(resource_name: str,
                                    args: VpcBlockPublicAccessOptionsArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def VpcBlockPublicAccessOptions(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    internet_gateway_block_mode: Optional[str] = None,
                                    timeouts: Optional[VpcBlockPublicAccessOptionsTimeoutsArgs] = None)
    func NewVpcBlockPublicAccessOptions(ctx *Context, name string, args VpcBlockPublicAccessOptionsArgs, opts ...ResourceOption) (*VpcBlockPublicAccessOptions, error)
    public VpcBlockPublicAccessOptions(string name, VpcBlockPublicAccessOptionsArgs args, CustomResourceOptions? opts = null)
    public VpcBlockPublicAccessOptions(String name, VpcBlockPublicAccessOptionsArgs args)
    public VpcBlockPublicAccessOptions(String name, VpcBlockPublicAccessOptionsArgs args, CustomResourceOptions options)
    
    type: aws:ec2:VpcBlockPublicAccessOptions
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args VpcBlockPublicAccessOptionsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args VpcBlockPublicAccessOptionsArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args VpcBlockPublicAccessOptionsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VpcBlockPublicAccessOptionsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VpcBlockPublicAccessOptionsArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var vpcBlockPublicAccessOptionsResource = new Aws.Ec2.VpcBlockPublicAccessOptions("vpcBlockPublicAccessOptionsResource", new()
    {
        InternetGatewayBlockMode = "string",
        Timeouts = new Aws.Ec2.Inputs.VpcBlockPublicAccessOptionsTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := ec2.NewVpcBlockPublicAccessOptions(ctx, "vpcBlockPublicAccessOptionsResource", &ec2.VpcBlockPublicAccessOptionsArgs{
    	InternetGatewayBlockMode: pulumi.String("string"),
    	Timeouts: &ec2.VpcBlockPublicAccessOptionsTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var vpcBlockPublicAccessOptionsResource = new VpcBlockPublicAccessOptions("vpcBlockPublicAccessOptionsResource", VpcBlockPublicAccessOptionsArgs.builder()
        .internetGatewayBlockMode("string")
        .timeouts(VpcBlockPublicAccessOptionsTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    vpc_block_public_access_options_resource = aws.ec2.VpcBlockPublicAccessOptions("vpcBlockPublicAccessOptionsResource",
        internet_gateway_block_mode="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const vpcBlockPublicAccessOptionsResource = new aws.ec2.VpcBlockPublicAccessOptions("vpcBlockPublicAccessOptionsResource", {
        internetGatewayBlockMode: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:ec2:VpcBlockPublicAccessOptions
    properties:
        internetGatewayBlockMode: string
        timeouts:
            create: string
            delete: string
            update: string
    

    VpcBlockPublicAccessOptions Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The VpcBlockPublicAccessOptions resource accepts the following input properties:

    InternetGatewayBlockMode string
    Block mode. Needs to be one of block-bidirectional, block-ingress, off. If this resource is deleted, then this value will be set to off in the AWS account and region.
    Timeouts VpcBlockPublicAccessOptionsTimeouts
    InternetGatewayBlockMode string
    Block mode. Needs to be one of block-bidirectional, block-ingress, off. If this resource is deleted, then this value will be set to off in the AWS account and region.
    Timeouts VpcBlockPublicAccessOptionsTimeoutsArgs
    internetGatewayBlockMode String
    Block mode. Needs to be one of block-bidirectional, block-ingress, off. If this resource is deleted, then this value will be set to off in the AWS account and region.
    timeouts VpcBlockPublicAccessOptionsTimeouts
    internetGatewayBlockMode string
    Block mode. Needs to be one of block-bidirectional, block-ingress, off. If this resource is deleted, then this value will be set to off in the AWS account and region.
    timeouts VpcBlockPublicAccessOptionsTimeouts
    internet_gateway_block_mode str
    Block mode. Needs to be one of block-bidirectional, block-ingress, off. If this resource is deleted, then this value will be set to off in the AWS account and region.
    timeouts VpcBlockPublicAccessOptionsTimeoutsArgs
    internetGatewayBlockMode String
    Block mode. Needs to be one of block-bidirectional, block-ingress, off. If this resource is deleted, then this value will be set to off in the AWS account and region.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the VpcBlockPublicAccessOptions resource produces the following output properties:

    AwsAccountId string
    The AWS account id to which these options apply.
    AwsRegion string
    The AWS region to which these options apply.
    Id string
    The provider-assigned unique ID for this managed resource.
    AwsAccountId string
    The AWS account id to which these options apply.
    AwsRegion string
    The AWS region to which these options apply.
    Id string
    The provider-assigned unique ID for this managed resource.
    awsAccountId String
    The AWS account id to which these options apply.
    awsRegion String
    The AWS region to which these options apply.
    id String
    The provider-assigned unique ID for this managed resource.
    awsAccountId string
    The AWS account id to which these options apply.
    awsRegion string
    The AWS region to which these options apply.
    id string
    The provider-assigned unique ID for this managed resource.
    aws_account_id str
    The AWS account id to which these options apply.
    aws_region str
    The AWS region to which these options apply.
    id str
    The provider-assigned unique ID for this managed resource.
    awsAccountId String
    The AWS account id to which these options apply.
    awsRegion String
    The AWS region to which these options apply.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing VpcBlockPublicAccessOptions Resource

    Get an existing VpcBlockPublicAccessOptions resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: VpcBlockPublicAccessOptionsState, opts?: CustomResourceOptions): VpcBlockPublicAccessOptions
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            aws_account_id: Optional[str] = None,
            aws_region: Optional[str] = None,
            internet_gateway_block_mode: Optional[str] = None,
            timeouts: Optional[VpcBlockPublicAccessOptionsTimeoutsArgs] = None) -> VpcBlockPublicAccessOptions
    func GetVpcBlockPublicAccessOptions(ctx *Context, name string, id IDInput, state *VpcBlockPublicAccessOptionsState, opts ...ResourceOption) (*VpcBlockPublicAccessOptions, error)
    public static VpcBlockPublicAccessOptions Get(string name, Input<string> id, VpcBlockPublicAccessOptionsState? state, CustomResourceOptions? opts = null)
    public static VpcBlockPublicAccessOptions get(String name, Output<String> id, VpcBlockPublicAccessOptionsState state, CustomResourceOptions options)
    resources:  _:    type: aws:ec2:VpcBlockPublicAccessOptions    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AwsAccountId string
    The AWS account id to which these options apply.
    AwsRegion string
    The AWS region to which these options apply.
    InternetGatewayBlockMode string
    Block mode. Needs to be one of block-bidirectional, block-ingress, off. If this resource is deleted, then this value will be set to off in the AWS account and region.
    Timeouts VpcBlockPublicAccessOptionsTimeouts
    AwsAccountId string
    The AWS account id to which these options apply.
    AwsRegion string
    The AWS region to which these options apply.
    InternetGatewayBlockMode string
    Block mode. Needs to be one of block-bidirectional, block-ingress, off. If this resource is deleted, then this value will be set to off in the AWS account and region.
    Timeouts VpcBlockPublicAccessOptionsTimeoutsArgs
    awsAccountId String
    The AWS account id to which these options apply.
    awsRegion String
    The AWS region to which these options apply.
    internetGatewayBlockMode String
    Block mode. Needs to be one of block-bidirectional, block-ingress, off. If this resource is deleted, then this value will be set to off in the AWS account and region.
    timeouts VpcBlockPublicAccessOptionsTimeouts
    awsAccountId string
    The AWS account id to which these options apply.
    awsRegion string
    The AWS region to which these options apply.
    internetGatewayBlockMode string
    Block mode. Needs to be one of block-bidirectional, block-ingress, off. If this resource is deleted, then this value will be set to off in the AWS account and region.
    timeouts VpcBlockPublicAccessOptionsTimeouts
    aws_account_id str
    The AWS account id to which these options apply.
    aws_region str
    The AWS region to which these options apply.
    internet_gateway_block_mode str
    Block mode. Needs to be one of block-bidirectional, block-ingress, off. If this resource is deleted, then this value will be set to off in the AWS account and region.
    timeouts VpcBlockPublicAccessOptionsTimeoutsArgs
    awsAccountId String
    The AWS account id to which these options apply.
    awsRegion String
    The AWS region to which these options apply.
    internetGatewayBlockMode String
    Block mode. Needs to be one of block-bidirectional, block-ingress, off. If this resource is deleted, then this value will be set to off in the AWS account and region.
    timeouts Property Map

    Supporting Types

    VpcBlockPublicAccessOptionsTimeouts, VpcBlockPublicAccessOptionsTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import VPC Block Public Access Options using the aws_region. For example:

    $ pulumi import aws:ec2/vpcBlockPublicAccessOptions:VpcBlockPublicAccessOptions example us-east-1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi