CodeSigningConfigArgs constructor
const
CodeSigningConfigArgs({
- required Input<
CodeSigningConfigAllowedPublishers> allowedPublishers, - Input<
String?> ? description, - Input<
CodeSigningConfigPolicies?> ? policies, - Input<
String?> ? region, - Input<
Map< ? tags,String, String> ?>
Creates a new CodeSigningConfigArgs.
allowedPublishers Configuration block of allowed publishers as signing profiles for this code signing configuration. See below.
description Descriptive name for this code signing configuration.
policies Configuration block of code signing policies that define the actions to take if the validation checks fail. See below.
region Region where this resource will be managed. Defaults to the Region set in the provider configuration.
tags Map of tags to assign to the object. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Implementation
const CodeSigningConfigArgs({
required this.allowedPublishers,
this.description,
this.policies,
this.region,
this.tags,
});