Class: Aws::Imagebuilder::Types::ImagePackage

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb

Overview

Represents a package installed on an Image Builder image.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#package_nameString

The name of the package as reported to the operating system package manager.

Returns:

  • (String)


3486
3487
3488
3489
3490
3491
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 3486

class ImagePackage < Struct.new(
  :package_name,
  :package_version)
  SENSITIVE = []
  include Aws::Structure
end

#package_versionString

The version of the package as reported to the operating system package manager.

Returns:

  • (String)


3486
3487
3488
3489
3490
3491
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 3486

class ImagePackage < Struct.new(
  :package_name,
  :package_version)
  SENSITIVE = []
  include Aws::Structure
end