Class: Aws::Pipes::Types::SelfManagedKafkaAccessConfigurationVpc
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::SelfManagedKafkaAccessConfigurationVpc
- Defined in:
- gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb
Overview
This structure specifies the VPC subnets and security groups for the stream, and whether a public IP address is to be used.
Constant Summary collapse
- SENSITIVE =
[:subnets, :security_group]
Instance Attribute Summary collapse
-
#security_group ⇒ Array<String>
Specifies the security groups associated with the stream.
-
#subnets ⇒ Array<String>
Specifies the subnets associated with the stream.
Instance Attribute Details
#security_group ⇒ Array<String>
Specifies the security groups associated with the stream. These security groups must all be in the same VPC. You can specify as many as five security groups.
2973 2974 2975 2976 2977 2978 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2973 class SelfManagedKafkaAccessConfigurationVpc < Struct.new( :subnets, :security_group) SENSITIVE = [:subnets, :security_group] include Aws::Structure end |
#subnets ⇒ Array<String>
Specifies the subnets associated with the stream. These subnets must all be in the same VPC. You can specify as many as 16 subnets.
2973 2974 2975 2976 2977 2978 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2973 class SelfManagedKafkaAccessConfigurationVpc < Struct.new( :subnets, :security_group) SENSITIVE = [:subnets, :security_group] include Aws::Structure end |