Struct cfn::aws::ec2::SecurityGroupIngressProperties [] [src]

pub struct SecurityGroupIngressProperties {
    pub cidr_ip: Option<Value<String>>,
    pub cidr_ipv6: Option<Value<String>>,
    pub description: Option<Value<String>>,
    pub from_port: Option<Value<u32>>,
    pub group_id: Option<Value<String>>,
    pub group_name: Option<Value<String>>,
    pub ip_protocol: Value<String>,
    pub source_security_group_id: Option<Value<String>>,
    pub source_security_group_name: Option<Value<String>>,
    pub source_security_group_owner_id: Option<Value<String>>,
    pub to_port: Option<Value<u32>>,
}

Properties for the SecurityGroupIngress resource.

Fields

Property CidrIp.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property CidrIpv6.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Description.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property FromPort.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property GroupId.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property GroupName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property IpProtocol.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property SourceSecurityGroupId.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property SourceSecurityGroupName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property SourceSecurityGroupOwnerId.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property ToPort.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Trait Implementations

impl Debug for SecurityGroupIngressProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for SecurityGroupIngressProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for SecurityGroupIngressProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<SecurityGroupIngressProperties> for SecurityGroupIngress
[src]

[src]

Performs the conversion.

Auto Trait Implementations