Class: Aws::FMS::Types::SecurityGroupRuleDescription
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::FMS::Types::SecurityGroupRuleDescription
 
 
- Defined in:
 - gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb
 
Overview
Describes a set of permissions for a security group rule.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #from_port  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The start of the port range for the TCP and UDP protocols, or an ICMP/ICMPv6 type number.
 - 
  
    
      #ipv4_range  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The IPv4 ranges for the security group rule.
 - 
  
    
      #ipv6_range  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The IPv6 ranges for the security group rule.
 - 
  
    
      #prefix_list_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the prefix list for the security group rule.
 - 
  
    
      #protocol  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The IP protocol name (
tcp,udp,icmp,icmpv6) or number. - 
  
    
      #to_port  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The end of the port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code.
 
Instance Attribute Details
#from_port ⇒ Integer
The start of the port range for the TCP and UDP protocols, or an
ICMP/ICMPv6 type number. A value of -1 indicates all ICMP/ICMPv6
types.
      4803 4804 4805 4806 4807 4808 4809 4810 4811 4812  | 
    
      # File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 4803 class SecurityGroupRuleDescription < Struct.new( :ipv4_range, :ipv6_range, :prefix_list_id, :protocol, :from_port, :to_port) SENSITIVE = [] include Aws::Structure end  | 
  
#ipv4_range ⇒ String
The IPv4 ranges for the security group rule.
      4803 4804 4805 4806 4807 4808 4809 4810 4811 4812  | 
    
      # File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 4803 class SecurityGroupRuleDescription < Struct.new( :ipv4_range, :ipv6_range, :prefix_list_id, :protocol, :from_port, :to_port) SENSITIVE = [] include Aws::Structure end  | 
  
#ipv6_range ⇒ String
The IPv6 ranges for the security group rule.
      4803 4804 4805 4806 4807 4808 4809 4810 4811 4812  | 
    
      # File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 4803 class SecurityGroupRuleDescription < Struct.new( :ipv4_range, :ipv6_range, :prefix_list_id, :protocol, :from_port, :to_port) SENSITIVE = [] include Aws::Structure end  | 
  
#prefix_list_id ⇒ String
The ID of the prefix list for the security group rule.
      4803 4804 4805 4806 4807 4808 4809 4810 4811 4812  | 
    
      # File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 4803 class SecurityGroupRuleDescription < Struct.new( :ipv4_range, :ipv6_range, :prefix_list_id, :protocol, :from_port, :to_port) SENSITIVE = [] include Aws::Structure end  | 
  
#protocol ⇒ String
The IP protocol name (tcp, udp, icmp, icmpv6) or number.
      4803 4804 4805 4806 4807 4808 4809 4810 4811 4812  | 
    
      # File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 4803 class SecurityGroupRuleDescription < Struct.new( :ipv4_range, :ipv6_range, :prefix_list_id, :protocol, :from_port, :to_port) SENSITIVE = [] include Aws::Structure end  | 
  
#to_port ⇒ Integer
The end of the port range for the TCP and UDP protocols, or an
ICMP/ICMPv6 code. A value of -1 indicates all ICMP/ICMPv6 codes.
      4803 4804 4805 4806 4807 4808 4809 4810 4811 4812  | 
    
      # File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 4803 class SecurityGroupRuleDescription < Struct.new( :ipv4_range, :ipv6_range, :prefix_list_id, :protocol, :from_port, :to_port) SENSITIVE = [] include Aws::Structure end  |