Interface CfnApplicationInferenceProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationInferenceProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:04.218Z")
@Stability(Stable)
public interface CfnApplicationInferenceProfileProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnApplicationInferenceProfile.
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.bedrock.*;
CfnApplicationInferenceProfileProps cfnApplicationInferenceProfileProps = CfnApplicationInferenceProfileProps.builder()
.inferenceProfileName("inferenceProfileName")
// the properties below are optional
.description("description")
.modelSource(InferenceProfileModelSourceProperty.builder()
.copyFrom("copyFrom")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationInferenceProfilePropsstatic final classAn implementation forCfnApplicationInferenceProfileProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInferenceProfileName
The name of the inference profile.- See Also:
-
getDescription
The description of the inference profile.- See Also:
-
getModelSource
Contains configurations for the inference profile to copy as the resource.- See Also:
-
getTags
A list of tags associated with the inference profile.- See Also:
-
builder
-