Class: Aws::Kafka::Types::ServerlessRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::ServerlessRequest
- Defined in:
- gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb
Overview
Note:
When making an API call, you may pass ServerlessRequest data as a hash:
{
vpc_configs: [ # required
{
subnet_ids: ["__string"], # required
security_group_ids: ["__string"],
},
],
client_authentication: {
sasl: {
iam: {
enabled: false,
},
},
},
}
Creates serverless cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_authentication ⇒ Types::ServerlessClientAuthentication
Information about the serverless cluster client authentication.
-
#vpc_configs ⇒ Array<Types::VpcConfig>
Information on vpc config for the serverless cluster.
Instance Attribute Details
#client_authentication ⇒ Types::ServerlessClientAuthentication
Information about the serverless cluster client authentication.
2335 2336 2337 2338 2339 2340 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2335 class ServerlessRequest < Struct.new( :vpc_configs, :client_authentication) SENSITIVE = [] include Aws::Structure end |
#vpc_configs ⇒ Array<Types::VpcConfig>
Information on vpc config for the serverless cluster.
2335 2336 2337 2338 2339 2340 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2335 class ServerlessRequest < Struct.new( :vpc_configs, :client_authentication) SENSITIVE = [] include Aws::Structure end |