Interface CfnConfigurationPolicyPropsMixin.ISecurityControlCustomParameterProperty
A list of security controls and control parameter values that are included in a configuration policy.
Namespace: Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnConfigurationPolicyPropsMixin.ISecurityControlCustomParameterProperty
Syntax (vb)
Public Interface CfnConfigurationPolicyPropsMixin.ISecurityControlCustomParameterProperty
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.SecurityHub.Mixins;
var securityControlCustomParameterProperty = new SecurityControlCustomParameterProperty {
Parameters = new Dictionary<string, object> {
{ "parametersKey", new ParameterConfigurationProperty {
Value = new ParameterValueProperty {
Boolean = false,
Double = 123,
Enum = "enum",
EnumList = new [] { "enumList" },
Integer = 123,
IntegerList = new [] { 123 },
String = "string",
StringList = new [] { "stringList" }
},
ValueType = "valueType"
} }
},
SecurityControlId = "securityControlId"
};
Synopsis
Properties
| Parameters | An object that specifies parameter values for a control in a configuration policy. |
| SecurityControlId | The ID of the security control. |
Properties
Parameters
An object that specifies parameter values for a control in a configuration policy.
object? Parameters { get; }
Property Value
Remarks
Type union: either IResolvable or Dictionary<string, either IResolvable or CfnConfigurationPolicyPropsMixin.IParameterConfigurationProperty>
SecurityControlId
The ID of the security control.
string? SecurityControlId { get; }