Show / Hide Table of Contents

Class DefaultSecurityGroupArgs

Inheritance
System.Object
InputArgs
ResourceArgs
DefaultSecurityGroupArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Ec2
Assembly: Pulumi.Aws.dll
Syntax
public sealed class DefaultSecurityGroupArgs : ResourceArgs

Constructors

View Source

DefaultSecurityGroupArgs()

Declaration
public DefaultSecurityGroupArgs()

Properties

View Source

Egress

Can be specified multiple times for each egress rule. Each egress block supports fields documented below.

Declaration
public InputList<DefaultSecurityGroupEgressArgs> Egress { get; set; }
Property Value
Type Description
InputList<DefaultSecurityGroupEgressArgs>
View Source

Ingress

Can be specified multiple times for each ingress rule. Each ingress block supports fields documented below.

Declaration
public InputList<DefaultSecurityGroupIngressArgs> Ingress { get; set; }
Property Value
Type Description
InputList<DefaultSecurityGroupIngressArgs>
View Source

RevokeRulesOnDelete

Declaration
public Input<bool> RevokeRulesOnDelete { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Tags

A map of tags to assign to the resource.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

VpcId

The VPC ID. Note that changing the vpc_id will not restore any default security group rules that were modified, added, or removed. It will be left in its current state

Declaration
public Input<string> VpcId { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.