Class CfnSecurityProfile
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.iot.CfnSecurityProfile
- All Implemented Interfaces:
IInspectable
,ITaggable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:11.242Z")
@Stability(Stable)
public class CfnSecurityProfile
extends CfnResource
implements IInspectable, ITaggable
Use the
AWS::IoT::SecurityProfile
resource to create a Device Defender security profile.
For API reference, see CreateSecurityProfile and for general information, see Detect .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iot.*; CfnSecurityProfile cfnSecurityProfile = CfnSecurityProfile.Builder.create(this, "MyCfnSecurityProfile") .additionalMetricsToRetainV2(List.of(MetricToRetainProperty.builder() .metric("metric") // the properties below are optional .exportMetric(false) .metricDimension(MetricDimensionProperty.builder() .dimensionName("dimensionName") // the properties below are optional .operator("operator") .build()) .build())) .alertTargets(Map.of( "alertTargetsKey", AlertTargetProperty.builder() .alertTargetArn("alertTargetArn") .roleArn("roleArn") .build())) .behaviors(List.of(BehaviorProperty.builder() .name("name") // the properties below are optional .criteria(BehaviorCriteriaProperty.builder() .comparisonOperator("comparisonOperator") .consecutiveDatapointsToAlarm(123) .consecutiveDatapointsToClear(123) .durationSeconds(123) .mlDetectionConfig(MachineLearningDetectionConfigProperty.builder() .confidenceLevel("confidenceLevel") .build()) .statisticalThreshold(StatisticalThresholdProperty.builder() .statistic("statistic") .build()) .value(MetricValueProperty.builder() .cidrs(List.of("cidrs")) .count("count") .number(123) .numbers(List.of(123)) .ports(List.of(123)) .strings(List.of("strings")) .build()) .build()) .exportMetric(false) .metric("metric") .metricDimension(MetricDimensionProperty.builder() .dimensionName("dimensionName") // the properties below are optional .operator("operator") .build()) .suppressAlerts(false) .build())) .metricsExportConfig(MetricsExportConfigProperty.builder() .mqttTopic("mqttTopic") .roleArn("roleArn") .build()) .securityProfileDescription("securityProfileDescription") .securityProfileName("securityProfileName") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .targetArns(List.of("targetArns")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
A structure containing the alert target ARN and the role ARN.static interface
The criteria by which the behavior is determined to be normal.static interface
A Device Defender security profile behavior.static final class
A fluent builder forCfnSecurityProfile
.static interface
TheMachineLearningDetectionConfig
property type controls confidence of the machine learning model.static interface
The dimension of the metric.static interface
Specifies the MQTT topic and role ARN required for metric export.static interface
The metric you want to retain.static interface
The value to be compared with themetric
.static interface
A statistical ranking (percentile) that indicates a threshold value by which a behavior is determined to be in compliance or in violation of the behavior.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnSecurityProfile
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnSecurityProfile
(software.amazon.jsii.JsiiObjectRef objRef) CfnSecurityProfile
(software.constructs.Construct scope, String id) CfnSecurityProfile
(software.constructs.Construct scope, String id, CfnSecurityProfileProps props) -
Method Summary
Modifier and TypeMethodDescriptionA list of metrics whose data is retained (stored).Specifies the destinations to which alerts are sent.The Amazon Resource Name (ARN) of the security profile.Specifies the behaviors that, when violated by a device (thing), cause an alert.Specifies the MQTT topic and role ARN required for metric export.A description of the security profile.The name you gave to the security profile.getTags()
Tag Manager which manages the tags for this resource.Metadata that can be used to manage the security profile.The ARN of the target (thing group) to which the security profile is attached.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setAdditionalMetricsToRetainV2
(List<Object> value) A list of metrics whose data is retained (stored).void
A list of metrics whose data is retained (stored).void
setAlertTargets
(Map<String, Object> value) Specifies the destinations to which alerts are sent.void
setAlertTargets
(IResolvable value) Specifies the destinations to which alerts are sent.void
setBehaviors
(List<Object> value) Specifies the behaviors that, when violated by a device (thing), cause an alert.void
setBehaviors
(IResolvable value) Specifies the behaviors that, when violated by a device (thing), cause an alert.void
Specifies the MQTT topic and role ARN required for metric export.void
Specifies the MQTT topic and role ARN required for metric export.void
A description of the security profile.void
setSecurityProfileName
(String value) The name you gave to the security profile.void
setTagsRaw
(List<CfnTag> value) Metadata that can be used to manage the security profile.void
setTargetArns
(List<String> value) The ARN of the target (thing group) to which the security profile is attached.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnSecurityProfile
protected CfnSecurityProfile(software.amazon.jsii.JsiiObjectRef objRef) -
CfnSecurityProfile
protected CfnSecurityProfile(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnSecurityProfile
@Stability(Stable) public CfnSecurityProfile(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable CfnSecurityProfileProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties.
-
CfnSecurityProfile
@Stability(Stable) public CfnSecurityProfile(@NotNull software.constructs.Construct scope, @NotNull String id) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrSecurityProfileArn
The Amazon Resource Name (ARN) of the security profile. -
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getTags
Tag Manager which manages the tags for this resource. -
getAdditionalMetricsToRetainV2
A list of metrics whose data is retained (stored). -
setAdditionalMetricsToRetainV2
A list of metrics whose data is retained (stored). -
setAdditionalMetricsToRetainV2
A list of metrics whose data is retained (stored). -
getAlertTargets
Specifies the destinations to which alerts are sent. -
setAlertTargets
Specifies the destinations to which alerts are sent. -
setAlertTargets
Specifies the destinations to which alerts are sent. -
getBehaviors
Specifies the behaviors that, when violated by a device (thing), cause an alert. -
setBehaviors
Specifies the behaviors that, when violated by a device (thing), cause an alert. -
setBehaviors
Specifies the behaviors that, when violated by a device (thing), cause an alert. -
getMetricsExportConfig
Specifies the MQTT topic and role ARN required for metric export. -
setMetricsExportConfig
Specifies the MQTT topic and role ARN required for metric export. -
setMetricsExportConfig
@Stability(Stable) public void setMetricsExportConfig(@Nullable CfnSecurityProfile.MetricsExportConfigProperty value) Specifies the MQTT topic and role ARN required for metric export. -
getSecurityProfileDescription
A description of the security profile. -
setSecurityProfileDescription
A description of the security profile. -
getSecurityProfileName
The name you gave to the security profile. -
setSecurityProfileName
The name you gave to the security profile. -
getTagsRaw
Metadata that can be used to manage the security profile. -
setTagsRaw
Metadata that can be used to manage the security profile. -
getTargetArns
The ARN of the target (thing group) to which the security profile is attached. -
setTargetArns
The ARN of the target (thing group) to which the security profile is attached.
-