Class: Aws::IoT::Types::StartSigningJobParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::StartSigningJobParameter
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass StartSigningJobParameter data as a hash:
{
signing_profile_parameter: {
certificate_arn: "CertificateArn",
platform: "Platform",
certificate_path_on_device: "CertificatePathOnDevice",
},
signing_profile_name: "SigningProfileName",
destination: {
s3_destination: {
bucket: "S3Bucket",
prefix: "Prefix",
},
},
}
Information required to start a signing job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination ⇒ Types::Destination
The location to write the code-signed file.
-
#signing_profile_name ⇒ String
The code-signing profile name.
-
#signing_profile_parameter ⇒ Types::SigningProfileParameter
Describes the code-signing profile.
Instance Attribute Details
#destination ⇒ Types::Destination
The location to write the code-signed file.
16888 16889 16890 16891 16892 16893 16894 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16888 class StartSigningJobParameter < Struct.new( :signing_profile_parameter, :signing_profile_name, :destination) SENSITIVE = [] include Aws::Structure end |
#signing_profile_name ⇒ String
The code-signing profile name.
16888 16889 16890 16891 16892 16893 16894 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16888 class StartSigningJobParameter < Struct.new( :signing_profile_parameter, :signing_profile_name, :destination) SENSITIVE = [] include Aws::Structure end |
#signing_profile_parameter ⇒ Types::SigningProfileParameter
Describes the code-signing profile.
16888 16889 16890 16891 16892 16893 16894 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16888 class StartSigningJobParameter < Struct.new( :signing_profile_parameter, :signing_profile_name, :destination) SENSITIVE = [] include Aws::Structure end |