Interface CfnRule.ReferenceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRule.ReferenceProperty.Jsii$Proxy
- Enclosing class:
CfnRule
@Stability(Stable)
public static interface CfnRule.ReferenceProperty
extends software.amazon.jsii.JsiiSerializable
Information about the reference when the
referenceType
is URL
.
Otherwise, null. (Supports variable injection in the Value
field.)
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.connect.*; ReferenceProperty referenceProperty = ReferenceProperty.builder() .type("type") .value("value") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRule.ReferenceProperty
static final class
An implementation forCfnRule.ReferenceProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
The type of the reference.DATE
must be of type Epoch timestamp.Allowed values :
URL
|ATTACHMENT
|NUMBER
|STRING
|DATE
|EMAIL
- See Also:
-
getValue
A valid value for the reference.For example, for a URL reference, a formatted URL that is displayed to an agent in the Contact Control Panel (CCP).
- See Also:
-
builder
- Returns:
- a
CfnRule.ReferenceProperty.Builder
ofCfnRule.ReferenceProperty
-