Class CfnMonitor
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.deadline.CfnMonitor
- All Implemented Interfaces:
IInspectable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-05T03:43:41.389Z")
@Stability(Stable)
public class CfnMonitor
extends CfnResource
implements IInspectable
Creates an AWS Deadline Cloud monitor that you can use to view your farms, queues, and fleets.
After you submit a job, you can track the progress of the tasks and steps that make up the job, and then download the job's results.
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.deadline.*; CfnMonitor cfnMonitor = CfnMonitor.Builder.create(this, "MyCfnMonitor") .displayName("displayName") .identityCenterInstanceArn("identityCenterInstanceArn") .roleArn("roleArn") .subdomain("subdomain") .build();
- See Also:
-
Nested Class Summary
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
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnMonitor
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnMonitor
(software.amazon.jsii.JsiiObjectRef objRef) CfnMonitor
(software.constructs.Construct scope, String id, CfnMonitorProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe Amazon Resource Name (ARN) of the monitor.The Amazon Resource Name (ARN) that the IAM Identity Center assigned to the monitor when it was created.The unique identifier for the monitor.The complete URL of the monitor.The name of the monitor that displays on the Deadline Cloud console.The Amazon Resource Name (ARN) of the IAM Identity Center instance responsible for authenticating monitor users.The Amazon Resource Name (ARN) of the IAM role for the monitor.The subdomain used for the monitor URL.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setDisplayName
(String value) The name of the monitor that displays on the Deadline Cloud console.void
The Amazon Resource Name (ARN) of the IAM Identity Center instance responsible for authenticating monitor users.void
setRoleArn
(String value) The Amazon Resource Name (ARN) of the IAM role for the monitor.void
setSubdomain
(String value) The subdomain used for the monitor URL.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
-
CfnMonitor
protected CfnMonitor(software.amazon.jsii.JsiiObjectRef objRef) -
CfnMonitor
protected CfnMonitor(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnMonitor
@Stability(Stable) public CfnMonitor(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnMonitorProps 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 monitor. -
getAttrIdentityCenterApplicationArn
The Amazon Resource Name (ARN) that the IAM Identity Center assigned to the monitor when it was created. -
getAttrMonitorId
The unique identifier for the monitor. -
getAttrUrl
The complete URL of the monitor.The full URL of the monitor is subdomain.Region.deadlinecloud.amazonaws.com.
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getDisplayName
The name of the monitor that displays on the Deadline Cloud console. -
setDisplayName
The name of the monitor that displays on the Deadline Cloud console. -
getIdentityCenterInstanceArn
The Amazon Resource Name (ARN) of the IAM Identity Center instance responsible for authenticating monitor users. -
setIdentityCenterInstanceArn
The Amazon Resource Name (ARN) of the IAM Identity Center instance responsible for authenticating monitor users. -
getRoleArn
The Amazon Resource Name (ARN) of the IAM role for the monitor. -
setRoleArn
The Amazon Resource Name (ARN) of the IAM role for the monitor. -
getSubdomain
The subdomain used for the monitor URL. -
setSubdomain
The subdomain used for the monitor URL.
-