Class DefaultSecurityGroupArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Ec2
Assembly: Pulumi.Aws.dll
Syntax
public sealed class DefaultSecurityGroupArgs : ResourceArgs
Constructors
View SourceDefaultSecurityGroupArgs()
Declaration
public DefaultSecurityGroupArgs()
Properties
View SourceEgress
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> |
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> |
RevokeRulesOnDelete
Declaration
public Input<bool> RevokeRulesOnDelete { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Tags
A map of tags to assign to the resource.
Declaration
public InputMap<object> Tags { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.Object> |
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> |