Class CfnSigningConfigurationMixinProps
Properties for CfnSigningConfigurationPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.ECR.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnSigningConfigurationMixinProps : ICfnSigningConfigurationMixinProps
Syntax (vb)
Public Class CfnSigningConfigurationMixinProps Implements ICfnSigningConfigurationMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.ECR.Mixins;
var cfnSigningConfigurationMixinProps = new CfnSigningConfigurationMixinProps {
Rules = new [] { new RuleProperty {
RepositoryFilters = new [] { new RepositoryFilterProperty {
Filter = "filter",
FilterType = "filterType"
} },
SigningProfileArn = "signingProfileArn"
} }
};
Synopsis
Constructors
| CfnSigningConfigurationMixinProps() | Properties for CfnSigningConfigurationPropsMixin. |
Properties
| Rules | A list of signing rules. |
Constructors
CfnSigningConfigurationMixinProps()
Properties for CfnSigningConfigurationPropsMixin.
public CfnSigningConfigurationMixinProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.ECR.Mixins;
var cfnSigningConfigurationMixinProps = new CfnSigningConfigurationMixinProps {
Rules = new [] { new RuleProperty {
RepositoryFilters = new [] { new RepositoryFilterProperty {
Filter = "filter",
FilterType = "filterType"
} },
SigningProfileArn = "signingProfileArn"
} }
};
Properties
Rules
A list of signing rules.
public object? Rules { get; set; }
Property Value
Remarks
Each rule defines a signing profile and optional repository filters that determine which images are automatically signed.
Type union: either IResolvable or (either IResolvable or CfnSigningConfigurationPropsMixin.IRuleProperty)[]