Interface CfnRegistryRecord.HttpDescriptorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRegistryRecord.HttpDescriptorProperty.Jsii$Proxy
Enclosing class:
CfnRegistryRecord

@Stability(Stable) public static interface CfnRegistryRecord.HttpDescriptorProperty extends software.amazon.jsii.JsiiSerializable
The HTTP descriptor, populated for records detected from an HTTP protocol source.

This descriptor is source-only: its content is synchronized from the configured source URL rather than supplied inline.

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.agentregistry.*;
 HttpDescriptorProperty httpDescriptorProperty = HttpDescriptorProperty.builder()
         .source(SourceOnlyDescriptorSourceProperty.builder()
                 .fromUrl(SourceOnlyDescriptorSourceFromUrlProperty.builder()
                         .url("url")
                         .build())
                 .build())
         .build();
 

See Also: