Class: Aws::KinesisAnalyticsV2::Types::MavenReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::MavenReference
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
Note:
When making an API call, you may pass MavenReference data as a hash:
{
group_id: "MavenGroupId", # required
artifact_id: "MavenArtifactId", # required
version: "MavenVersion", # required
}
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.
4735 4736 4737 4738 4739 4740 4741 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4735 class MavenReference < Struct.new( :group_id, :artifact_id, :version) SENSITIVE = [] include Aws::Structure end |
#group_id ⇒ String
The group ID of the Maven reference.
4735 4736 4737 4738 4739 4740 4741 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4735 class MavenReference < Struct.new( :group_id, :artifact_id, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The version of the Maven reference.
4735 4736 4737 4738 4739 4740 4741 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4735 class MavenReference < Struct.new( :group_id, :artifact_id, :version) SENSITIVE = [] include Aws::Structure end |