Show / Hide Table of Contents

Class CfnSecurityControlMixinProps

Properties for CfnSecurityControlPropsMixin.

Inheritance
object
CfnSecurityControlMixinProps
Implements
ICfnSecurityControlMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnSecurityControlMixinProps : ICfnSecurityControlMixinProps
Syntax (vb)
Public Class CfnSecurityControlMixinProps Implements ICfnSecurityControlMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-securitycontrol.html

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 cfnSecurityControlMixinProps = new CfnSecurityControlMixinProps {
                 LastUpdateReason = "lastUpdateReason",
                 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"
                     } }
                 },
                 SecurityControlArn = "securityControlArn",
                 SecurityControlId = "securityControlId"
             };

Synopsis

Constructors

CfnSecurityControlMixinProps()

Properties for CfnSecurityControlPropsMixin.

Properties

LastUpdateReason

The most recent reason for updating the customizable properties of a security control.

Parameters

An object that identifies the name of a control parameter, its current value, and whether it has been customized.

SecurityControlArn

The Amazon Resource Name (ARN) for a security control across standards, such as arn:aws:securityhub:eu-central-1:123456789012:security-control/S3.1 . This parameter doesn't mention a specific standard.

SecurityControlId

The unique identifier of a security control across standards.

Constructors

CfnSecurityControlMixinProps()

Properties for CfnSecurityControlPropsMixin.

public CfnSecurityControlMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-securitycontrol.html

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 cfnSecurityControlMixinProps = new CfnSecurityControlMixinProps {
                 LastUpdateReason = "lastUpdateReason",
                 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"
                     } }
                 },
                 SecurityControlArn = "securityControlArn",
                 SecurityControlId = "securityControlId"
             };

Properties

LastUpdateReason

The most recent reason for updating the customizable properties of a security control.

public string? LastUpdateReason { get; set; }
Property Value

string

Remarks

This differs from the UpdateReason field of the BatchUpdateStandardsControlAssociations API, which tracks the reason for updating the enablement status of a control. This field accepts alphanumeric characters in addition to white spaces, dashes, and underscores.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-securitycontrol.html#cfn-securityhub-securitycontrol-lastupdatereason

Parameters

An object that identifies the name of a control parameter, its current value, and whether it has been customized.

public object? Parameters { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-securitycontrol.html#cfn-securityhub-securitycontrol-parameters

Type union: either IResolvable or Dictionary<string, either IResolvable or CfnSecurityControlPropsMixin.IParameterConfigurationProperty>

SecurityControlArn

The Amazon Resource Name (ARN) for a security control across standards, such as arn:aws:securityhub:eu-central-1:123456789012:security-control/S3.1 . This parameter doesn't mention a specific standard.

public string? SecurityControlArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-securitycontrol.html#cfn-securityhub-securitycontrol-securitycontrolarn

SecurityControlId

The unique identifier of a security control across standards.

public string? SecurityControlId { get; set; }
Property Value

string

Remarks

Values for this field typically consist of an AWS service name and a number, such as APIGateway.3.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-securitycontrol.html#cfn-securityhub-securitycontrol-securitycontrolid

Implements

ICfnSecurityControlMixinProps
Back to top Generated by DocFX