Documentation ¶
Index ¶
- func CfnInferenceScheduler_CFN_RESOURCE_TYPE_NAME() *string
- func CfnInferenceScheduler_IsCfnElement(x interface{}) *bool
- func CfnInferenceScheduler_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnInferenceScheduler_IsConstruct(x interface{}) *bool
- func NewCfnInferenceScheduler_Override(c CfnInferenceScheduler, scope constructs.Construct, id *string, ...)
- type CfnInferenceScheduler
- type CfnInferenceSchedulerProps
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnInferenceScheduler_CFN_RESOURCE_TYPE_NAME ¶
func CfnInferenceScheduler_CFN_RESOURCE_TYPE_NAME() *string
func CfnInferenceScheduler_IsCfnElement ¶
func CfnInferenceScheduler_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element. Experimental.
func CfnInferenceScheduler_IsCfnResource ¶
func CfnInferenceScheduler_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource. Experimental.
func CfnInferenceScheduler_IsConstruct ¶
func CfnInferenceScheduler_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func NewCfnInferenceScheduler_Override ¶
func NewCfnInferenceScheduler_Override(c CfnInferenceScheduler, scope constructs.Construct, id *string, props *CfnInferenceSchedulerProps)
Create a new `AWS::LookoutEquipment::InferenceScheduler`.
Types ¶
type CfnInferenceScheduler ¶
type CfnInferenceScheduler interface { awscdk.CfnResource awscdk.IInspectable AttrInferenceSchedulerArn() *string CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string CreationStack() *[]*string DataDelayOffsetInMinutes() *float64 SetDataDelayOffsetInMinutes(val *float64) DataInputConfiguration() interface{} SetDataInputConfiguration(val interface{}) DataOutputConfiguration() interface{} SetDataOutputConfiguration(val interface{}) DataUploadFrequency() *string SetDataUploadFrequency(val *string) InferenceSchedulerName() *string SetInferenceSchedulerName(val *string) LogicalId() *string ModelName() *string SetModelName(val *string) Node() constructs.Node Ref() *string RoleArn() *string SetRoleArn(val *string) ServerSideKmsKeyId() *string SetServerSideKmsKeyId(val *string) Stack() awscdk.Stack Tags() awscdk.TagManager UpdatedProperites() *map[string]interface{} AddDeletionOverride(path *string) AddDependsOn(target awscdk.CfnResource) AddMetadata(key *string, value interface{}) AddOverride(path *string, value interface{}) AddPropertyDeletionOverride(propertyPath *string) AddPropertyOverride(propertyPath *string, value interface{}) ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions) GetAtt(attributeName *string) awscdk.Reference GetMetadata(key *string) interface{} Inspect(inspector awscdk.TreeInspector) OverrideLogicalId(newLogicalId *string) RenderProperties(props *map[string]interface{}) *map[string]interface{} ShouldSynthesize() *bool ToString() *string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::LookoutEquipment::InferenceScheduler`.
func NewCfnInferenceScheduler ¶
func NewCfnInferenceScheduler(scope constructs.Construct, id *string, props *CfnInferenceSchedulerProps) CfnInferenceScheduler
Create a new `AWS::LookoutEquipment::InferenceScheduler`.
type CfnInferenceSchedulerProps ¶
type CfnInferenceSchedulerProps struct { // `AWS::LookoutEquipment::InferenceScheduler.DataInputConfiguration`. DataInputConfiguration interface{} `json:"dataInputConfiguration"` // `AWS::LookoutEquipment::InferenceScheduler.DataOutputConfiguration`. DataOutputConfiguration interface{} `json:"dataOutputConfiguration"` // `AWS::LookoutEquipment::InferenceScheduler.DataUploadFrequency`. DataUploadFrequency *string `json:"dataUploadFrequency"` // `AWS::LookoutEquipment::InferenceScheduler.ModelName`. ModelName *string `json:"modelName"` // `AWS::LookoutEquipment::InferenceScheduler.RoleArn`. RoleArn *string `json:"roleArn"` // `AWS::LookoutEquipment::InferenceScheduler.DataDelayOffsetInMinutes`. DataDelayOffsetInMinutes *float64 `json:"dataDelayOffsetInMinutes"` // `AWS::LookoutEquipment::InferenceScheduler.InferenceSchedulerName`. InferenceSchedulerName *string `json:"inferenceSchedulerName"` // `AWS::LookoutEquipment::InferenceScheduler.ServerSideKmsKeyId`. ServerSideKmsKeyId *string `json:"serverSideKmsKeyId"` // `AWS::LookoutEquipment::InferenceScheduler.Tags`. Tags *[]*awscdk.CfnTag `json:"tags"` }
Properties for defining a `AWS::LookoutEquipment::InferenceScheduler`.