Class: Aws::KinesisAnalyticsV2::Types::MavenReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::MavenReference
- Defined in:
- gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
The information required to specify a Maven reference. You can use Maven references to specify dependency JAR files.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#artifact_id ⇒ String
The artifact ID of the Maven reference.
-
#group_id ⇒ String
The group ID of the Maven reference.
-
#version ⇒ String
The version of the Maven reference.
Instance Attribute Details
#artifact_id ⇒ String
The artifact ID of the Maven reference.
3619 3620 3621 3622 3623 3624 3625 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 3619 class MavenReference < Struct.new( :group_id, :artifact_id, :version) SENSITIVE = [] include Aws::Structure end |
#group_id ⇒ String
The group ID of the Maven reference.
3619 3620 3621 3622 3623 3624 3625 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 3619 class MavenReference < Struct.new( :group_id, :artifact_id, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The version of the Maven reference.
3619 3620 3621 3622 3623 3624 3625 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 3619 class MavenReference < Struct.new( :group_id, :artifact_id, :version) SENSITIVE = [] include Aws::Structure end |