Class: Aws::Pipes::Types::SelfManagedKafkaAccessConfigurationVpc

Inherits:
Struct
  • Object
show all
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 =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#security_groupArray<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. If you do not specify a security group, the default security group for the VPC is used.

Returns:

  • (Array<String>)


2760
2761
2762
2763
2764
2765
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2760

class SelfManagedKafkaAccessConfigurationVpc < Struct.new(
  :security_group,
  :subnets)
  SENSITIVE = []
  include Aws::Structure
end

#subnetsArray<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.

Returns:

  • (Array<String>)


2760
2761
2762
2763
2764
2765
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2760

class SelfManagedKafkaAccessConfigurationVpc < Struct.new(
  :security_group,
  :subnets)
  SENSITIVE = []
  include Aws::Structure
end