Class: Aws::IoT::Types::VpcDestinationSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::VpcDestinationSummary
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
The summary of a virtual private cloud (VPC) destination.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).
 - 
  
    
      #security_groups  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The security groups of the VPC destination.
 - 
  
    
      #subnet_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The subnet IDs of the VPC destination.
 - 
  
    
      #vpc_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the VPC.
 
Instance Attribute Details
#role_arn ⇒ String
The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).
      17218 17219 17220 17221 17222 17223 17224 17225  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 17218 class VpcDestinationSummary < Struct.new( :subnet_ids, :security_groups, :vpc_id, :role_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#security_groups ⇒ Array<String>
The security groups of the VPC destination.
      17218 17219 17220 17221 17222 17223 17224 17225  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 17218 class VpcDestinationSummary < Struct.new( :subnet_ids, :security_groups, :vpc_id, :role_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#subnet_ids ⇒ Array<String>
The subnet IDs of the VPC destination.
      17218 17219 17220 17221 17222 17223 17224 17225  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 17218 class VpcDestinationSummary < Struct.new( :subnet_ids, :security_groups, :vpc_id, :role_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#vpc_id ⇒ String
The ID of the VPC.
      17218 17219 17220 17221 17222 17223 17224 17225  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 17218 class VpcDestinationSummary < Struct.new( :subnet_ids, :security_groups, :vpc_id, :role_arn) SENSITIVE = [] include Aws::Structure end  |