Class: Aws::IoT::Types::CreatePackageVersionRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Constant Summary collapse

SENSITIVE =
[:description, :attributes]

Instance Attribute Summary collapse

Instance Attribute Details

#attributesHash<String,String>

Metadata that can be used to define a package version’s configuration. For example, the S3 file location, configuration options that are being sent to the device or fleet.

The combined size of all the attributes on a package version is limited to 3KB.

Returns:

  • (Hash<String,String>)


3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
# File 'lib/aws-sdk-iot/types.rb', line 3382

class CreatePackageVersionRequest < Struct.new(
  :package_name,
  :version_name,
  :description,
  :attributes,
  :tags,
  :client_token)
  SENSITIVE = [:description, :attributes]
  include Aws::Structure
end

#client_tokenString

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don’t reuse this client token if a new idempotent request is required.

**A suitable default value is auto-generated.** You should normally not need to pass this option.

Returns:

  • (String)


3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
# File 'lib/aws-sdk-iot/types.rb', line 3382

class CreatePackageVersionRequest < Struct.new(
  :package_name,
  :version_name,
  :description,
  :attributes,
  :tags,
  :client_token)
  SENSITIVE = [:description, :attributes]
  include Aws::Structure
end

#descriptionString

A summary of the package version being created. This can be used to outline the package’s contents or purpose.

Returns:

  • (String)


3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
# File 'lib/aws-sdk-iot/types.rb', line 3382

class CreatePackageVersionRequest < Struct.new(
  :package_name,
  :version_name,
  :description,
  :attributes,
  :tags,
  :client_token)
  SENSITIVE = [:description, :attributes]
  include Aws::Structure
end

#package_nameString

The name of the associated software package.

Returns:

  • (String)


3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
# File 'lib/aws-sdk-iot/types.rb', line 3382

class CreatePackageVersionRequest < Struct.new(
  :package_name,
  :version_name,
  :description,
  :attributes,
  :tags,
  :client_token)
  SENSITIVE = [:description, :attributes]
  include Aws::Structure
end

#tagsHash<String,String>

Metadata that can be used to manage the package version.

Returns:

  • (Hash<String,String>)


3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
# File 'lib/aws-sdk-iot/types.rb', line 3382

class CreatePackageVersionRequest < Struct.new(
  :package_name,
  :version_name,
  :description,
  :attributes,
  :tags,
  :client_token)
  SENSITIVE = [:description, :attributes]
  include Aws::Structure
end

#version_nameString

The name of the new package version.

Returns:

  • (String)


3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
# File 'lib/aws-sdk-iot/types.rb', line 3382

class CreatePackageVersionRequest < Struct.new(
  :package_name,
  :version_name,
  :description,
  :attributes,
  :tags,
  :client_token)
  SENSITIVE = [:description, :attributes]
  include Aws::Structure
end