Class CfnNetworkProfile
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.devicefarm.CfnNetworkProfile
- All Implemented Interfaces:
IInspectable
,ITaggable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.94.0 (build b380f01)",
date="2024-03-01T20:58:22.336Z")
@Stability(Stable)
public class CfnNetworkProfile
extends CfnResource
implements IInspectable, ITaggable
Creates a network profile.
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.devicefarm.*; CfnNetworkProfile cfnNetworkProfile = CfnNetworkProfile.Builder.create(this, "MyCfnNetworkProfile") .name("name") .projectArn("projectArn") // the properties below are optional .description("description") .downlinkBandwidthBits(123) .downlinkDelayMs(123) .downlinkJitterMs(123) .downlinkLossPercent(123) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .uplinkBandwidthBits(123) .uplinkDelayMs(123) .uplinkJitterMs(123) .uplinkLossPercent(123) .build();
- See Also:
-
Nested Class Summary
Nested ClassesNested 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
FieldsModifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
CfnNetworkProfile
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnNetworkProfile
(software.amazon.jsii.JsiiObjectRef objRef) CfnNetworkProfile
(software.constructs.Construct scope, String id, CfnNetworkProfileProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe Amazon Resource Name (ARN) of the network profile.The description of the network profile.The data throughput rate in bits per second, as an integer from 0 to 104857600.Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.Proportion of received packets that fail to arrive from 0 to 100 percent.getName()
The name of the network profile.The Amazon Resource Name (ARN) of the specified project.getTags()
Tag Manager which manages the tags for this resource.An array of key-value pairs to apply to this resource.The data throughput rate in bits per second, as an integer from 0 to 104857600.Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.Proportion of transmitted packets that fail to arrive from 0 to 100 percent.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setDescription
(String value) The description of the network profile.void
setDownlinkBandwidthBits
(Number value) The data throughput rate in bits per second, as an integer from 0 to 104857600.void
setDownlinkDelayMs
(Number value) Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.void
setDownlinkJitterMs
(Number value) Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.void
setDownlinkLossPercent
(Number value) Proportion of received packets that fail to arrive from 0 to 100 percent.void
The name of the network profile.void
setProjectArn
(String value) The Amazon Resource Name (ARN) of the specified project.void
setTagsRaw
(List<CfnTag> value) An array of key-value pairs to apply to this resource.void
setUplinkBandwidthBits
(Number value) The data throughput rate in bits per second, as an integer from 0 to 104857600.void
setUplinkDelayMs
(Number value) Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.void
setUplinkJitterMs
(Number value) Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.void
setUplinkLossPercent
(Number value) Proportion of transmitted packets that fail to arrive from 0 to 100 percent.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
-
CfnNetworkProfile
protected CfnNetworkProfile(software.amazon.jsii.JsiiObjectRef objRef) -
CfnNetworkProfile
protected CfnNetworkProfile(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnNetworkProfile
@Stability(Stable) public CfnNetworkProfile(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnNetworkProfileProps 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. 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.
-
getAttrArn
The Amazon Resource Name (ARN) of the network profile.See Amazon resource names in the General Reference guide .
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getTags
Tag Manager which manages the tags for this resource. -
getName
The name of the network profile. -
setName
The name of the network profile. -
getProjectArn
The Amazon Resource Name (ARN) of the specified project. -
setProjectArn
The Amazon Resource Name (ARN) of the specified project. -
getDescription
The description of the network profile. -
setDescription
The description of the network profile. -
getDownlinkBandwidthBits
The data throughput rate in bits per second, as an integer from 0 to 104857600. -
setDownlinkBandwidthBits
The data throughput rate in bits per second, as an integer from 0 to 104857600. -
getDownlinkDelayMs
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. -
setDownlinkDelayMs
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. -
getDownlinkJitterMs
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. -
setDownlinkJitterMs
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. -
getDownlinkLossPercent
Proportion of received packets that fail to arrive from 0 to 100 percent. -
setDownlinkLossPercent
Proportion of received packets that fail to arrive from 0 to 100 percent. -
getTagsRaw
An array of key-value pairs to apply to this resource. -
setTagsRaw
An array of key-value pairs to apply to this resource. -
getUplinkBandwidthBits
The data throughput rate in bits per second, as an integer from 0 to 104857600. -
setUplinkBandwidthBits
The data throughput rate in bits per second, as an integer from 0 to 104857600. -
getUplinkDelayMs
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. -
setUplinkDelayMs
Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. -
getUplinkJitterMs
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. -
setUplinkJitterMs
Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. -
getUplinkLossPercent
Proportion of transmitted packets that fail to arrive from 0 to 100 percent. -
setUplinkLossPercent
Proportion of transmitted packets that fail to arrive from 0 to 100 percent.
-