Show / Hide Table of Contents

Class DefaultSecurityGroupState

Inheritance
System.Object
InputArgs
ResourceArgs
DefaultSecurityGroupState
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 DefaultSecurityGroupState : ResourceArgs

Constructors

View Source

DefaultSecurityGroupState()

Declaration
public DefaultSecurityGroupState()

Properties

View Source

Arn

Declaration
public Input<string> Arn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Description

The description of the security group

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Egress

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

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

Ingress

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

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

Name

The name of the security group

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

OwnerId

The owner ID.

Declaration
public Input<string> OwnerId { get; set; }
Property Value
Type Description
Input<System.String>
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.