Class: Aws::KinesisAnalyticsV2::Types::MavenReference

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

Instance Attribute Details

#artifact_idString

The artifact ID of the Maven reference.

Returns:

  • (String)


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_idString

The group ID of the Maven reference.

Returns:

  • (String)


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

#versionString

The version of the Maven reference.

Returns:

  • (String)


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